| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- apiVersion: argoproj.io/v1alpha1
- kind: Application
- metadata:
- name: argo-cd
- namespace: {{ .Values.spec.namespace }}
- finalizers:
- - resources-finalizer.argocd.argoproj.io
- spec:
- destination:
- namespace: {{ .Values.spec.namespace }}
- name: {{ .Values.spec.destination.name }}
- project: {{ .Values.spec.project }}
- syncPolicy:
- automated:
- prune: true
- selfHeal: true
- source:
- chart: argo-cd
- repoURL: https://argoproj.github.io/argo-helm
- targetRevision: 3.33.6
- helm:
- releaseName: argo-cd
- values: |
- server:
- ingress:
- enabled: true
- hosts:
- - argo-cd.kaisers.info
- paths:
- - /
- pathType: Prefix
- annotations:
- cert-manager.io/cluster-issuer: letsencrypt-staging
- tls:
- - secretName: argo-cd-kaisers-info-tls
- hosts:
- - argo-cd.kaisers.info
-
- extraArgs:
- - --insecure
|