infrastructure/ansible/roles/gitlab_runner/files/config.toml

21 lines
436 B
TOML
Raw Normal View History

2022-08-17 20:03:37 +01:00
concurrent = {{ ansible_processor_nproc }}
2021-06-01 19:29:21 +01:00
log_level = "warning"
check_interval = 10
[session_server]
session_timeout = 1800
[[runners]]
name = "runner"
2021-06-02 19:49:28 +01:00
url = "https://git.theorangeone.net"
2021-06-01 19:29:21 +01:00
token = "{{ gitlab_runner_token }}"
limit = 0
executor = "docker"
[runners.docker]
image = "alpine"
privileged = true
2021-06-01 19:29:21 +01:00
disable_cache = false
volumes = ["/cache", "/certs/client"]
pull_policy = "if-not-present"