vm-ansible/infra.yaml
Kristóf Torma 21a7c54b96
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
remove jitsi
2023-01-14 15:30:22 +01:00

69 lines
1.1 KiB
YAML

---
- name: "Deploy basic webhost with Docker"
hosts: dockerwebhosts
roles:
- netplan
- common
- docker
- webserver
- internalsmtp
- name: "Deploy database server base"
hosts: postgres
roles:
- netplan
- common
- backupscript
- customfirewall
- name: "Deploy basic Docker host to drone-runner"
hosts: drone-runner
roles:
- netplan
- common
- docker
- internalsmtp
- name: "Deploy gitea in Docker"
hosts: git
roles:
- netplan
- common
- docker
- webserver
- internalsmtp
- backupscript
- customfirewall
- name: "Setup neko"
hosts: neko
roles:
- common
- docker
- neko
- customfirewall
- internalsmtp
- name: "Deploy smtpgateway to smtp.intra.tormakris.dev"
hosts: smtp
roles:
- netplan
- common
- smtpgateway
- name: "Deploy managed web gateway"
hosts: webgateway
roles:
- common
- webgateway
- internalsmtp
- name: "Deploy backup server"
hosts: backup
roles:
- netplan
- common
- internalsmtp
- backupscript
- backuphost
...