Skip to content

Commit 98d0c37

Browse files
authored
fix(chart): added missing livenessProbe (#467)
* fix(chart): added missing livenessProbe * fix: remove version bump
1 parent 5721fba commit 98d0c37

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

config/helm/aws-node-termination-handler/templates/daemonset.linux.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,10 @@ spec:
197197
name: liveness-probe
198198
protocol: TCP
199199
{{- end }}
200+
{{- if .Values.enableProbesServer }}
201+
livenessProbe:
202+
{{- toYaml .Values.probes | nindent 12 }}
203+
{{- end }}
200204
nodeSelector:
201205
{{ include "aws-node-termination-handler.nodeSelectorTermsOs" . }}: linux
202206
{{- with .Values.nodeSelector }}

config/helm/aws-node-termination-handler/templates/daemonset.windows.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ spec:
167167
name: liveness-probe
168168
protocol: TCP
169169
{{- end }}
170+
{{- if .Values.enableProbesServer }}
171+
livenessProbe:
172+
{{- toYaml .Values.probes | nindent 12 }}
173+
{{- end }}
170174
nodeSelector:
171175
{{ include "aws-node-termination-handler.nodeSelectorTermsOs" . }}: windows
172176
{{- with .Values.nodeSelector }}

config/helm/aws-node-termination-handler/templates/deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,10 @@ spec:
169169
name: liveness-probe
170170
protocol: TCP
171171
{{- end }}
172+
{{- if .Values.enableProbesServer }}
173+
livenessProbe:
174+
{{- toYaml .Values.probes | nindent 12 }}
175+
{{- end }}
172176
nodeSelector:
173177
{{ include "aws-node-termination-handler.nodeSelectorTermsOs" . }}: linux
174178
{{- with .Values.nodeSelector }}

0 commit comments

Comments
 (0)