* feat: define custom styles via values Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * Version Bump Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * Mount to correct server Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * fix(argo-cd): correct alphabetical place of new values Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * fix(argo-cd): correct alphabetical place of new values in README Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
15 lines
No EOL
468 B
YAML
15 lines
No EOL
468 B
YAML
{{- if .Values.server.configEnabled }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: argocd-cm
|
|
labels:
|
|
{{- include "argo-cd.labels" (dict "context" . "component" .Values.server.name "name" "cm") | nindent 4 }}
|
|
{{- if .Values.server.configAnnotations }}
|
|
annotations:
|
|
{{- range $key, $value := .Values.server.configAnnotations }}
|
|
{{ $key }}: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
data: {{- include "argo-cd.config" $ | nindent 4 }}
|
|
{{- end }} |