2020-12-14 20:57:09 +00:00
|
|
|
---
|
|
|
|
# Creates a Gitlab Instance
|
|
|
|
- name: Install and Provision Gitlab
|
|
|
|
hosts: gitlabservers
|
|
|
|
become: true
|
2020-12-17 21:47:46 +00:00
|
|
|
vars_file:
|
|
|
|
- vars/gitlab.yml
|
2020-12-14 20:57:09 +00:00
|
|
|
|
|
|
|
pre_tasks:
|
2020-12-17 21:47:46 +00:00
|
|
|
- name: Check if ansible cannot be run here
|
|
|
|
stat:
|
|
|
|
path: /etc/no-ansible
|
|
|
|
register: no_ansible
|
2020-12-18 06:40:14 +00:00
|
|
|
|
2020-12-14 20:57:09 +00:00
|
|
|
- name: Verify if we can run ansible
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- "not no_ansible.stat.exists"
|
|
|
|
msg: "/etc/no-ansible exists - skipping un on this node"
|
2020-12-18 06:40:14 +00:00
|
|
|
|
2020-12-14 20:57:09 +00:00
|
|
|
- name: Install SELinux packages
|
|
|
|
package:
|
|
|
|
name: python3-policycoreutils.noarch
|
|
|
|
state: present
|
|
|
|
|
2020-12-16 20:31:42 +00:00
|
|
|
roles:
|
2020-12-14 20:57:09 +00:00
|
|
|
- role: geerlingguy.gitlab
|
2020-12-16 20:31:42 +00:00
|
|
|
state: present
|
2020-12-14 20:57:09 +00:00
|
|
|
|
|
|
|
post_tasks:
|
2020-12-18 06:40:14 +00:00
|
|
|
- name: Reconfigure GitLab
|
|
|
|
import_tasks: tasks/gitlab-reconfigure.yml
|
|
|
|
|
2020-12-14 20:57:09 +00:00
|
|
|
- name: Touching run file that ansible has ran here
|
|
|
|
file:
|
|
|
|
path: /var/log/ansible.run
|
|
|
|
state: touch
|
|
|
|
mode: '0644'
|
|
|
|
owner: root
|
|
|
|
group: root
|