Files
oam/examples/ansible/role.gitlab-omnibus-on-ec2/tasks/main.yml
2024-05-08 18:48:11 +02:00

34 lines
777 B
YAML

---
- name: Pre-flight checks
tags:
- check
- checks
- pre-flight
- preflight
ansible.builtin.import_tasks:
file: pre-flight.yml
- name: Install Gitlab
tags:
- "{{ install_method }}"
- gitlab
- install
ansible.builtin.import_tasks:
file: "{{ role_path }}/tasks/install/{{ install_method }}.yml"
- name: Configure Gitlab
tags:
- "{{ install_method }}"
- configure
- gitlab
ansible.builtin.import_tasks:
file: "{{ role_path }}/tasks/configure/{{ install_method }}.yml"
- name: Validate certificate for '{{ external_url_hostname }}'
tags:
- "{{ install_method }}"
- certificate
- certify
- gitlab
ansible.builtin.import_tasks:
file: "{{ role_path }}/tasks/certify/{{ install_method }}.yml"