kubernetes-rust icon indicating copy to clipboard operation
kubernetes-rust copied to clipboard

Rust client for Kubernetes

Results 5 kubernetes-rust issues
Sort by recently updated
recently updated
newest added
trafficstars

This brings the crate up to date with changes in the ecosystem. The changes here backwards-incompatible, but allow it to be easily used with recent tokio (std::future based) and k8s-openapi-codegen...

Running the example code: ``` #[test] fn test_general() { let kubeconfig = config::load_kube_config().expect("failed to load kubeconfig"); let kubeclient = APIClient::new(kubeconfig); let (req, _) = api::Pod::list_namespaced_pod("kube-system", Default::default()) .expect("failed to create a...

The API for CRDs is generated by kube as soon as the CRD is posted. Thus these structs are not normally available in the openapi bindings or something else (the...

Currently there doesn't appear to be a websocket implementation for `connect_core_v1_get_namespaced_pod_exec`. It would be great to have one. The python k8s client has an implementation [here](https://github.com/kubernetes-client/python-base/blob/master/stream/ws_client.py). The `ws` crate could...

One thing I noticed is that data returned from the kube api is assumed to be parseable into the struct you give it: https://github.com/ynqa/kubernetes-rust/blob/9c5f29f1f70d31042371db8ed6782486a41c8e3b/src/client/mod.rs#L37 however, we have no real information...