feat: adding helm config for dind sidecar (#232)

Co-authored-by: Callum Tait <callum.tait@PBXUK-HH-05772.photobox.priv>
This commit is contained in:
callum-tait-pbx 2020-12-12 23:31:24 +00:00 committed by GitHub
parent 8d6f77e07c
commit fb49bbda75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -33,6 +33,7 @@ spec:
- "--metrics-addr=127.0.0.1:8080" - "--metrics-addr=127.0.0.1:8080"
- "--enable-leader-election" - "--enable-leader-election"
- "--sync-period={{ .Values.syncPeriod }}" - "--sync-period={{ .Values.syncPeriod }}"
- "--docker-image={{ .Values.image.dindSidecarRepositoryAndTag }}"
command: command:
- "/manager" - "/manager"
env: env:

View File

@ -8,9 +8,10 @@ syncPeriod: 10m
image: image:
repository: summerwind/actions-runner-controller repository: summerwind/actions-runner-controller
# Overrides the manager image tag whose default is the chart appVersion if the tag key is commented out
tag: "latest"
dindSidecarRepositoryAndTag: "docker:dind"
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
imagePullSecrets: [] imagePullSecrets: []
nameOverride: "" nameOverride: ""