about summary refs log tree commit diff
path: root/groups.py
blob: d7d55f0019f76e478b8bbc24ef2be7d7353a4e40 (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
groups = {
    "all": {
        "member_patterns": [r".*"],
    },
    "servers": {
        "members": {
            "inazuma",
            "shimakaze",
        },
        "bundles": {
            "alpine-base",
            "apk",
            "containers",
            #"firewall",
            "motd",
            "node-exporter",
            "restic-backup",
            "s6",
            "syncthing",
            "tailscale",
            "tgnotify",
            "traefik",
            "www",
        },
    },
}