· 7 years ago · Jan 14, 2019, 12:24 AM
1concurrent = 10
2check_interval = 0
3
4[session_server]
5 session_timeout = 1800
6
7[[runners]]
8 name = "Builds coordinator"
9 url = "https://gitlab.com/"
10 token = "<token>"
11 executor = "docker+machine"
12 limit = 10
13 [runners.docker]
14 tls_verify = false
15 image = "alpine:latest"
16 privileged = false
17 disable_entrypoint_overwrite = false
18 oom_kill_disable = false
19 disable_cache = false
20 volumes = ["/cache"]
21 shm_size = 0
22 [runners.machine]
23 IdleCount = 1
24 IdleTime = 0
25 OffPeakPeriods = [
26 "* * 0-10,18-23 * * mon-fri *",
27 "* * * * * sat,sun *"
28 ]
29 OffPeakTimezone = "Europe/Minsk"
30 OffPeakIdleCount = 0
31 OffPeakIdleTime = 0
32 MachineDriver = "digitalocean"
33 MachineName = "gitlab-runner-autoscale-%s"
34 MachineOptions = [
35 "digitalocean-image=coreos-stable",
36 "digitalocean-ssh-user=core",
37 "digitalocean-access-token=<token>",
38 "digitalocean-region=lon1",
39 "digitalocean-size=4gb",
40 "digitalocean-private-networking"
41 ]
42 [runners.cache]
43 Type = "s3"
44 Path = "cache_for_builds"
45 Shared = false
46 [runners.cache.s3]
47 ServerAddress = "ams3.digitaloceanspaces.com"
48 AccessKey = "<key>"
49 SecretKey = "<secret>"
50 BucketName = "cache-for-builds"
51 BucketLocation = "ams3"
52 Insecure = false
53
54Version: 11.5.1
55Git revision: 7f00c780
56Git branch: 11-5-stable
57GO version: go1.8.7
58Built: 2018-12-06T13:25:34+0000
59OS/Arch: linux/amd64