Eirik A

Results 300 comments of Eirik A

Because of how close this was and how much restructuring was required, I ended up doing the two lines necessary on top of it in https://github.com/kube-rs/kube/pull/1038 to make sure the...

This is (afaikt) a feature for authentication for [`RefreshableToken::Exec`](https://github.com/kube-rs/kube-rs/blob/251728e49d4ebf0416c0d9d84361176169990dc7/kube-client/src/client/auth/mod.rs#L140-L156) bubbling down through our `Config` from the Kubeconfig's [`Cluster`](https://github.com/kube-rs/kube-rs/blob/251728e49d4ebf0416c0d9d84361176169990dc7/kube-client/src/config/file_config.rs#L84-L109) (where it is [supposed to be](https://github.com/kubernetes/client-go/blob/46d4284b93f0f2fdf846e2593d05c8094689fabc/tools/clientcmd/api/v1/types.go#L62-L70)). If I understand it right, it...

Completely understand. Mostly wanted to see if there was interest around for it as it looked cool. Thanks for keeping a tracking issue.

That looks right to me! One minor point; we probably have to put this behind an `k8s_openapi::k8s_if_ge_1_25` guard when importing the structs since afaikt it only stabilised in 1.25.

This seems like a very nice feature to have. Have played around with mass modifications through `sed` on all files in a folder to prepend a `type: whatever`, but it...

Not sure the operating costs would be quite __as__ trivial as mentioned, but there would at the very least be some very nice benefits from doing this: - cncf verified...

For 1; It is possible to build up a list of all symbols we see and auto-backtick them in docs before printing whenever we see them. Could be a nice...

hm, while you could possibly use watch bookmarks for this type of bookkeeping (at least the [KEP for bookmarks](https://github.com/kubernetes/enhancements/blob/master/keps/sig-api-machinery/956-watch-bookmark/README.md) intends them for this), the `watcher` in kube is designed for...

I am wondering if we should try to lean more on resource scopes in `Api` for `Api::all` style constructions. Just like we limit `Api::namespaced` to a particular resource `Scope`, we...

Does defaulting actually work on the apiserver side when you use big default structs like these in the gateway api? The [kubernetes schema default docs](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#defaulting) are pretty sparse. If it...