adc/ansible/all.yml

60 lines
1.2 KiB
YAML
Raw Normal View History

---
2020-01-12 23:10:20 +00:00
- name: cloud wg config
hosts: vpn
gather_facts: no
2020-01-12 23:10:20 +00:00
tasks:
- debug: msg="Deploying wg to cloud server"
roles:
2020-04-12 21:27:42 +00:00
- { name: wg_vpn, tags: ['wg_vpn'] }
- name: deploy the awful stack
gather_facts: no
2020-04-29 23:23:06 +00:00
hosts: dockerhosts
tasks:
- debug: msg="Deploying awful stack to cloud server"
roles:
2020-04-12 21:27:42 +00:00
- { name: awfulAll, tags: ['awfulAll'] }
- name: Configure home-net base packages
hosts: hatchery.home.jowj.net
2020-05-20 04:18:53 +00:00
gather_facts: no
roles:
- { name: home-net, tags: ['base'] }
2020-04-12 21:27:42 +00:00
- name: Deploy mediaserver
hosts: mediaserver
gather_facts: no
2020-04-12 21:27:42 +00:00
roles:
- { name: mediaserver, tags: ['mediaserver'] }
2020-04-21 02:57:51 +00:00
- name: Deploy gitea
hosts: dockerhosts
gather_facts: no
roles:
- { name: gitea, tags: ['gitea'] }
2020-04-28 16:26:11 +00:00
- name: Deploy nextcloud
hosts: dockerhosts
gather_facts: no
roles:
- { name: nextcloud, tags: ['nextcloud'] }
2020-05-02 22:55:47 +00:00
- name: deploy the dev stack
gather_facts: no
hosts: dockerhosts
tasks:
- debug: msg="Deploying awful stack to cloud server"
roles:
- { name: test, tags: ['test'] }
- name: deploy syslog server
gather_facts: no
hosts: syslog
tasks:
- debug: msg="Deploy syslog server to larva."
roles:
- { name: syslog, tags: ['syslog'] }