We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90504b commit 04d0b59Copy full SHA for 04d0b59
2 files changed
ci/helm-chart/templates/deployment.yaml
@@ -123,14 +123,18 @@ spec:
123
containerPort: {{ .port }}
124
protocol: {{ .protocol }}
125
{{- end }}
126
+ {{- if ne .Values.livenessProbe.enabled false }}
127
livenessProbe:
128
httpGet:
129
path: /healthz
130
port: http
131
+ {{- end }}
132
+ {{- if ne .Values.readinessProbe.enabled false }}
133
readinessProbe:
134
135
136
137
138
resources:
139
{{- toYaml .Values.resources | nindent 12 }}
140
{{- with .Values.nodeSelector }}
ci/helm-chart/values.yaml
@@ -111,6 +111,12 @@ resources: {}
111
# cpu: 100m
112
# memory: 1000Mi
113
114
+livenessProbe:
115
+ enabled: true
116
+
117
+readinessProbe:
118
119
120
nodeSelector: {}
121
122
tolerations: []
0 commit comments