Add a GitLab runner
Woo CI!
This commit is contained in:
19
ansible/roles/gitlab_runner/files/config.toml
Normal file
19
ansible/roles/gitlab_runner/files/config.toml
Normal file
@ -0,0 +1,19 @@
|
||||
concurrent = {{ ansible_processor_nproc }}
|
||||
log_level = "warning"
|
||||
check_interval = 10
|
||||
|
||||
[session_server]
|
||||
session_timeout = 1800
|
||||
|
||||
[[runners]]
|
||||
name = "runner"
|
||||
url = "https://code.theorangeone.net"
|
||||
token = "{{ gitlab_runner_token }}"
|
||||
limit = 0
|
||||
executor = "docker"
|
||||
|
||||
[runners.docker]
|
||||
image = "alpine"
|
||||
privileged = false
|
||||
disable_cache = false
|
||||
volumes = ["/cache"]
|
Reference in New Issue
Block a user