13 lines
255 B
Bash
13 lines
255 B
Bash
|
#!/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
|