blob: 85d3d3ec4afc9fa0f5f23ff774929be4aba9bf58 (
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
|
---
install_jumphost: ch-jump
install:
vm:
memory: 1G
numcpus: 1
autostart: yes
disks:
primary: /dev/sda
scsi:
sda:
type: zfs
name: root
size: 5g
interfaces:
- bridge: br-svc
name: svc0
- bridge: br-iot
name: iot0
network:
nameservers: "{{ network_zones.svc.dns }}"
domain: "{{ host_domain }}"
systemd_link:
interfaces: "{{ install.interfaces }}"
primary: &_network_primary_
name: svc0
address: "{{ network_zones.svc.prefix | ansible.utils.ipaddr(network_zones.svc.offsets[inventory_hostname]) }}"
gateway: "{{ network_zones.svc.gateway }}"
static_routes:
- destination: "{{ network_zones.lan.prefix }}"
gateway: "{{ network_zones.svc.prefix | ansible.utils.ipaddr(network_zones.svc.offsets['ch-gw-lan']) | ansible.utils.ipaddr('address') }}"
interfaces:
- *_network_primary_
- name: iot0
address: "{{ network_zones.iot.prefix | ansible.utils.ipaddr(network_zones.iot.offsets[inventory_hostname]) }}"
ntp_variant: chrony
ntp_client:
pools:
- name: at.pool.ntp.org
options: iburst
ntp_server:
allow:
- "{{ network_zones.iot.prefix }}"
spreadspace_apt_repo_components:
- prometheus
prometheus_exporters_extra:
- chrony
|