Skip to content

Traefik

Let's see how to run Traefik (docs, code) in a Kubernetes cluster.

Configuration

We'll use the official Helm chart:

Deployment

bash
# adds Helm chart repository
helm repo add traefik https://traefik.github.io/charts
helm repo update

# installs
helm upgrade --install traefik/traefik --namespace traefik --create-namespace

# uninstalls
helm uninstall traefik -n traefik
kubectl delete ns traefik