bundlewrap/bundles/influxdb2/metadata.py
Franzi cd6e4b9767
All checks were successful
bundlewrap/pipeline/head This commit looks good
bundles/influxdb2: disable atime for zfs dataset
2021-06-26 08:19:55 +02:00

41 lines
939 B
Python

defaults = {
'apt': {
'packages': {
'influxdb2': {
'needs': {
'zfs_dataset:tank/influxdb2',
},
},
},
'repos': {
'influxdb': {
'items': {
'deb https://repos.influxdata.com/{os} {os_release} stable',
},
},
},
},
'backups': {
'paths': {
'/var/lib/influxdb',
},
},
'icinga2_api': {
'telegraf': {
'services': {
'INFLUXDB PROCESS': {
'command_on_monitored_host': '/usr/lib/nagios/plugins/check_procs -C telegraf -c 1:',
},
},
},
},
'zfs': {
'datasets': {
'tank/influxdb2': {
'mountpoint': '/var/lib/influxdb',
'atime': 'off',
},
},
},
}