nodes/home.downloadhelper: add node, add storage on home.nas

This commit is contained in:
Franzi 2021-01-07 22:15:14 +01:00
parent fb42f9e667
commit c49d9ffc56
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,37 @@
nodes['home.downloadhelper'] = {
'hostname': '172.19.138.27',
'bundles': {
'iptables',
'nfs-client',
},
'groups': {
'debian-buster',
},
'metadata': {
'interfaces': {
'enp1s0.8': {
'dhcp': True,
},
'enp1s0.42': {
'ips': {
'172.19.138.27/24',
},
},
},
'backups': {
'exclude_from_backups': True,
},
'nfs-client': {
'mounts': {
'storage': {
'mountpoint': '/mnt/nas',
'serverpath': '172.19.138.20:/storage/download',
'mount_options': {
'retry=0',
'rw',
},
},
},
},
},
}