forked from mobilecoinofficial/gha-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
68 lines (67 loc) · 1.66 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
containerMode:
type: dind
githubConfigSecret: pre-defined-github-secret
githubConfigUrl: https://github.com/Zipstack
maxRunners: 10
minRunners: 0
runnerGroup: default
runnerScaleSetName: custom-k8s-runner
template:
spec:
containers:
- command:
- /home/runner/run.sh
image: unstract/actions-runner:2.319.1
name: runner
template:
spec:
containers:
- command:
- /home/runner/run.sh
env:
- name: DOCKER_HOST
value: unix:///var/run/docker.sock
image: unstract/actions-runner:2.319.1
name: runner
volumeMounts:
- mountPath: /home/runner/_work
name: work
- mountPath: /var/run
name: dind-sock
- args:
- dockerd
- --host=unix:///var/run/docker.sock
- --group=$(DOCKER_GROUP_GID)
env:
- name: DOCKER_GROUP_GID
value: "123"
image: docker:dind
name: dind
securityContext:
privileged: true
volumeMounts:
- mountPath: /home/runner/_work
name: work
- mountPath: /var/run
name: dind-sock
- mountPath: /home/runner/externals
name: dind-externals
initContainers:
- command:
- cp
- -r
- -v
- /home/runner/externals/.
- /home/runner/tmpDir/
image: unstract/actions-runner:2.319.1
name: init-dind-externals
volumeMounts:
- mountPath: /home/runner/tmpDir
name: dind-externals
volumes:
- emptyDir: {}
name: work
- emptyDir: {}
name: dind-sock
- emptyDir: {}
name: dind-externals