kubeclient-rs
kubeclient-rs copied to clipboard
Kubernetes API client in Rust
The version of `kubeclient` uploaded to crates.io is using rust `openssl`crate version `0.9.15` which cannot be compiled against OpenSSL 1.1.1. I see that you switched to `openssl 0.10` on master....
Kubernetes provides ability to [watch for resouces](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/#list-28) using the watch property of the list api. It would be nice have an ability to optionally register a callback in the [list...
I've made a tool [k8s-openapi-codegen](https://github.com/Arnavion/k8s-openapi-codegen) that generates Rust types from the Kubernetes OpenAPI spec. For example this is what the generated `PodSpec` looks like: ```rust /// PodSpec is a description...