Marc Nuri
Marc Nuri
We do have logic in place for `/apis` (`APIGroupList`, `APIGroup`). And also for `/api/v1` -or any other version- (`APIResourceList`, `APIResource`). See `getApiGroups` and `getApiResources`. Can you please elaborate on the...
I've added a subsequent commit (https://github.com/operator-framework/operator-lifecycle-manager/pull/3406/commits/b4e0390b03dc8a21f58287b9a52ed4d73a6f01e7) to update the generated code according to the updated groupName tag. However, I'm not sure if this implies certain breaking changes.
Added in fix for #3570 in #3576 PR. It's used to create the `setAdditionalProperties` method which is not included in the generated code by default. We can do specific handling...
> Well, if it's used to create the `setAdditionalProperties` then is ok to have it, yet it would be better to add the setter using a custom rule like you...
Is it possible that your tests are closing the client? (e.g. your first test performs a try with resources to the client and then the subsequent tests fail).
could you show the points where `this.client` is instantiated (this.client = ...) and (in case you're doing this) where this.client.close() is called?
Have you noticed if the stacktrace comes after a test failure? Are the tests run in parallel or with some sort of threading mechanism? The only thing I can see...
Could you share more details about your project? It might be that your jar archive is corrupt or your project is having trouble loading it. The mentioned resource does exist...
This is used to generate the `META-INF/services/io.fabric8.kubernetes.api.model.KubernetesResource` file at the Kubernetes Client compile time. It's not necessary for downstream usage. If you are using the Kubernetes Client in your project,...
That code is sort of deprecated. The way you should instantiate your client for Volcano (or any other extension or model type) is by: ```java try ( KubernetesClient kc =...