Newer
Older
GitLab Runner [](https://travis-ci.org/riemers/ansible-gitlab-runner) [](https://galaxy.ansible.com/riemers/gitlab-runner/)
This role will install the [official GitLab Runner](https://gitlab.com/gitlab-org/gitlab-runner)
(fork from haroldb) with updates. Needed something simple and working, this did the trick for me. Open for changes though.
Requirements
------------
This role requires Ansible 2.0 or higher.
Role Variables
--------------
`gitlab_runner_package_name`
**Since Gitlab 10.x** The package name of `gitlab-ci-multi-runner` has been renamed to `gitlab-runner`. In order to install a version >= 10.x you will need to define this variable `gitlab_runner_package_name: gitlab-runner`.
The maximum number of jobs to run concurrently.
Defaults to the number of processor cores.
`gitlab_runner_registration_token`
The GitLab registration token. If this is specified, a runner will be registered to a GitLab server.
The description of the runner.
Defaults to the hostname.
`gitlab_runner_docker_image`
The default Docker image to use. Required when executor is `docker`.
The tags assigned to the runner,
Defaults to an empty list.
See the [config for more options](https://github.com/riemers/ansible-gitlab-runner/blob/master/tasks/register-runner.yml)
```yaml
- hosts: all
remote_user: root
vars_files:
- vars/main.yml
roles:
```
Inside `vars/main.yml`
```yaml
gitlab_runner_registration_token: 'HUzTMgnxk17YV8Rj8ucQ'
gitlab_runner_description: 'Example GitLab Runner'
gitlab_runner_tags:
- node
- ruby
- mysql
gitlab_runner_docker_volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
- "/cache"