helm部署traefik到k8s

富貴007發表於2020-10-09

##環境及要求
Kubernetes Version:1.18.5 單機版(in MacBook pro)
Docker Version:ce-19.03
traefik搭建要求:

  • Kubernetes 1.14+
  • Helm version 3.x is installed

##部署步驟
helm repo add traefik https://helm.traefik.io/traefik
helm repo update
helm install traefik traefik/traefik

Exposing the Traefik dashboard

出於安全考慮,預設情況下HelmChart不公開Traefik Dashboard。
有多種方法可以公開儀表板。例如,可以通過埠轉發實現儀表板訪問
kubectl port-forward $(kubectl get pods --selector “app.kubernetes.io/name=traefik” --output=name) 9000:9000
訪問url: http://127.0.0.1:9000/dashboard/

相關文章