This commit is contained in:
Shaul 2025-10-16 13:26:26 -07:00 committed by GitHub
commit 121c3d466f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View File

@ -96,7 +96,7 @@ volumeMounts:
{{- end }}
{{- define "gha-runner-scale-set.dind-container" -}}
image: docker:dind
image: {{ .Values.dind.image | default "docker:dind" }}
args:
- dockerd
- --host=unix:///var/run/docker.sock

View File

@ -0,0 +1,10 @@
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ .Values.serviceAccount.name | default .Chart.Name }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}