infrastructure/ansible/roles/gitlab_runner/files/config.toml
2022-02-14 09:09:28 +00:00

21 lines
467 B
TOML

concurrent = {{ ansible_processor_nproc }}
log_level = "warning"
check_interval = 10
[session_server]
session_timeout = 1800
[[runners]]
name = "runner"
url = "https://git.theorangeone.net"
token = "{{ gitlab_runner_token }}"
limit = 0
executor = "docker"
[runners.docker]
image = "alpine"
privileged = true
disable_cache = false
volumes = ["/cache", "/var/run/docker.sock:/var/run/docker.sock:ro"]
pull_policy = "if-not-present"