kube/traefik/README.md

15 lines
458 B
Markdown
Raw Normal View History

2023-08-29 06:29:36 +00:00
# Traefik Ingress Controller
This application is managed by
[ArgoCD](https://argocd.k-space.ee/applications/argocd/traefik)
Should ArgoCD be down manifests here can be applied with:
2022-08-16 09:40:54 +00:00
```
2022-09-11 13:24:35 +00:00
kubectl create namespace traefik
helm repo add traefik https://traefik.github.io/charts
2022-08-16 09:40:54 +00:00
helm template --include-crds -n traefik --release-name k6 traefik/traefik -f values.yml > application.yml
kubectl apply -n traefik -f application.yml -f application-extras.yml
2022-08-16 09:40:54 +00:00
```