k8s/004-traefik/install.sh

13 lines
255 B
Bash
Executable file

#!/bin/bash
helm repo add traefik https://helm.traefik.io/traefik
helm repo update
helm upgrade --install \
traefik \
traefik/traefik \
-f values.yaml \
-n traefik \
--create-namespace \
--cleanup-on-fail
kubectl apply -f dashboard.yaml -n traefik