Merge 9847d9e84c into e3ed1ba226
This commit is contained in:
commit
081a9fb7c0
|
|
@ -10,6 +10,9 @@ spec:
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
{{- include "actions-runner-controller.selectorLabels" . | nindent 6 }}
|
{{- include "actions-runner-controller.selectorLabels" . | nindent 6 }}
|
||||||
|
{{- with .Values.minReadySeconds }}
|
||||||
|
minReadySeconds: {{ . }}
|
||||||
|
{{- end }}
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
{{- with .Values.podAnnotations }}
|
{{- with .Values.podAnnotations }}
|
||||||
|
|
@ -148,6 +151,15 @@ spec:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
|
{{- if .Values.startupProbe }}
|
||||||
|
startupProbe: {{ toYaml .Values.startupProbe | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.livenessProbe }}
|
||||||
|
livenessProbe: {{ toYaml .Values.livenessProbe | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.readinessProbe }}
|
||||||
|
readinessProbe: {{ toYaml .Values.readinessProbe | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
{{- if .Values.authSecret.enabled }}
|
{{- if .Values.authSecret.enabled }}
|
||||||
- mountPath: "/etc/actions-runner-controller"
|
- mountPath: "/etc/actions-runner-controller"
|
||||||
|
|
|
||||||
|
|
@ -141,6 +141,13 @@ tolerations: []
|
||||||
|
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
|
minReadySeconds: 10
|
||||||
|
|
||||||
|
# Probes
|
||||||
|
startupProbe: {}
|
||||||
|
livenessProbe: {}
|
||||||
|
readinessProbe: {}
|
||||||
|
|
||||||
# Only one of minAvailable or maxUnavailable can be set
|
# Only one of minAvailable or maxUnavailable can be set
|
||||||
podDisruptionBudget:
|
podDisruptionBudget:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue