| 123456789101112131415161718192021222324252627282930 |
- apiVersion: argoproj.io/v1alpha1
- kind: Application
- metadata:
- name: argo-cd
- namespace: argocd
- finalizers:
- - resources-finalizer.argocd.argoproj.io
- spec:
- destination:
- namespace: argocd
- name: {{ .Values.spec.destination.name }}
- project: {{ .Values.spec.project }}
- source:
- chart: argo-cd
- repoURL: https://github.com/argoproj/argo-helm
- targetRevision: 3.33.6
- helm:
- releaseName: argo-cd
- values: |
- server:
- ingress:
- enabled: true
- hosts:
- - argo-cd.kaisers.info
- paths:
- - /
- pathType: Prefix
-
- extraArgs:
- - --insecure
|