blob: dd1e18d535b7b68707c0e075931dee97d3420c14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
- name: Deploy common services
hosts: all
roles:
- common
- pydis-mtls
- name: Deploy services to Netcup nodes
hosts: netcup
roles:
- pydis-users
- certbot
- alloy
- nftables
- prometheus-node-exporter
- wireguard
- fail2ban
- podman
- unattended-upgrades
- name: Deploy mailservers
hosts: mail
roles:
- opendkim
- opendmarc
- sasl
- dovecot
- spamassassin
- postfix
- prometheus-postfix-exporter
- name: Deploy our monitoring stack
hosts: monitoring
roles:
- rrdstats
- prometheus
- prometheus-blackbox-exporter
- name: Deploy nginx to hosts
hosts: nginx
roles:
- nginx
- nginx-geoip
- nginx-cloudflare-mtls
- name: Deploy Git mirrors
hosts: nginx
roles:
- git-mirrors
- name: Deploy our PostgreSQL database hosts
hosts: databases
roles:
- postgres
- prometheus-postgres-exporter
- name: Deploy our LDAP server environment to the LDAP host
hosts: ldap
roles:
- ldap
- name: Deploy Jitsi
hosts: jitsi
roles:
- jitsi
|