* 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>
11 lines
No EOL
332 B
YAML
11 lines
No EOL
332 B
YAML
{{- if .Values.configs.styles }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: argocd-custom-styles
|
|
labels:
|
|
{{- include "argo-cd.labels" (dict "context" . "component" .Values.repoServer.name "name" .Values.repoServer.name) | nindent 4 }}
|
|
data:
|
|
custom.styles.css: |
|
|
{{- .Values.configs.styles | nindent 4 }}
|
|
{{- end }} |