nodes/doc.lon1.grafana: introduce node
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2020-08-30 11:27:15 +02:00
parent 626355178a
commit f334b93756
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 46 additions and 2 deletions

View file

@ -9,8 +9,12 @@ $ORIGIN kunbox.net.
IN MX 10 mx0
IN TXT v=spf1 a mx ~all
; NODE digitalocean.lon1.icinga2
icinga2.lon1.doc IN A 165.232.42.173
; NODE doc.lon1.grafana
grafana.lon1.doc IN A 165.232.105.69
IN AAAA 2a03:b0c0:1:e0::627:8001
; NODE doc.lon1.icinga2
icinga2.lon1.doc IN A 165.232.42.173
IN AAAA 2a03:b0c0:1:e0::665:8001
; NODE gce.bind01

40
nodes/doc/lon1/grafana.py Normal file
View file

@ -0,0 +1,40 @@
nodes['doc.lon1.grafana'] = {
'bundles': {
'zfs',
},
'groups': {
'webserver',
},
'metadata': {
'apt': {
'repos': {
'backports': {
'install_gpg_key': False, # default debian signing key
'items': [
'deb http://deb.debian.org/debian buster-backports main',
],
},
},
},
'nginx': {
'vhosts': {
},
},
'zfs': {
'pools': {
'tank': {
'device': '/dev/disk/by-id/scsi-0DO_Volume_volume-lon1-02-part1',
},
},
'module_options': {
'zfs_arc_max_mb': 0,
},
},
'vm': {
'cpu': 1,
'ram': 1,
},
},
'os': 'debian',
'os_version': (10, 5),
}