Skip to content
Snippets Groups Projects
Commit 76302584 authored by Ryan Bonham's avatar Ryan Bonham
Browse files

Fix liveness/readyness probes, they can not be empty {}

parent aa321942
No related branches found
No related tags found
No related merge requests found
......@@ -57,10 +57,14 @@ spec:
name: http-metrics
securityContext:
{{- toYaml .Values.promtail.securityContext | nindent 12 }}
{{- if .Values.promtail.livenessProbe }}
livenessProbe:
{{- toYaml .Values.promtail.livenessProbe | nindent 12 }}
{{- end }}
{{- if .Values.promtail.livenessProbe }}
readinessProbe:
{{- toYaml .Values.promtail.readinessProbe | nindent 12 }}
{{- end }}
resources:
{{- toYaml .Values.promtail.resources | nindent 12 }}
nodeSelector:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment