mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-10 16:01:23 +00:00
c6323199f4
In this push, we are making a decent amount of updates to the gitlab playbooks as well as updating the README. See below for the changes: * README updated for further clarity * GitLab role with further reconfiguration for group lookups * GitLab role with further reconfiguration to disable built-in nginx * nginx configuration added and provided to work with omnibus * GitLab variables updated
41 lines
913 B
YAML
41 lines
913 B
YAML
---
|
|
# Creates a Gitlab Instance
|
|
- name: Install and Provision Gitlab
|
|
hosts: gitlabservers
|
|
become: true
|
|
vars_file:
|
|
- vars/gitlab.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"
|
|
msg: "/etc/no-ansible exists - skipping un on this node"
|
|
|
|
- name: Install SELinux packages
|
|
package:
|
|
name: python3-policycoreutils.noarch
|
|
state: present
|
|
|
|
roles:
|
|
- 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
|