* fix(argo-cd): Fix indent on Argo CD application creation Signed-off-by: Alex Sears <me@alexsears.com> * Version bump Signed-off-by: Alex Sears <me@alexsears.com> * Add ArtifactHub change annotation Signed-off-by: Alex Sears <me@alexsears.com> * Helm docs run Signed-off-by: Alex Sears <me@alexsears.com> * Fix indent also on 'server.additionalProjects' Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Reword changelog Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Restore README (use helm-docs v1.9.1 Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
42 lines
931 B
YAML
42 lines
931 B
YAML
{{- range .Values.server.additionalApplications }}
|
|
---
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
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 }}
|
|
{{- with .finalizers }}
|
|
finalizers:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
project: {{ tpl .project $ }}
|
|
source:
|
|
{{- toYaml .source | nindent 4 }}
|
|
destination:
|
|
{{- toYaml .destination | nindent 4 }}
|
|
{{- with .syncPolicy }}
|
|
syncPolicy:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .ignoreDifferences }}
|
|
ignoreDifferences:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .info }}
|
|
info:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|