We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ee6e9 commit 1966446Copy full SHA for 1966446
charts/helm-dashboard/templates/deployment.yaml
@@ -40,6 +40,8 @@ spec:
40
value: /opt/dashboard/helm/config
41
- name: HELM_DATA_HOME
42
value: /opt/dashboard/helm/data
43
+ - name: DEBUG
44
+ value: {{- ternary " 1" "" .Values.debug }}
45
ports:
46
- name: http
47
containerPort: 8080
charts/helm-dashboard/values.yaml
@@ -1,5 +1,8 @@
1
replicaCount: 1
2
3
+# Flag for setting environment to debug mode
4
+debug: false
5
+
6
image:
7
repository: komodorio/helm-dashboard
8
pullPolicy: IfNotPresent
0 commit comments