暫無描述

argo-cd.yaml 792B

12345678910111213141516171819202122232425262728293031323334
  1. apiVersion: argoproj.io/v1alpha1
  2. kind: Application
  3. metadata:
  4. name: argo-cd
  5. namespace: {{ .Values.spec.namespace }}
  6. finalizers:
  7. - resources-finalizer.argocd.argoproj.io
  8. spec:
  9. destination:
  10. namespace: {{ .Values.spec.namespace }}
  11. name: {{ .Values.spec.destination.name }}
  12. project: {{ .Values.spec.project }}
  13. syncPolicy:
  14. automated:
  15. prune: true
  16. selfHeal: true
  17. source:
  18. chart: charts/argo-cd
  19. repoURL: https://argoproj.github.io/argo-helm
  20. targetRevision: 3.33.6
  21. helm:
  22. releaseName: argo-cd
  23. values: |
  24. server:
  25. ingress:
  26. enabled: true
  27. hosts:
  28. - argo-cd.kaisers.info
  29. paths:
  30. - /
  31. pathType: Prefix
  32. extraArgs:
  33. - --insecure