We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d62c87 commit 103918dCopy full SHA for 103918d
Charts/glazed/templates/configmap.yaml
@@ -4,4 +4,8 @@ metadata:
4
name: {{ .Release.Name }}-configmap
5
data:
6
config.toml: |-
7
-{{ .Files.Get "config.toml" | indent 4 }}
+{{ if .Values.overrideConfig }}
8
+{{ .Values.overrideConfig | indent 4 }}
9
+{{ else }}
10
+{{ .Files.Get "config.toml" | indent 4 }}
11
+{{ end }}
Charts/glazed/values.yaml
@@ -121,3 +121,6 @@ nodeSelector: {}
121
tolerations: []
122
123
affinity: {}
124
+
125
+overrideConfig: false
126
+# customConfig = ""
0 commit comments