This message was deleted.
# k3d
a
This message was deleted.
b
from googling maybe i need to set this in traefik?
Copy code
serversTransport:
  insecureSkipVerify: true
If yes, I see this file: k -n kube-system get secrets chart-values-traefik But editing that directly seems like it might be the wrong approach. What's the right way to resolve this error?
w
You'd configure the built in traefik installation using a HelmChartConfig - see https://docs.k3s.io/networking/networking-services#traefik-ingress-controller
🙏 1
🎉 1
b
I created the following and applied it, tried to access and got the same error, restarted the traefik pod, tried to access and got the same error:
Copy code
$ cat helmchartconfig-traefik.yaml 
apiVersion: <http://helm.cattle.io/v1|helm.cattle.io/v1>
kind: HelmChartConfig
metadata:
  name: traefik
  namespace: kube-system
spec:
  valuesContent: |-
    serversTransport:
      insecureSkipVerify: true
same issue when i try to access either of the two apps i have installed, argocd and kargo
cluster config: rancher/k3s:v1.33.6-k3s1
Found the solution:
Copy code
apiVersion: <http://helm.cattle.io/v1|helm.cattle.io/v1>
kind: HelmChartConfig
metadata:
  name: traefik
  namespace: kube-system
spec:
  valuesContent: |-
    additionalArguments:
      - "--serverstransport.insecureskipverify"