
feat(argocd-apps): add rollout strategy for ApplicationSet Signed-off-by: Khue Doan <mail@khuedoan.com>
83 lines
1.8 KiB
YAML
83 lines
1.8 KiB
YAML
|
|
{{- range .Values.applicationsets }}
|
|
---
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: ApplicationSet
|
|
metadata:
|
|
{{- with .additionalAnnotations }}
|
|
annotations:
|
|
{{- range $key, $value := . }}
|
|
{{ $key }}: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .additionalLabels }}
|
|
labels:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
name: {{ .name }}
|
|
{{- with .namespace }}
|
|
namespace: {{ . }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if hasKey . "goTemplate" }}
|
|
goTemplate: {{ .goTemplate }}
|
|
{{- end }}
|
|
{{- with .generators }}
|
|
generators:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .strategy }}
|
|
strategy:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .syncPolicy }}
|
|
syncPolicy:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .template }}
|
|
template:
|
|
{{- with .metadata }}
|
|
metadata:
|
|
{{- with .annotations }}
|
|
annotations:
|
|
{{- range $key, $value := . }}
|
|
{{ $key }}: {{ $value | squote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .labels }}
|
|
labels:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
name: {{ .name | squote }}
|
|
{{- with .namespace }}
|
|
namespace: {{ . | squote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .spec }}
|
|
spec:
|
|
project: {{ .project | squote }}
|
|
{{- with .source }}
|
|
source:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .sources }}
|
|
sources:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
destination:
|
|
{{- toYaml .destination | nindent 8 }}
|
|
{{- with .syncPolicy }}
|
|
syncPolicy:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .ignoreDifferences }}
|
|
ignoreDifferences:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .info }}
|
|
info:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
{{- end }}
|
|
{{- end }}
|