mono-infrastructure/ansible/playbooks/role-gitlab-ee.yml

51 lines
1.2 KiB
YAML
Raw Normal View History

---
# 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
pre_tasks:
- name: Check if ansible cannot be run here
stat:
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
success_msg: "We are able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping un on this node"
- name: Install SELinux packages
package:
name: python3-policycoreutils.noarch
state: present
roles:
2020-12-24 00:02:40 +00:00
- role: geerlingguy.certbot
state: present
when: not gitlab_create_self_signed_cert
- role: geerlingguy.gitlab
state: present
post_tasks:
- name: Reconfigure GitLab
import_tasks: tasks/gitlab-reconfigure.yml
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root