You've already forked ansible-awx-gitlab
17 lines
320 B
YAML
17 lines
320 B
YAML
---
|
|
# GitLab only. Run: ansible-playbook playbooks/gitlab.yml --ask-vault-pass
|
|
|
|
- name: Base setup
|
|
hosts: gitlab_servers
|
|
become: true
|
|
roles:
|
|
- role: common
|
|
|
|
- name: Install and configure GitLab
|
|
hosts: gitlab_servers
|
|
become: true
|
|
vars_files:
|
|
- ../vault/secrets.yml
|
|
roles:
|
|
- role: gitlab_install
|