We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8c992 commit 8219da1Copy full SHA for 8219da1
deploy/chart/templates/daemonset.yaml
@@ -37,7 +37,7 @@ spec:
37
tolerations:
38
{{- toYaml . | nindent 8 }}
39
{{- end }}
40
- hostNetwork: {{ .Values.enableHostNetwork }}
+ hostNetwork: {{ if hasKey .Values "enableHostNetwork" }}{{ .Values.enableHostNetwork }}{{ else }}true{{ end }}
41
containers:
42
- image: {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
43
imagePullPolicy: {{ .Values.image.pullPolicy }}
deploy/chart/values.yaml
@@ -127,7 +127,7 @@ resources:
127
# allowUnauthorizedMetrics: false
128
129
# enables host network
130
-enableHostNetwork: true
+# enableHostNetwork: true
131
132
# specify the update strategy
133
# updateStrategy:
0 commit comments