bundlewrap/bundles/jenkins-ci/metadata.py

35 lines
743 B
Python
Raw Normal View History

2020-08-18 13:27:55 +00:00
defaults = {
'apt': {
'repos': {
'jenkins': {
'items': {
'deb https://pkg.jenkins.io/{os}-stable binary/',
},
2020-05-09 11:08:34 +00:00
},
2020-08-18 13:27:55 +00:00
},
'packages': {
'openjdk-11-jre': {},
'jenkins': {
'needs': {
'pkg_apt:openjdk-11-jre',
2020-05-09 11:08:34 +00:00
},
},
},
2020-08-18 13:27:55 +00:00
},
2020-11-13 11:37:26 +00:00
'backups': {
'paths': {
'/var/lib/jenkins',
},
},
2021-07-11 13:29:42 +00:00
'zfs': {
'datasets': {
'tank/jenkins': {
'mountpoint': '/var/lib/jenkins',
'needed_by': {
'pkg_apt:jenkins',
},
},
},
},
2020-08-18 13:27:55 +00:00
}