Eirik A
Eirik A
Ah, thank you, that's very helpful. Given how large the `Webhook` struct is, it's probably not practical to do a `#[kube(conversion = ...)]` attr for this. We could potentially export...
> helm configuration of webhooks It feels pretty awkward to configure properties on a crd in helm charts to me. They are generally assumed to be static enough to be...
Let's wait for now to see if there are other useful things that pop up. I've referenced it from https://github.com/kube-rs/kube/issues/428. Given that there's nothing we really should do in kube-derive,...
Putting down some reference docs for Condition as it had a KEP for 1.19 to standardise it so we should follow that: - [standardising conditions kep](https://github.com/kubernetes/enhancements/blob/master/keps/sig-api-machinery/1623-standardize-conditions/README.md#proposal) - [upstream struct](https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Condition) I...
Going to close this as it's more of a discussion issue. For more context about `ObjectNotFound` on deleted owned resources see https://github.com/kube-rs/kube/issues/1167#issuecomment-1636773541 for a bigger explanation.
Trying to summarise to see if there's anything here we should do. We can create and convert (and conversions carry uids): - generate an [`ObjectReference`](https://docs.rs/k8s-openapi/0.20.0/k8s_openapi/api/core/v1/struct.ObjectReference.html) via an object via [`Resource::object_ref`](https://docs.rs/kube/latest/kube/trait.Resource.html#method.object_ref)...
Revisiting this old issue to ensure we are doing everything we can. Here is a brief overview of what we do: - [x] deduplication in scheduler. [yes, provided it happened...
Closing this. Better scoped issue about how to improve scheduler debouncing linked in #1247
This can now be iltered out via [predicates](https://docs.rs/kube/latest/kube/runtime/utils/predicates/index.html) using the controller stream interface. See https://github.com/kube-rs/controller-rs/pull/50 for how this can look in practice.
> I don't think I can solve the problem on the vector side effectively. @clux are you ok with me creating a PR regarding this issue? Sure, but what are...