Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
helm install traefik traefik/traefik \
  --set ingressRoute.dashboard.enabled=true \
  --namespace ingress-traefik --create-namespace

...

Code Block
languagebash
kubectl -n ingress-traefik port-forward \
  $(kubectl get pods --selector "app.kubernetes.io/name=traefik" --output=name -n ingress-traefik) \
  9000:9000traefik

然后访问 https://127.0.0.1:9000/dashboard/ (注意最后的 / 是必要的)

配置 Auto HTTPS

...