mkdir ~/traefik && cd ~/traefik helm repo add traefik https://helm.traefik.io/traefik helm repo update helm pull traefik/traefik --untar cd traefik tree . . ├── Changelog.md ├── Chart.yaml ├── crds │ ├── ingressroutetcp.yaml │ ├── ingressrouteudp.yaml │ ├── ingressroute.yaml │ ├── middlewarestcp.yaml │ ├── middlewares.yaml │ ├── serverstransports.yaml │ ├── tlsoptions.yaml │ ├── tlsstores.yaml │ └── traefikservices.yaml ├── Guidelines.md ├── LICENSE ├── README.md ├── templates │ ├── daemonset.yaml │ ├── dashboard-hook-ingressroute.yaml │ ├── deployment.yaml │ ├── extra-objects.yaml │ ├── gatewayclass.yaml │ ├── gateway.yaml │ ├── _helpers.tpl │ ├── hpa.yaml │ ├── ingressclass.yaml │ ├── poddisruptionbudget.yaml │ ├── _podtemplate.tpl │ ├── pvc.yaml │ ├── rbac │ │ ├── clusterrolebinding.yaml │ │ ├── clusterrole.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── rolebinding.yaml │ │ ├── role.yaml │ │ └── serviceaccount.yaml │ ├── _service.tpl │ ├── service.yaml │ ├── tlsoption.yaml │ └── tlsstore.yaml └── values.yaml 3 directories, 37 files # install kubectl create ns traefik-v2 helm install --namespace=traefik-v2 \ traefik traefik/traefik kubectl -n traefik-v2 get all cd ../web/ cat >ingress-values.yaml <~/carpool/app/ingress.yaml <