summaryrefslogtreecommitdiff
path: root/inventory/host_vars/ele-media.yml
blob: d471683e6c937512145928cd7bbf5750fd407c51 (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
65
66
67
68
---
install:
  disks:
    primary: /dev/disk/by-id/ata-Samsung_SSD_840_Series_S14GNEACC92243K

network:
  nameservers: "{{ network_zones.lan.dns }}"
  domain: "{{ host_domain }}"
  primary:
    interface: eno1
    ip: "{{ network_zones.lan.prefix | ipaddr(network_zones.lan.offsets[inventory_hostname]) | ipaddr('address') }}"
    mask: "{{ network_zones.lan.prefix | ipaddr('netmask') }}"
    gateway: "{{ network_zones.lan.gateway }}"

network_setup: r3-with-lan # elevate-festival


dyndns:
  server: ch-pan


admin_user_host:
- "{{ equinox_user }}"

ssh_allowusers_host: "{{ admin_user_host | map(attribute='name') | list }}"


nginx_pkg_variant: nginx

mysql_root_password: "{{ vault_mysql_root_password }}"


docker_daemon_config:
  bridge: "none"
  iptables: false

docker_lvm:
  vg: "{{ host_name }}"
  lv: docker
  size: 20G
  fs: ext4

acmetool_directory_server: "{{ acmetool_directory_server_le_live_v2 }}"

nextcloud_hostnames:
  - media.elevate.at
  - elevate-media.spreadspace.org

nextcloud_db:
  db: nextcloud
  user: nextcloud
  password: "{{ vault_nextcloud_db.password }}"

nextcloud_admin:
  username: admin
  password: "{{ vault_nextcloud_admin.password }}"

nextcloud_lvm:
  system:
    vg: "{{ host_name }}"
    lv: nextcloud
    size: 20G
    fs: ext4
  data:
    vg: "{{ host_name }}"
    lv: ncdata
    size: 150G
    fs: ext4