add gitlab role

This commit is contained in:
aaron
2021-08-24 12:16:11 +02:00
commit 80cf4f9a51
11 changed files with 419 additions and 0 deletions

19
tasks/main.yml Normal file
View File

@@ -0,0 +1,19 @@
---
# vim: ts=2 sw=2 et ft=yaml.ansible
- name: load gitlab package dependency list based on distribution type
include_vars: '{{ item }}'
loop:
- 'gitlab_pkg_dependencies.yml'
tags:
- 'gitlab_vars'
- name: install gitlab and dependencies
import_tasks: install.yml
tags:
- 'gitlab_install'
- name: configure gitlab
import_tasks: configure.yml
tags:
- 'gitlab_configure'