nodes/doc.lon1.grafana: introduce node
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
626355178a
commit
f334b93756
2 changed files with 46 additions and 2 deletions
|
@ -9,8 +9,12 @@ $ORIGIN kunbox.net.
|
||||||
IN MX 10 mx0
|
IN MX 10 mx0
|
||||||
IN TXT v=spf1 a mx ~all
|
IN TXT v=spf1 a mx ~all
|
||||||
|
|
||||||
; NODE digitalocean.lon1.icinga2
|
; NODE doc.lon1.grafana
|
||||||
icinga2.lon1.doc IN A 165.232.42.173
|
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
|
IN AAAA 2a03:b0c0:1:e0::665:8001
|
||||||
|
|
||||||
; NODE gce.bind01
|
; NODE gce.bind01
|
||||||
|
|
40
nodes/doc/lon1/grafana.py
Normal file
40
nodes/doc/lon1/grafana.py
Normal 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),
|
||||||
|
}
|
Loading…
Reference in a new issue