28 lines
670 B
YAML
28 lines
670 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: argocd
|
|
namespace: argocd
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://gitea.nik4nao.com/nik/homelab.git
|
|
targetRevision: main
|
|
path: argocd/values
|
|
helm:
|
|
chart: argo-cd
|
|
repo: https://argoproj.github.io/argo-helm
|
|
version: 9.4.15
|
|
valueFiles:
|
|
- argocd.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: argocd
|
|
syncPolicy:
|
|
automated:
|
|
prune: false # never auto-delete ArgoCD itself
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=false |