2022-04-17 00:26:04 +02:00
|
|
|
---
|
|
|
|
- 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
|
|
|
|
- customfirewall
|
|
|
|
- internalsmtp
|
|
|
|
|
2022-05-04 13:59:01 +02:00
|
|
|
- name: "Deploy smtpgateway to smtp.intra.tormakris.dev"
|
2022-04-17 00:26:04 +02:00
|
|
|
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
|
2023-02-19 13:42:53 +01:00
|
|
|
|
|
|
|
- name: "Deploy OpenVPN server"
|
|
|
|
hosts: openvpn
|
|
|
|
roles:
|
|
|
|
- netplan
|
|
|
|
- common
|
|
|
|
- openvpn
|
|
|
|
- customfirewall
|
|
|
|
- internalsmtp
|
2023-05-08 14:19:26 +02:00
|
|
|
|
|
|
|
- name: "Deploy Game server"
|
|
|
|
hosts: gameservers
|
|
|
|
roles:
|
|
|
|
- netplan
|
|
|
|
- common
|
|
|
|
- internalsmtp
|
2022-04-17 00:26:04 +02:00
|
|
|
...
|