diff options
author | Christian Pointner <equinox@spreadspace.org> | 2021-05-30 22:28:46 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2021-06-20 01:44:16 +0200 |
commit | e29ce4fdbe2ce669c62777fffa18ae8557e54a73 (patch) | |
tree | 8eaedd699b8eb49bc51ec260af5e6abd74a1cce1 /inventory | |
parent | cleanup: old preliminary tasks (diff) |
prometheus: initial simple server role
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/group_vars/chaos-at-home/network.yml | 3 | ||||
-rw-r--r-- | inventory/host_vars/ch-mon.yml | 62 | ||||
-rw-r--r-- | inventory/hosts.ini | 2 |
3 files changed, 67 insertions, 0 deletions
diff --git a/inventory/group_vars/chaos-at-home/network.yml b/inventory/group_vars/chaos-at-home/network.yml index db345b75..fa34a7a0 100644 --- a/inventory/group_vars/chaos-at-home/network.yml +++ b/inventory/group_vars/chaos-at-home/network.yml @@ -41,6 +41,7 @@ network_zones: key: "{{ vault_wifi_keys.iot }}" offsets: ch-wled-test: 1 + ch-mon: 230 ch-iot: 254 svc: @@ -63,6 +64,7 @@ network_zones: ch-nic: 53 __svc_http__: 80 __svc_imap__: 143 + ch-mon: 230 ch-router-obsd: 253 ch-router: 254 ############# @@ -83,6 +85,7 @@ network_zones: ch-sw1: 201 ch-ap0: 220 ch-ap1: 221 + ch-mon: 230 ch-gnocchi: 240 ch-router: 241 diff --git a/inventory/host_vars/ch-mon.yml b/inventory/host_vars/ch-mon.yml new file mode 100644 index 00000000..6bfa58d4 --- /dev/null +++ b/inventory/host_vars/ch-mon.yml @@ -0,0 +1,62 @@ +--- +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 diff --git a/inventory/hosts.ini b/inventory/hosts.ini index 871ee575..954e9374 100644 --- a/inventory/hosts.ini +++ b/inventory/hosts.ini @@ -30,6 +30,7 @@ ch-prometheus-legacy host_name=prometheus ch-testvm-prometheus host_name=testvm-prometheus ch-iot host_name=iot ch-vpn host_name=vpn +ch-mon host_name=mon ch-epimetheus host_name=epimetheus ch-mc host_name=mc ch-atlas host_name=atlas @@ -324,6 +325,7 @@ ch-prometheus-legacy ch-testvm-prometheus ch-iot ch-vpn +ch-mon ch-k8s-master [vmhost-ch-prometheus] ch-prometheus |