mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.9 KiB
YAML
69 lines
1.9 KiB
YAML
- name: Install required libs
|
|
pip:
|
|
name: python-gitlab
|
|
state: present
|
|
|
|
- name: Create {{ gitlab_project_name }}
|
|
gitlab_project:
|
|
server_url: "{{ gitlab_host }}"
|
|
validate_certs: False
|
|
login_token: "{{ gitlab_login_token }}"
|
|
name: "{{ gitlab_project_name }}"
|
|
state: present
|
|
|
|
- name: Cleanup Gitlab runner
|
|
gitlab_runner:
|
|
server_url: "{{ gitlab_host }}"
|
|
validate_certs: false
|
|
login_token: "{{ gitlab_login_token }}"
|
|
description: "{{ gitlab_runner_name }}"
|
|
registration_token: "{{ gitlab_runner_registration_token }}"
|
|
state: absent
|
|
|
|
- name: Create Gitlab Runner
|
|
gitlab_runner:
|
|
server_url: "{{ gitlab_host }}"
|
|
validate_certs: false
|
|
login_token: "{{ gitlab_login_token }}"
|
|
description: "{{ gitlab_runner_name }}"
|
|
registration_token: "{{ gitlab_runner_registration_token }}"
|
|
state: present
|
|
register: gitlab_runner_state
|
|
|
|
- name: Test group created
|
|
assert:
|
|
that:
|
|
- gitlab_runner_state is changed
|
|
|
|
|
|
#### COMMENTED AS MODULE WILL UPDATE THE RUNNER IF EXISTS. TO BE DISCUSSED ####
|
|
# - name: Create Gitlab Runner ( Idempotency test )
|
|
# gitlab_runner:
|
|
# server_url: "{{ gitlab_host }}"
|
|
# validate_certs: false
|
|
# login_token: "{{ gitlab_login_token }}"
|
|
# description: "{{ gitlab_runner_name }}"
|
|
# registration_token: "{{ gitlab_runner_registration_token }}"
|
|
# state: present
|
|
# register: gitlab_runner_state_again
|
|
|
|
# - name: Test module is idempotent
|
|
# assert:
|
|
# that:
|
|
# - gitlab_runner_state_again is not changed
|
|
|
|
- name: Remove Gitlab Runner
|
|
gitlab_runner:
|
|
server_url: "{{ gitlab_host }}"
|
|
validate_certs: false
|
|
login_token: "{{ gitlab_login_token }}"
|
|
description: "{{ gitlab_runner_name }}"
|
|
registration_token: "{{ gitlab_runner_registration_token }}"
|
|
state: absent
|
|
register: gitlab_runner_state_absent
|
|
|
|
- name: Assert runner has been removed
|
|
assert:
|
|
that:
|
|
- gitlab_runner_state_absent is changed
|