19 lines
384 B
YAML
19 lines
384 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
roles:
|
|
- ansible-role-gitlab_runner
|
|
vars:
|
|
gitlab_runner_env_variables:
|
|
TEST: toto
|
|
gitlab_runner_runners:
|
|
- name: test
|
|
url: https://gitlab.example.com
|
|
token: TesT
|
|
executor: docker
|
|
state: absent
|
|
|
|
pre_tasks:
|
|
- name: update apt cache
|
|
ansible.builtin.apt:
|
|
update_cache: true
|