Steven Hawkins

Results 508 comments of Steven Hawkins

> But when I use kubectl to delete, even if I use a very large grace period, the pod will be deleted immediately instead of getting stuck in terminating. You...

The issue here is a race condition between stopping the reflector due to the condition being satisfied and starting the watch. If an attempt is made to start the watch...

As suggested by @manusa we can just start with a clone of https://github.com/fabric8io/kubernetes-client/tree/main/java-generator/maven-plugin

@AndresSanchezG is it a deadlock, or just that one of your theads is holding a lock that is needed by another? A deadlock isn't clear from what you provided. Also...

As suggested by @manusa we can just start with a clone of https://github.com/fabric8io/kubernetes-client/tree/main/java-generator/gradle-plugin

> but I noticed that the CRD generator currently uses the [Jackson JSONSchema module](https://github.com/FasterXML/jackson-module-jsonSchema) The v2 one does also https://github.com/fabric8io/kubernetes-client/tree/main/crd-generator/api-v2/src/main/java/io/fabric8/crdv2/generator > which its own maintainers do not recommend to use...

> Which approach do you prefer? Other thoughts? I'd like to keep the core api as simple as possible - whatever is needed to satisfy Quarkus should be good. The...

> Do we need high level filtering? If yes: High level filtering could also be implemented in api-v2 so that we can stay by the strategy to return only classes...

> Try to generalize the used interfaces / annotations to identify a custom resource Don't worry about this step just yet, what you currently have should work fine for the...