k3s Traefik Dashboard

Traefik is automatically deployed as part of the k3s Kubernetes cluster. To enable the dashboard for Traefik follow these instructions. Enable the Dashboard The dashboard is not enabled in the base k3s distribution. Enable the dashboard by editing the traefik.yaml manifest at /var/lib/rancher/k3s/server/manifests: sudo vi /var/lib/rancher/k3s/server/manifests/traefik.yaml Add the line dashboard.enabled: "true" in the spec: set: section. Remember this is YAML so match the indent of the previous line. Save the file and k3s will deploy the dashboard service, you can see the service with the kubectl get service command: [Read More]