28 lines
798 B
YAML
Executable file
28 lines
798 B
YAML
Executable file
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Deploy Docker hosts
|
|
- hosts: docker-ovh.adm.auro.re,gitea.adm.auro.re,drone.adm.auro.re,stream.adm.auro.re,wikijs.adm.auro.re
|
|
roles:
|
|
- docker
|
|
|
|
# Deploy Passbolt
|
|
- hosts: passbolt.adm.auro.re
|
|
roles:
|
|
- passbolt
|
|
|
|
- hosts: reverseproxy
|
|
vars:
|
|
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
|
|
nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}'
|
|
reverseproxy: '{{ glob_reverseproxy | default({}) | combine(loc_reverseproxy | default({})) }}'
|
|
roles:
|
|
- certbot
|
|
- nginx
|
|
|
|
- hosts: nginx,!reverseproxy
|
|
vars:
|
|
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
|
|
nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}'
|
|
roles:
|
|
- certbot
|
|
- nginx
|