2020-08-09 06:20:33 +00:00
|
|
|
---
|
|
|
|
- name: Converge
|
|
|
|
hosts: all
|
|
|
|
roles:
|
|
|
|
- ansible-role-gitlab_runner
|
|
|
|
vars:
|
2022-05-10 08:40:42 +00:00
|
|
|
gitlab_runner_env_variables:
|
|
|
|
TEST: toto
|
2020-08-09 06:20:33 +00:00
|
|
|
gitlab_runner_runners:
|
|
|
|
- name: test
|
|
|
|
url: https://gitlab.example.com
|
|
|
|
token: TesT
|
|
|
|
executor: docker
|
|
|
|
state: absent
|
2022-04-07 13:15:48 +00:00
|
|
|
|
|
|
|
pre_tasks:
|
|
|
|
- name: update apt cache
|
|
|
|
ansible.builtin.apt:
|
|
|
|
update_cache: true
|