kubezero/charts/kubezero/templates/app.yaml

30 lines
725 B
YAML
Raw Normal View History

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: kubezero
namespace: argocd
labels:
2020-05-19 11:16:22 +00:00
{{ include "kubezero-lib.labels" . | indent 4 }}
spec:
project: kubezero
source:
2020-05-15 09:38:06 +00:00
repoURL: {{ .Values.global.defaultSource.repoURL }}
targetRevision: {{ .Values.global.defaultSource.targetRevision }}
path: {{ .Values.global.defaultSource.pathPrefix}}charts/kubezero-app
2020-05-04 11:10:15 +00:00
helm:
values: |
2020-05-15 10:22:15 +00:00
global:
{{- toYaml .Values.global | nindent 10 }}
{{- if .Values.kubezero }}
{{- toYaml .Values.kubezero | nindent 8 }}
2020-05-15 09:38:06 +00:00
{{- end }}
2020-05-04 11:10:15 +00:00
destination:
2020-05-15 09:38:06 +00:00
server: {{ .Values.global.defaultDestination.server }}
namespace: argocd
syncPolicy:
automated:
2020-05-04 11:10:15 +00:00
prune: true
selfHeal: false