k8s/004-traefik/install.sh

15 lines
307 B
Bash
Raw Normal View History

2022-07-02 18:50:14 +00:00
#!/bin/bash
CHART_VERSION=10.24.0
2022-07-02 18:50:14 +00:00
helm repo add traefik https://helm.traefik.io/traefik
helm repo update
helm upgrade --install \
traefik \
traefik/traefik \
-f values.yaml \
-n traefik \
--version ${CHART_VERSION} \
2022-07-02 18:50:14 +00:00
--create-namespace \
--cleanup-on-fail
kubectl apply -f dashboard.yaml -n traefik