We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e59afb + 07d68cc commit 2fc6fc5Copy full SHA for 2fc6fc5
charts/headlamp/templates/deployment.yaml
@@ -388,6 +388,9 @@ spec:
388
{{- toYaml $defaultSC | nindent 12 }}
389
{{- end }}
390
391
+ {{- with .Values.extraContainers }}
392
+ {{- toYaml . | nindent 8 }}
393
+ {{- end }}
394
{{- with .Values.nodeSelector }}
395
nodeSelector:
396
{{- toYaml . | nindent 8 }}
charts/headlamp/values.yaml
@@ -28,6 +28,9 @@ namespaceOverride: ""
28
# -- An optional list of init containers to be run before the main containers.
29
initContainers: []
30
31
+# -- An optional list of extra containers to be run along side the main containers.
32
+extraContainers: []
33
+
34
config:
35
inCluster: true
36
inClusterContextName: "main"
0 commit comments