manusa on master
test: document SerialExecutor e… (compare)
manusa on master
fix #3625: updating the default… fix #3625: committing the modif… fix #3625: test corrections rel… (compare)
@rohanKanojia
btw did you ever see this? Without touching my cluster the client starting spitting this at me
Caused by: io.fabric8.kubernetes.client.WatcherException: too old resource version: 48308901 (48321468)
5.2.1 client
Hi Guys!
I see io.fabric8.kubernetes.client.dsl.internal.core.v1.PodTemplateOperationsImpl has been removed in v5.7.0 and I don't see any info relating to this removal in changelog .
is io.fabric8.kubernetes.client.dsl.internal.HasMetadataOperationsImpl replacement for above class ?
my previous usage (v5.4.0):
new PodTemplateOperationsImpl(
k8sClient.getHttpClient(),
k8sClient.getConfiguration());
current usage(v5.7.0):
new HasMetadataOperationsImpl<>(
k8sClient.getHttpClient(),
k8sClient.getConfiguration(), ResourceDefinitionContext.fromResourceType(PodTemplate.class), PodTemplate.class, PodTemplateList.class);
java.lang.NoClassDefFoundError: Could not initialize class io.fabric8.kubernetes.internal.KubernetesDeserializer
when trying to connect to a kubeclient, with a uberjar built with mvn package shade:shade
. any ideas? I have also included the optional bouncy castle lib, am using version 5.7.3 of the client and I only get there error when running out of my IDE. Thanks in advance, cheers!