You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your enhancement related to a problem? Please describe
When initializing the k8s-client, specify the TLS version and ciphers.
Describe the solution you'd like
I use as:
KubernetesClient client = new KubernetesClientBuilder().withConfig(config)
.withHttpClientBuilderConsumer(builder -> builder.sslContext(keyManagers, trustManagers)).build();