K8S with Traefik as IC

To set up Traefik, copy / paste the following command line:

helm install --name=traefik --set rbac.enabled=true,dashboard.enabled=true,dashboard.domain=dashboard.localhost stable/traefik

In the above command line, we enabled the dashboard (dashboard.enabled=true) and made it available on http://dashboard.localhost (dashboard.domain=localhost.domain).

The output of the helm install command line will look like:

Unfortunately in my case the status of the load balancer ip get stuck at pending, i googled it but without lucky.

So i decided to remove the Traefik helm chart:

helm ls --short | xargs -L1 helm delete

Since i tried to do some stuff to fix the error, to be sure that everything be reset i run:

minikube delete && minikube start

Even if it might not seems, the official documentation of Traefik with Kubernetes is very well detailed and explained. So i decided to try again without Helm.

Traefik user guide > Kubernetes

To follow the tutorial I can advise to stay focused on the DaemonSet object.

Last updated