Kaz Yoshihara
Kaz Yoshihara
@danni-m If #693 still doesn't work after [`fcf3a9e` (#693)](https://github.com/kube-rs/kube-rs/pull/693/commits/fcf3a9e8f35424e2d513dce3b6b786d2ca2ae3ab), we added `openssl-tls` feature that uses `openssl` for TLS on all platforms. You can try that by using the `master` branch.
Yeah, it's not fixed. I'd recommend trying `openssl-tls` feature instead. `native-tls` feature exists for a historical reason (`kube` used to use `reqwest`), and it doesn't make much sense because `macos`/`windows`...
https://github.com/kube-rs/kube/blob/28213785f73e0d6607b308daac31f37e8d109b5e/kube-client/src/config/mod.rs#L399-L408 macOS with `native-tls` has #691 as well. We should probably just remove `native-tls` as we discussed in https://github.com/kube-rs/kube/pull/863#issuecomment-1084365992
Is there `swagger.json` for metrics? It has [`// +k8s:openapi-gen=true`](https://github.com/kubernetes/metrics/blob/5ca43742ab9371d3bc08c87b7613fafad83d0e22/pkg/apis/metrics/v1alpha1/doc.go#L20), but I don't know where the output is.
I _think_ we should stop `forwarder_loop`: 1. When receiving `close` WebSocket message from server - `from_pod_loop` should notify `forwarder_loop` and stop - `forwarder_loop` can stop (`break`) when this happens 2....
Add label: ```rust let nodes: Api = Api::all(client); nodes .patch( "name", &PatchParams::default(), &Patch::Merge(serde_json::json!({ "metadata": { "labels": { "app": "example" } } })), ) .await?; ``` Cordon should be: ```rust let...
Yeah, I'm glad we don't need to add/maintain provider-specific code anymore. I don't think the plugin depends on Kubernetes version, but I don't have a cluster older than 1.22 to...
> Maybe we can trim that bit out of the `AutoInfo` struct. That should be pretty easy to do. ```rust let mut config = Config::infer().await?; // Set a field with...
`kube` with `rustls-tls` feature doesn't support cluster with IP address at the moment. This is a rustls limitation which in turn comes from webpki. See https://github.com/clux/kube-rs/issues/153 a possible workaround.
We should have it supported in the next release. https://github.com/clux/kube-rs/pull/411