mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-17 17:24:25 +00:00
34 lines
777 B
YAML
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"
|