mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-11 00:11:25 +00:00
31 lines
700 B
YAML
31 lines
700 B
YAML
|
---
|
||
|
# Creates a Gitlab Instance
|
||
|
- name: Install and Provision Gitlab
|
||
|
hosts: gitlabservers
|
||
|
become: true
|
||
|
|
||
|
pre_tasks:
|
||
|
- name: Verify if we can run ansible
|
||
|
assert:
|
||
|
that:
|
||
|
- "not no_ansible.stat.exists"
|
||
|
msg: "/etc/no-ansible exists - skipping un on this node"
|
||
|
- name: Install SELinux packages
|
||
|
package:
|
||
|
name: python3-policycoreutils.noarch
|
||
|
state: present
|
||
|
|
||
|
role:
|
||
|
- role: geerlingguy.gitlab
|
||
|
vars_files:
|
||
|
- vars/gitlab.yml
|
||
|
|
||
|
post_tasks:
|
||
|
- name: Touching run file that ansible has ran here
|
||
|
file:
|
||
|
path: /var/log/ansible.run
|
||
|
state: touch
|
||
|
mode: '0644'
|
||
|
owner: root
|
||
|
group: root
|