mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
30 lines
768 B
YAML
30 lines
768 B
YAML
githubConfigSecret: github-app-secret
|
|
runnerScaleSetName: "marcels-runner"
|
|
minRunners: 4
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: runner
|
|
image: ghcr.io/actions/actions-runner:latest
|
|
imagePullPolicy: Always
|
|
command: ["/home/runner/run.sh"]
|
|
env:
|
|
- name: DOCKER_HOST
|
|
value: tcp://localhost:2375
|
|
volumeMounts:
|
|
- name: work
|
|
mountPath: /home/runner/_work
|
|
- name: dind
|
|
image: docker:24.0.7-dind-alpine3.18
|
|
env:
|
|
- name: DOCKER_TLS_CERTDIR
|
|
value: ""
|
|
securityContext:
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: work
|
|
mountPath: /home/runner/_work
|
|
volumes:
|
|
- name: work
|
|
emptyDir: {}
|