Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
fieldRef:
fieldPath: metadata.namespace
resources:
{{ with .Values.resources }}
{{- with .Values.resources }}
{{- toYaml . | nindent 10 }}
{{- end }}
volumeMounts:
Expand All @@ -93,9 +93,16 @@ spec:
port: probes
scheme: HTTP
path: /readyz
startupProbe:
httpGet:
port: probes
scheme: HTTP
path: /healthz
periodSeconds: 1
failureThreshold: 30
priorityClassName: {{ .Values.priorityClassName }}
securityContext:
{{ with .Values.securityContext }}
{{- with .Values.securityContext }}
{{- toYaml . | nindent 8}}
{{- end }}
volumes:
Expand Down
Loading