2022-07-02 18:50:14 +00:00
|
|
|
#!/bin/bash
|
2022-08-05 19:05:44 +00:00
|
|
|
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 \
|
2022-08-05 19:05:44 +00:00
|
|
|
--version ${CHART_VERSION} \
|
2022-07-02 18:50:14 +00:00
|
|
|
--create-namespace \
|
|
|
|
--cleanup-on-fail
|
|
|
|
kubectl apply -f dashboard.yaml -n traefik
|