2020-12-14 20:57:09 +00:00
|
|
|
---
|
|
|
|
# Creates a Gitlab Instance
|
|
|
|
- name: Install and Provision Gitlab
|
|
|
|
hosts: gitlabservers
|
|
|
|
become: true
|
2020-12-18 08:17:53 +00:00
|
|
|
vars_files:
|
2020-12-30 09:22:58 +00:00
|
|
|
- vars/common.yml
|
2020-12-18 08:17:53 +00:00
|
|
|
- vars/gitlab.yml
|
|
|
|
|
|
|
|
# This is to try to avoid the handler issue in pre/post tasks
|
|
|
|
handlers:
|
|
|
|
- import_tasks: handlers/main.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"
|
2021-01-02 03:14:24 +00:00
|
|
|
success_msg: "We are able to run on this node"
|
|
|
|
fail_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:
|
2021-07-18 22:17:49 +00:00
|
|
|
- role: rockylinux.ipagetcert
|
|
|
|
state: present
|
|
|
|
when:
|
|
|
|
- "not gitlab_create_self_signed_cert|bool"
|
|
|
|
- "gitlab_ipa_cert|bool"
|
|
|
|
|
2020-12-24 00:02:40 +00:00
|
|
|
- role: geerlingguy.certbot
|
|
|
|
state: present
|
2021-07-18 22:17:49 +00:00
|
|
|
when:
|
|
|
|
- "not gitlab_create_self_signed_cert|bool"
|
|
|
|
- "gitlab_certbot|bool"
|
2020-12-24 00:02:40 +00:00
|
|
|
|
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
|
2021-08-30 05:02:24 +00:00
|
|
|
...
|