helm-chart: Add livenessProbe & readinessProbe

Signed-off-by: babykart <babykart@gmail.com>
This commit is contained in:
babykart
2025-03-22 20:44:45 +01:00
committed by maximilien
parent 4ef954d176
commit 9b38cba6f3
3 changed files with 26 additions and 10 deletions
+8 -9
View File
@@ -78,15 +78,14 @@ spec:
{{- with .Values.extraVolumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
# TODO
# livenessProbe:
# httpGet:
# path: /
# port: 3900
# readinessProbe:
# httpGet:
# path: /
# port: 3900
{{- with .Values.livenessProbe }}
livenessProbe:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.readinessProbe }}
readinessProbe:
{{- toYaml . | nindent 12 }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumes: