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)
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!
I'm launching an interactive command inside a running pod with:
client.pods().inNamespace(namespace).withName(name)
.readingInput(System.in)
.writingOutput(System.out)
.writingError(System.err)
.withTTY().exec("...")
but any use of "special" keys (arrows, tab etc) just cause their escaped representation to be printed on the output instead of actually having the desired effect.