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: {}