Traefik 2? #745
-
I have a prod cluster with the latest k3s, and I was hoping to reuse most of my manifests in dev with k3d, but k3d appears to install Traefik 1, so resources of kind Is Traefik 2 being considered for future releases of k3d? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @bard, thanks for starting this discussion! Traefik is deployed by K3s by default, that's not in the scope of k3d. See https://rancher.com/docs/k3s/latest/en/networking/#traefik-ingress-controller Aaah, I see that K3s just recently switched to Traefik V2 by default, so it's all about using |
Beta Was this translation helpful? Give feedback.
Hi @bard, thanks for starting this discussion!
Traefik is deployed by K3s by default, that's not in the scope of k3d.
You can tell k3d to tell K3s' to not deploy it via
--k3s-server-arg "--disable=traefik"
.See https://rancher.com/docs/k3s/latest/en/networking/#traefik-ingress-controller
Aaah, I see that K3s just recently switched to Traefik V2 by default, so it's all about using
--image rancher/k3s:<new-version>
to get a k3d cluster with a newer K3s version.