blob: 8c353e883c5e3aa6e432d5ba7dfaed158aedb3e6 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
---
install_jumphost: ch-jump
install:
vm:
memory: 8G
numcpus: 8
autostart: yes
disks:
primary: /dev/sda
scsi:
sda:
type: zfs
name: root
size: 10g
sdb:
type: zfs
name: data
size: 50g
interfaces:
- bridge: br-svc
name: svc0
- bridge: br-iot
name: iot0
- bridge: br-mgmt
name: mgmt0
network:
nameservers: "{{ network_zones.svc.dns }}"
domain: "{{ host_domain }}"
systemd_link:
interfaces: "{{ install.interfaces }}"
primary: &_network_primary_
name: svc0
address: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
gateway: "{{ network_zones.svc.gateway }}"
static_routes:
- destination: "{{ network_zones.lan.prefix }}"
gateway: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets['ch-gw-lan']) | ipaddr('address') }}"
interfaces:
- *_network_primary_
- name: iot0
address: "{{ network_zones.iot.prefix | ipaddr(network_zones.iot.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
- name: mgmt0
address: "{{ network_zones.mgmt.prefix | ipaddr(network_zones.mgmt.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
lvm_groups:
mondata:
pvs:
- /dev/sdb
spreadspace_apt_repo_components:
- prometheus
prometheus_server_storage:
type: lvm
vg: mondata
lv: prometheus
size: 30G
fs: ext4
prometheus_server_alertmanager:
url: "127.0.0.1:9093"
path_prefix: "/alertmanager/"
prometheus_server_web_external_url: /prometheus/
prometheus_exporters_extra:
- blackbox
- nut
- ssl
prometheus_exporter_blackbox_modules_extra:
icmp:
prober: icmp
prometheus_job_multitarget_blackbox__probe:
ch-mon:
- instance: "ping-magentagw"
target: 62.99.185.129
module: icmp
- instance: "ping-quad9"
target: 9.9.9.9
module: icmp
- instance: "https-pan.chaos-at-home.org"
target: "https://pan.chaos-at-home.org"
module: http_tls_2xx
- instance: "https-mimas.chaos-at-home.org"
target: "https://mimas.chaos-at-home.org"
module: http_tls_2xx
- instance: "ssh-{{ inventory_hostname }}"
target: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets[inventory_hostname]) | ipaddr('address') }}:{{ ansible_port | default(22) }}"
module: ssh_banner
prometheus_job_multitarget_ssl__probe:
ch-mon:
- instance: "sslcert-prometheus-{{ inventory_hostname }}"
target: "/etc/ssl/prometheus/**/*.pem"
module: file
prometheus_server_jobs_extra: |
- job_name: 'node-helsinki'
static_configs:
- targets:
- 192.168.28.151:9100
labels:
instance: rh-router-apu
metric_relabel_configs:
- source_labels: [ "mountpoint" ]
regex: ".*/\\.snapshot/.*"
action: drop
- source_labels: [ "__name__", "state" ]
regex: "node_systemd_unit_state;(activating|deactivating|inactive)"
action: drop
promethues_alertmanager_smtp:
smarthost: "{{ network_zones.lan.prefix | ipaddr(network_zones.lan.offsets['ch-prometheus-legacy']) | ipaddr('address') }}:25"
from: "noreply@chaos-at-home.org"
require_tls: no
prometheus_alertmanager_web_route_prefix: /alertmanager/
grafana_secret_key: "{{ vault_grafana_secret_key }}"
|