vm-ansible/nightly.yaml

37 lines
592 B
YAML
Raw Normal View History

2022-05-28 19:58:38 +02:00
---
- name: "Deploy basic webhost with Docker"
hosts: nightlydocker
roles:
- common
- webserver
- internalsmtp
2022-12-30 16:41:22 +01:00
- name: "Deploy Jitsi Meet server"
hosts: jitsi
roles:
- common
- webserver
- internalsmtp
- customfirewall
2022-05-28 19:58:38 +02:00
- name: "Setup neko"
hosts: neko
roles:
- neko
- customfirewall
- internalsmtp
- name: "Deploy smtpgateway to smtp.intra.tormakris.dev"
hosts: smtp
roles:
- common
- smtpgateway
- name: "Deploy backup server"
hosts: backup
roles:
- common
- internalsmtp
- backupscript
- backuphost
...