No Description

argo-cd.yaml 674B

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