insecure-skip-tls-verify: true server: https://127.0.0.1:443 name: my-cluster In these cases the call todefaultClient()fails with the following error: Uncaught Error: clusters[0].cluster.[certificate-authority-data, certificate-authority] is missing This is trigged by Config Types validation c...
I tried adding "insecure-skip-tls-verify: true" to my "~/.kube/config" file but it didnt change anything even after restarting the terminal question is, is that a bug or is it deprecated? and what else can i do to skip ssl inspection during helm install?
apiVersion: v1 clusters: - cluster: # needed if you get error "Unable to connect to the server: x509: certificate signed by unknown authority" insecure-skip-tls-verify: true server:https://139.224.204.132:6443 name: kubernetes contexts: - context: cluster: kubernetes user: kubernetes-admi...
The content of the config.yaml is below: apiVersion:v1kind:Configclusters: -name:ubuntucluster:insecure-skip-tls-verify:trueserver:https://master:6443contexts: -context:cluster:"ubuntu"user:"ubuntu"name:developmentcurrent-context:developmentusers: -name:ubuntuuser:client-certificate:/home/kubernetes/...
InsecureTransport: true, InsecureSkipVerify: true, }, }, expectedConf: Config{ Endpoints: []string{"http://192.168.0.13:2379"}, DialTimeout: 1 * time.Second, DialKeepAliveTime: 3 * time.Second, DialKeepAliveTimeout: 5 * time.Second, TLS: &tls.Config{ InsecureSkipVerify: true, }, ...
yocode commented Dec 2, 2019 --insecure-skip-tls-verify=true 👍 1 Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in. Assignees No one assigned Labels followup needed platform/baremetal
1、Now we can specifiy InsecureSkipVerify = true by not setting os env DOCKER_TLS_VERIFY when using WithTLSClientConfigFromEnv 2、But we can not do this when using WithTLSClientConfig 3、Now we have to use WithTLSClientConfig because we have to connect to multi docker servers and we have...