26 lines
599 B
YAML
26 lines
599 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: traefik
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
sources:
|
|
- repoURL: https://helm.traefik.io/traefik
|
|
chart: traefik
|
|
targetRevision: 39.0.5
|
|
helm:
|
|
valueFiles:
|
|
- $values/values/traefik.yaml
|
|
- repoURL: https://gitea.nik4nao.com/nik/homelab.git
|
|
targetRevision: main
|
|
ref: values
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: traefik
|
|
syncPolicy:
|
|
automated:
|
|
prune: false
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true |