40 lines
1.1 KiB
YAML
Executable file
40 lines
1.1 KiB
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
|
|
vars:
|
|
update_motd:
|
|
docker: Docker est déployé.
|
|
roles:
|
|
- docker
|
|
- update_motd
|
|
|
|
# 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({})) }}'
|
|
update_motd:
|
|
nginx: >-
|
|
Le reverse-proxy NGINX est déployé (/etc/nginx).
|
|
roles:
|
|
- certbot
|
|
- nginx
|
|
- update_motd
|
|
|
|
- hosts: nginx,!reverseproxy
|
|
vars:
|
|
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
|
|
nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}'
|
|
update_motd:
|
|
nginx: >-
|
|
NGINX avec certbot est déployé (/etc/nginx).
|
|
roles:
|
|
- certbot
|
|
- nginx
|
|
- update_motd
|