-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml.example
88 lines (81 loc) · 2.42 KB
/
config.toml.example
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
concurrent = 3
[[runners]]
name = "gitlab-runners-0"
url = "https://git.example.com"
token = "<REPLACE_WITH_YOUR_GITLAB_RUNNER_REGISTRATION_TOKEN>"
limit = 0
executor = "docker"
builds_dir = ""
[runners.docker]
host = ""
image = "docker:24.0.6-dind-alpine3.18"
privileged = false
disable_cache = false
cache_dir = "/cache"
volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"]
[runners.cache]
Type = "s3"
Path = "gitlab_runner_cache/"
Shared = true
[runners.cache.s3]
ServerAddress = "s3.amazonaws.com"
AccessKey = "<AWS_S3_ACCESS_KEY>"
SecretKey = "<AWS_S3_SECRET_KEY>"
BucketName = "git-idstar-group"
BucketLocation = "ap-southeast-1"
Insecure = false
[[runners]]
name = "gitlab-runners-1"
url = "https://git.example.com"
token = "<REPLACE_WITH_YOUR_GITLAB_RUNNER_REGISTRATION_TOKEN>"
limit = 0
executor = "docker"
builds_dir = ""
[runners.docker]
host = ""
image = "docker:24.0.6-dind-alpine3.18"
privileged = false
disable_cache = false
cache_dir = "/cache"
volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"]
[runners.cache]
Type = "s3"
Path = "gitlab_runner_cache/"
Shared = true
[runners.cache.s3]
ServerAddress = "s3.amazonaws.com"
AccessKey = "<AWS_S3_ACCESS_KEY>"
SecretKey = "<AWS_S3_SECRET_KEY>"
BucketName = "git-idstar-group"
BucketLocation = "ap-southeast-1"
Insecure = false
[[runners]]
name = "gitlab-runners-3"
url = "https://git.example.com"
token = "<REPLACE_WITH_YOUR_GITLAB_RUNNER_REGISTRATION_TOKEN>"
limit = 0
executor = "docker"
builds_dir = ""
[runners.docker]
host = ""
image = "docker:24.0.6-dind-alpine3.18"
privileged = false
disable_cache = false
cache_dir = "/cache"
volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"]
[runners.cache]
Type = "s3"
Path = "gitlab_runner_cache/"
Shared = true
[runners.cache.s3]
ServerAddress = "s3.amazonaws.com"
AccessKey = "<AWS_S3_ACCESS_KEY>"
SecretKey = "<AWS_S3_SECRET_KEY>"
BucketName = "git-idstar-group"
BucketLocation = "ap-southeast-1"
Insecure = false
# More information
## https://docs.gitlab.com/runner/
## https://docs.gitlab.com/runner/configuration/
# Complete configuration settings example
## https://github.com/veertuinc/gitlab-runner/blob/master/config.toml.example