Skip to content

Commit becf96a

Browse files
committed
feat: [telegraf] Add support for unhealthyPodEvictionPolicy
* Add config option for unhealthyPodEvictionPolicy * Bump appVersion to 1.36.5 * Bump version to 1.8.66
1 parent 3dbf355 commit becf96a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

charts/telegraf/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: telegraf
3-
version: 1.8.65
4-
appVersion: 1.36.4
3+
version: 1.8.66
4+
appVersion: 1.36.5
55
deprecated: false
66
description: Telegraf is an agent written in Go for collecting, processing, aggregating, and writing metrics.
77
keywords:

charts/telegraf/templates/pdb.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ metadata:
1010
labels:
1111
{{- include "telegraf.labels" . | nindent 4 }}
1212
spec:
13+
{{- if .Values.pdb.unhealthyPodEvictionPolicy }}
14+
unhealthyPodEvictionPolicy: {{ .Values.pdb.unhealthyPodEvictionPolicy }}
15+
{{- end }}
1316
{{- if .Values.pdb.minAvailable }}
1417
minAvailable: {{ .Values.pdb.minAvailable }}
1518
{{- end }}

charts/telegraf/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ pdb:
192192
create: true
193193
minAvailable: 1
194194
# maxUnavailable: 1
195+
# unhealthyPodEvictionPolicy: "AlwaysAllow"
195196
# containerPorts:
196197
# - name: http
197198
# containerPort: 9273

0 commit comments

Comments
 (0)