We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f123b2 commit 317d9dbCopy full SHA for 317d9db
helm/install/templates/manager.yaml
@@ -20,7 +20,7 @@ spec:
20
image: "{{ .Values.image.image }}"
21
env:
22
- name: CRUNCHY_DEBUG
23
- value: "true"
+ value: {{ if eq .Values.debug false }}"false"{{- else }}"true"{{- end }}
24
{{- range $image_name, $image_val := .Values.relatedImages }}
25
- name: RELATED_IMAGE_{{ $image_name | upper }}
26
value: "{{ $image_val.image }}"
helm/install/values.yaml
@@ -21,3 +21,7 @@ relatedImages:
## Install in default or single namespace mode
singleNamespace: false
+
+# debug allows you to enable or disable the "debug" level of logging.
+# Defaults to the value below.
27
+# debug: true
0 commit comments