Disable TLS verification k3d cluster #1391
Replies: 3 comments 3 replies
-
Hey there! Can one of you @bindragithub or @taemon1337 elaborate on where you want to set this flag or where you want to disable TLS? If you're referring to a K3s server flag, you can set them all like that in the config file: options:
k3s: # options passed on to K3s itself
extraArgs: # additional arguments passed to the `k3s server|agent` command; same as `--k3s-arg`
- arg: "--tls-san=my.host.domain"
nodeFilters:
- server:* |
Beta Was this translation helpful? Give feedback.
-
So in my case...
And created an Ingress like so:
which listens using self-signed certs on port 8443 (service port is 443 targets 8443) and gets the following error when trying to connect
which I'm assuming is because the |
Beta Was this translation helpful? Give feedback.
-
My config file:
File name: cluster.yaml
Question: How and where do I implement insecure-skip-tls-verify: true or --insecure-skip-tls-verify in the above configuration file e to disable TLS?
cluster create -c cluster.yaml
Beta Was this translation helpful? Give feedback.
All reactions