This commit is contained in:
Markus Blaschke 2025-10-03 10:57:35 -05:00 committed by GitHub
commit 081a9fb7c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 0 deletions

View File

@ -10,6 +10,9 @@ spec:
selector:
matchLabels:
{{- include "actions-runner-controller.selectorLabels" . | nindent 6 }}
{{- with .Values.minReadySeconds }}
minReadySeconds: {{ . }}
{{- end }}
template:
metadata:
{{- with .Values.podAnnotations }}
@ -148,6 +151,15 @@ spec:
{{- toYaml .Values.resources | nindent 12 }}
securityContext:
{{- 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:
{{- if .Values.authSecret.enabled }}
- mountPath: "/etc/actions-runner-controller"

View File

@ -141,6 +141,13 @@ tolerations: []
affinity: {}
minReadySeconds: 10
# Probes
startupProbe: {}
livenessProbe: {}
readinessProbe: {}
# Only one of minAvailable or maxUnavailable can be set
podDisruptionBudget:
enabled: false