enable passing docker-gid in helm chart (#2574)
This commit is contained in:
parent
c7b2dd1764
commit
32a653c0ca
|
|
@ -70,6 +70,9 @@ spec:
|
||||||
{{- if .Values.logFormat }}
|
{{- if .Values.logFormat }}
|
||||||
- "--log-format={{ .Values.logFormat }}"
|
- "--log-format={{ .Values.logFormat }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.dockerGID }}
|
||||||
|
- "--docker-gid={{ .Values.dockerGID }}"
|
||||||
|
{{- end }}
|
||||||
command:
|
command:
|
||||||
- "/manager"
|
- "/manager"
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -192,6 +192,10 @@ admissionWebHooks:
|
||||||
## specify log format for actions runner controller. Valid options are "text" and "json"
|
## specify log format for actions runner controller. Valid options are "text" and "json"
|
||||||
logFormat: text
|
logFormat: text
|
||||||
|
|
||||||
|
# enable setting the docker group id for the runner container
|
||||||
|
# https://github.com/actions/actions-runner-controller/pull/2499
|
||||||
|
#dockerGID: 121
|
||||||
|
|
||||||
githubWebhookServer:
|
githubWebhookServer:
|
||||||
enabled: false
|
enabled: false
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue