We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dbf355 commit 8085814Copy full SHA for 8085814
charts/telegraf/templates/pdb.yaml
@@ -10,6 +10,9 @@ metadata:
10
labels:
11
{{- include "telegraf.labels" . | nindent 4 }}
12
spec:
13
+ {{- if .Values.pdb.unhealthyPodEvictionPolicy }}
14
+ unhealthyPodEvictionPolicy: {{ .Values.pdb.unhealthyPodEvictionPolicy }}
15
+ {{- end }}
16
{{- if .Values.pdb.minAvailable }}
17
minAvailable: {{ .Values.pdb.minAvailable }}
18
{{- end }}
charts/telegraf/values.yaml
@@ -192,6 +192,7 @@ pdb:
192
create: true
193
minAvailable: 1
194
# maxUnavailable: 1
195
+ # unhealthyPodEvictionPolicy: "AlwaysAllow"
196
# containerPorts:
197
# - name: http
198
# containerPort: 9273
0 commit comments