Marc Nuri

Results 640 comments of Marc Nuri
trafficstars

Versión 6 has a few breaking changes, there aren't that many, but I guess it'll be a little bit more involved than just bumping the version number.

> We should port this functionality to a static utility method (preferably KubernetesResourceUtil) in KubernetesClient. Maybe also include it as part of the DSL for ConfigMaps

It seems like JMeter's Groovy engine is not loading the kubernetes-client module. Could you try removing the `kubernetes-client-api` dependency?

I will try to reproduce. It seems that it's skipping the `kubernetes-client` module for some reason. Since there's no explicit class loading in your script (which is how it should...

^^^ @shawkins > With a quick glimpse at the code I am seeing that we are not consistent with the way we are loading classes and services (spi). But do...

I'm testing this with Groovy (4.0.3 ), and it works for me. Tested Script: ```groovy @Grab(group='io.fabric8', module='kubernetes-client', version='6.0.0-RC1') @Grab(group='io.fabric8', module='kubernetes-client-api', version='6.0.0-RC1') import io.fabric8.kubernetes.client.KubernetesClient import io.fabric8.kubernetes.client.KubernetesClientBuilder try (KubernetesClient client = new...

As a major breaking change, in a future major release (7.x) all of the classes that currently implement `KubernetesResource` could extend `RawExtension`.

This is now in the kubernetes-client-api module. Do you think this still needs to be moved to the kubernetes-model module? @shawkins @metacosm @iocanel

Well, now you'd need to import the `kubernetes-client-api` library, which I'm not sure fulfills your requirements or not. The problem with moving it to the `kubernetes-model-code` module is that we...

As discussed during our triage meeting, `CustomResource` was already moved to the `kuberentes-client-api` module which satisfies one of the main concerns about pulling in the full client when all you...