File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 73
73
volumes :
74
74
{{ toYaml .Values.fluentbit.additionalVolumes | indent 4 }}
75
75
{{- end }}
76
+ {{- with .Values.fluentbit.livenessProbe }}
77
+ {{- if .enabled }}
78
+ livenessProbe :
79
+ httpGet :
80
+ port : 2020
81
+ path : /
82
+ initialDelaySeconds : {{ .initialDelaySeconds }}
83
+ periodSeconds : {{ .periodSeconds }}
84
+ timeoutSeconds : {{ .timeoutSeconds }}
85
+ successThreshold : {{ .successThreshold }}
86
+ failureThreshold : {{ .failureThreshold }}
87
+ {{- end }}
88
+ {{- end }}
76
89
{{- if .Values.fluentbit.additionalVolumesMounts }}
77
90
volumesMounts :
78
91
{{ toYaml .Values.fluentbit.additionalVolumesMounts | indent 4 }}
Original file line number Diff line number Diff line change @@ -86,6 +86,14 @@ fluentbit:
86
86
tlsConfig : {}
87
87
relabelings : []
88
88
metricRelabelings : []
89
+ livenessProbe :
90
+ enabled : true
91
+ initialDelaySeconds : 10
92
+ periodSeconds : 10
93
+ timeoutSeconds : 15
94
+ successThreshold : 1
95
+ failureThreshold : 8
96
+
89
97
image :
90
98
repository : " ghcr.io/fluent/fluent-operator/fluent-bit"
91
99
tag : " 3.1.8"
You can’t perform that action at this time.
0 commit comments