Eirik A
Eirik A
Hm, this might be a case where we tell people to use `k3d cluster create` more accurately: From [docs on k3d cluster create](https://k3d.io/usage/commands/k3d_cluster_create/): ``` --api-port [HOST:]HOSTPORT Specify the Kubernetes API...
Yeah, that's true. Maybe if you can find what client-go is doing here, we can potentially duplicate it?
I had a couple of searches through hyper and only couple of things I can think of are things in the [connector](https://docs.rs/hyper/0.14.8/hyper/client/connect/struct.HttpConnector.html). Maybe `new_with_resolver` or `set_local_addresses` will do helpful things...
Because you are using rustls, this looks like a duplicate of #542. I'd suggest trying `native-tls` for now.
Hm. Damn. It runs successfully on linux against my k3d with `rustls-tls` (EDIT: and `native-tls`).
As noted on discord, this is a regression from kube 0.58.0, but only because 0.63 pulls in the new **patch release** of `openssl-sys` that pulls in the openssl 3 from...
Purging openssl from the dependency tree: ```toml [dependencies] log = "0.4.14" anyhow = "1.0.44" kube = { version = "0.63.2", default-features=false, features = ["derive", "rustls-tls", "client"]} tokio = { version...
This is a problem because that means that soon there __could__ be no good way to run kube against k3d on mac's since both tls stacks have issues (at least...
Based on the alternatives, I'm wondering if emiting an `Event::RestartChunk` might make sense here. The `Event` api is not super useful outside `kube_runtime` except niche use cases writing custom reflectors...
I did originally start out with references, but it made it hard to work with the big openapi struct because of borrows happening in many places, and a couple of...