23 lines
483 B
YAML
23 lines
483 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: traefik
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
chart: traefik
|
|
repoURL: https://traefik.github.io/charts
|
|
targetRevision: 35.2.0
|
|
helm:
|
|
valueFiles:
|
|
- traefik-values.yaml
|
|
destination:
|
|
server: {{ .Values.spec.destination.server }}
|
|
namespace: traefik
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true |