update to bw 4.11.2
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
649473e4b5
commit
4167d3cb22
12 changed files with 85 additions and 367 deletions
|
@ -24,7 +24,7 @@ def zfs_disks_to_metadata(metadata):
|
||||||
disks = set()
|
disks = set()
|
||||||
|
|
||||||
for config in metadata.get('zfs/pools', {}).values():
|
for config in metadata.get('zfs/pools', {}).values():
|
||||||
for option in config:
|
for option in config['when_creating']['config']:
|
||||||
if option.get('type', '') in {'log', 'cache'}:
|
if option.get('type', '') in {'log', 'cache'}:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
|
@ -79,12 +79,10 @@ svc_systemd = {
|
||||||
zfs_datasets = node.metadata.get('zfs/datasets', {})
|
zfs_datasets = node.metadata.get('zfs/datasets', {})
|
||||||
|
|
||||||
for name, attrs in node.metadata.get('zfs/pools', {}).items():
|
for name, attrs in node.metadata.get('zfs/pools', {}).items():
|
||||||
zfs_pools[name] = {
|
zfs_pools[name] = attrs
|
||||||
'config': attrs,
|
|
||||||
}
|
|
||||||
|
|
||||||
if node.os_version[0] > 10:
|
if node.os_version[0] > 10:
|
||||||
zfs_pools[name]['autotrim'] = True
|
zfs_pools[name]['autotrim'] = attrs.get('autotrim', True)
|
||||||
|
|
||||||
directories = {
|
directories = {
|
||||||
"/etc/zfs-snapshot-backup-pre.d": {
|
"/etc/zfs-snapshot-backup-pre.d": {
|
||||||
|
|
|
@ -1,142 +0,0 @@
|
||||||
from pipes import quote
|
|
||||||
|
|
||||||
from bundlewrap.exceptions import BundleError
|
|
||||||
from bundlewrap.items import Item
|
|
||||||
from bundlewrap.utils.text import mark_for_translation as _
|
|
||||||
|
|
||||||
|
|
||||||
def create(node, path, options):
|
|
||||||
option_list = []
|
|
||||||
for option, value in sorted(options.items()):
|
|
||||||
# We must exclude the 'mounted' property here because it's a
|
|
||||||
# read-only "informational" property.
|
|
||||||
if option != 'mounted' and value is not None:
|
|
||||||
option_list.append("-o {}={}".format(quote(option), quote(value)))
|
|
||||||
option_args = " ".join(option_list)
|
|
||||||
|
|
||||||
node.run(
|
|
||||||
"zfs create {} {}".format(
|
|
||||||
option_args,
|
|
||||||
quote(path),
|
|
||||||
),
|
|
||||||
may_fail=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
if options['mounted'] == 'no':
|
|
||||||
set_option(node, path, 'mounted', 'no')
|
|
||||||
|
|
||||||
|
|
||||||
def does_exist(node, path):
|
|
||||||
status_result = node.run(
|
|
||||||
"zfs list {}".format(quote(path)),
|
|
||||||
may_fail=True,
|
|
||||||
)
|
|
||||||
return status_result.return_code == 0
|
|
||||||
|
|
||||||
|
|
||||||
def get_option(node, path, option):
|
|
||||||
cmd = "zfs get -Hp -o value {} {}".format(quote(option), quote(path))
|
|
||||||
# We always expect this to succeed since we don't call this function
|
|
||||||
# if we have already established that the dataset does not exist.
|
|
||||||
status_result = node.run(cmd)
|
|
||||||
return status_result.stdout.decode('utf-8').strip()
|
|
||||||
|
|
||||||
def set_option(node, path, option, value):
|
|
||||||
if option == 'mounted':
|
|
||||||
# 'mounted' is a read-only property that can not be altered by
|
|
||||||
# 'set'. We need to call 'zfs mount tank/foo'.
|
|
||||||
node.run(
|
|
||||||
"zfs {} {}".format(
|
|
||||||
"mount" if value == 'yes' else "unmount",
|
|
||||||
quote(path),
|
|
||||||
),
|
|
||||||
may_fail=True,
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
node.run(
|
|
||||||
"zfs set {}={} {}".format(
|
|
||||||
quote(option),
|
|
||||||
quote(value),
|
|
||||||
quote(path),
|
|
||||||
),
|
|
||||||
may_fail=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class ZFSDataset(Item):
|
|
||||||
"""
|
|
||||||
Creates ZFS datasets and manages their options.
|
|
||||||
"""
|
|
||||||
BUNDLE_ATTRIBUTE_NAME = "zfs_datasets"
|
|
||||||
ITEM_ATTRIBUTES = {
|
|
||||||
'atime': None,
|
|
||||||
'acltype': None,
|
|
||||||
'compression': None,
|
|
||||||
'mountpoint': None,
|
|
||||||
'quota': None,
|
|
||||||
'recordsize': None,
|
|
||||||
'dedup': None,
|
|
||||||
}
|
|
||||||
ITEM_TYPE_NAME = "zfs_dataset"
|
|
||||||
|
|
||||||
def __repr__(self):
|
|
||||||
return f"<ZFSDataset name:{self.name} {' '.join(f'{k}:{v}' for k,v in self.attributes.items())}>"
|
|
||||||
|
|
||||||
def cdict(self):
|
|
||||||
cdict = {}
|
|
||||||
for option, value in self.attributes.items():
|
|
||||||
if option == 'mountpoint' and value is None:
|
|
||||||
value = "none"
|
|
||||||
if value is not None:
|
|
||||||
cdict[option] = value
|
|
||||||
cdict['mounted'] = 'no' if cdict.get('mountpoint') in (None, "none") else 'yes'
|
|
||||||
return cdict
|
|
||||||
|
|
||||||
def fix(self, status):
|
|
||||||
if status.must_be_created:
|
|
||||||
create(self.node, self.name, status.cdict)
|
|
||||||
else:
|
|
||||||
for option in status.keys_to_fix:
|
|
||||||
set_option(self.node, self.name, option, status.cdict[option])
|
|
||||||
|
|
||||||
def get_auto_deps(self, items):
|
|
||||||
pool = self.name.split("/")[0]
|
|
||||||
pool_item = "zfs_pool:{}".format(pool)
|
|
||||||
pool_item_found = False
|
|
||||||
|
|
||||||
for item in items:
|
|
||||||
if item.ITEM_TYPE_NAME == "zfs_pool" and item.name == pool:
|
|
||||||
# Add dependency to the pool this dataset resides on.
|
|
||||||
pool_item_found = True
|
|
||||||
yield pool_item
|
|
||||||
elif (
|
|
||||||
item.ITEM_TYPE_NAME == "zfs_dataset" and
|
|
||||||
self.name != item.name and
|
|
||||||
self.name.startswith(item.name + "/")
|
|
||||||
):
|
|
||||||
# Find all other datasets that are parents of this
|
|
||||||
# dataset.
|
|
||||||
# XXX Could be optimized by finding the "largest"
|
|
||||||
# parent only.
|
|
||||||
yield item.id
|
|
||||||
|
|
||||||
|
|
||||||
if not pool_item_found:
|
|
||||||
raise BundleError(_(
|
|
||||||
"ZFS dataset {dataset} resides on pool {pool} but item "
|
|
||||||
"{dep} does not exist"
|
|
||||||
).format(
|
|
||||||
dataset=self.name,
|
|
||||||
pool=pool,
|
|
||||||
dep=pool_item,
|
|
||||||
))
|
|
||||||
|
|
||||||
def sdict(self):
|
|
||||||
if not does_exist(self.node, self.name):
|
|
||||||
return None
|
|
||||||
|
|
||||||
sdict = {}
|
|
||||||
for option, value in self.attributes.items():
|
|
||||||
sdict[option] = get_option(self.node, self.name, option)
|
|
||||||
sdict['mounted'] = get_option(self.node, self.name, 'mounted')
|
|
||||||
return sdict
|
|
|
@ -1,169 +0,0 @@
|
||||||
from collections import Counter
|
|
||||||
from pipes import quote
|
|
||||||
|
|
||||||
from bundlewrap.exceptions import BundleError
|
|
||||||
from bundlewrap.items import Item
|
|
||||||
from bundlewrap.utils.text import mark_for_translation as _
|
|
||||||
|
|
||||||
|
|
||||||
class ZFSPool(Item):
|
|
||||||
"""
|
|
||||||
Creates ZFS pools.
|
|
||||||
"""
|
|
||||||
BUNDLE_ATTRIBUTE_NAME = "zfs_pools"
|
|
||||||
ITEM_ATTRIBUTES = {
|
|
||||||
'config': None,
|
|
||||||
'autotrim': None,
|
|
||||||
'autoreplace': None,
|
|
||||||
'autoexpand': None,
|
|
||||||
'ashift': None,
|
|
||||||
}
|
|
||||||
ITEM_TYPE_NAME = "zfs_pool"
|
|
||||||
|
|
||||||
def __repr__(self):
|
|
||||||
return "<ZFSPool name:{} autoexpand:{} autoreplace:{} autotrim:{} ashift:{} config:{}>".format(
|
|
||||||
self.name,
|
|
||||||
self.attributes['autoexpand'],
|
|
||||||
self.attributes['autoreplace'],
|
|
||||||
self.attributes['autotrim'],
|
|
||||||
self.attributes['ashift'],
|
|
||||||
self.attributes['config'],
|
|
||||||
)
|
|
||||||
|
|
||||||
def cdict(self):
|
|
||||||
ret = {}
|
|
||||||
# ashift can only be set at pool creation, that's why it's missing
|
|
||||||
# here.
|
|
||||||
for i in {'autoexpand', 'autoreplace', 'autotrim'}:
|
|
||||||
if self.attributes.get(i):
|
|
||||||
ret[i] = self.attributes[i]
|
|
||||||
return ret
|
|
||||||
|
|
||||||
@property
|
|
||||||
def devices_used(self):
|
|
||||||
devices = set()
|
|
||||||
for option in self.attributes['config']:
|
|
||||||
for device in option['devices']:
|
|
||||||
devices.add(device)
|
|
||||||
return sorted(devices)
|
|
||||||
|
|
||||||
def fix(self, status):
|
|
||||||
if status.must_be_created:
|
|
||||||
cmdline = []
|
|
||||||
for option in self.attributes['config']:
|
|
||||||
if option.get('type'):
|
|
||||||
cmdline.append(option['type'])
|
|
||||||
if option['type'] == 'log' and len(option['devices']) > 1:
|
|
||||||
cmdline.append('mirror')
|
|
||||||
|
|
||||||
for device in sorted(option['devices']):
|
|
||||||
res = node.run("lsblk -rndo fstype {}".format(quote(device)))
|
|
||||||
detected = res.stdout.decode('UTF-8').strip()
|
|
||||||
if detected != "":
|
|
||||||
raise BundleError(_("Node {}, ZFSPool {}: Device {} to be used for ZFS, but it is not empty! Has '{}'.").format(self.node.name, self.name, device, detected))
|
|
||||||
|
|
||||||
cmdline.append(quote(device))
|
|
||||||
|
|
||||||
options = set()
|
|
||||||
if self.attributes['ashift']:
|
|
||||||
options.add('-o ashift={}'.format(self.attributes['ashift']))
|
|
||||||
|
|
||||||
self.run('zpool create {} {} {}'.format(
|
|
||||||
' '.join(sorted(options)),
|
|
||||||
quote(self.name),
|
|
||||||
' '.join(cmdline),
|
|
||||||
))
|
|
||||||
|
|
||||||
for attr in status.keys_to_fix:
|
|
||||||
state_str = 'on' if status.cdict[attr] else 'off'
|
|
||||||
self.run('zpool set {}={} {}'.format(attr, state_str, quote(self.name)))
|
|
||||||
|
|
||||||
def sdict(self):
|
|
||||||
status_result = self.run('zpool list {}'.format(quote(self.name)), may_fail=True)
|
|
||||||
if status_result.return_code != 0:
|
|
||||||
return {}
|
|
||||||
|
|
||||||
pool_status = {}
|
|
||||||
for line in self.run('zpool get all -H -o all {}'.format(quote(self.name)), may_fail=True).stdout.decode().splitlines():
|
|
||||||
try:
|
|
||||||
pname, prop, value, source = line.split()
|
|
||||||
pool_status[prop.strip()] = value.strip()
|
|
||||||
except (IndexError, ValueError):
|
|
||||||
continue
|
|
||||||
|
|
||||||
return {
|
|
||||||
'autoexpand': (pool_status.get('autoexpand') == 'on'),
|
|
||||||
'autoreplace': (pool_status.get('autoreplace') == 'on'),
|
|
||||||
'autotrim': (pool_status.get('autotrim') == 'on'),
|
|
||||||
}
|
|
||||||
|
|
||||||
def test(self):
|
|
||||||
duplicate_devices = [
|
|
||||||
item for item, count in Counter(self.devices_used).items() if count > 1
|
|
||||||
]
|
|
||||||
if duplicate_devices:
|
|
||||||
raise BundleError(_(
|
|
||||||
"{item} on node {node} uses {devices} more than once as an underlying device"
|
|
||||||
).format(
|
|
||||||
item=self.id,
|
|
||||||
node=self.node.name,
|
|
||||||
devices=_(" and ").join(duplicate_devices),
|
|
||||||
))
|
|
||||||
|
|
||||||
# Have a look at all other ZFS pools on this node and check if
|
|
||||||
# multiple pools try to use the same device.
|
|
||||||
for item in self.node.items:
|
|
||||||
if (
|
|
||||||
item.ITEM_TYPE_NAME == "zfs_pool" and
|
|
||||||
item.name != self.name and
|
|
||||||
set(item.devices_used).intersection(set(self.devices_used))
|
|
||||||
):
|
|
||||||
raise BundleError(_(
|
|
||||||
"Both the ZFS pools {self} and {other} on node {node} "
|
|
||||||
"try to use {devices} as the underlying storage device"
|
|
||||||
).format(
|
|
||||||
self=self.name,
|
|
||||||
other=item.name,
|
|
||||||
node=self.node.name,
|
|
||||||
devices=_(" and ").join(set(item.devices_used).intersection(set(self.devices_used))),
|
|
||||||
))
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def validate_attributes(cls, bundle, item_id, attributes):
|
|
||||||
if not isinstance(attributes['config'], list):
|
|
||||||
raise BundleError(_(
|
|
||||||
"{item} on node {node}: option 'config' must be a list"
|
|
||||||
).format(
|
|
||||||
item=item_id,
|
|
||||||
node=bundle.node.name,
|
|
||||||
))
|
|
||||||
|
|
||||||
for config in attributes['config']:
|
|
||||||
if config.get('type', None) not in {None, 'mirror', 'raidz', 'raidz2', 'raidz3', 'cache', 'log'}:
|
|
||||||
raise BundleError(_(
|
|
||||||
"{item} on node {node} has invalid type '{type}', "
|
|
||||||
"must be one of (unset), 'mirror', 'raidz', 'raidz2', "
|
|
||||||
"'raidz3', 'cache', 'log'"
|
|
||||||
).format(
|
|
||||||
item=item_id,
|
|
||||||
node=bundle.node.name,
|
|
||||||
type=config['type'],
|
|
||||||
))
|
|
||||||
|
|
||||||
if not config.get('devices', set()):
|
|
||||||
raise BundleError(_(
|
|
||||||
"{item} on node {node} uses no devices!"
|
|
||||||
).format(
|
|
||||||
item=item_id,
|
|
||||||
node=bundle.node.name,
|
|
||||||
))
|
|
||||||
|
|
||||||
if config.get('type') == 'log':
|
|
||||||
if not 0 < len(config['devices']) < 3:
|
|
||||||
raise BundleError(_(
|
|
||||||
"{item} on node {node} type 'log' must use exactly "
|
|
||||||
"one or two devices"
|
|
||||||
).format(
|
|
||||||
item=item_id,
|
|
||||||
node=bundle.node.name,
|
|
||||||
))
|
|
|
@ -204,8 +204,9 @@ nodes['home.nas'] = {
|
||||||
'zfs_arc_max_gb': 8,
|
'zfs_arc_max_gb': 8,
|
||||||
},
|
},
|
||||||
'pools': {
|
'pools': {
|
||||||
# Configured manually. Don't touch!
|
'storage': {
|
||||||
'storage': [
|
'when_creating': {
|
||||||
|
'config': [
|
||||||
{
|
{
|
||||||
'type': 'raidz2',
|
'type': 'raidz2',
|
||||||
'devices': {
|
'devices': {
|
||||||
|
@ -231,7 +232,10 @@ nodes['home.nas'] = {
|
||||||
'/dev/disk/by-id/ata-TS64GSSD370_B807810527-part2',
|
'/dev/disk/by-id/ata-TS64GSSD370_B807810527-part2',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
]
|
],
|
||||||
|
'ashift': 12,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
'datasets': {
|
'datasets': {
|
||||||
'storage/backups': {},
|
'storage/backups': {},
|
||||||
|
|
|
@ -57,10 +57,14 @@ nodes['htz-cloud.influxdb'] = {
|
||||||
},
|
},
|
||||||
'zfs': {
|
'zfs': {
|
||||||
'pools': {
|
'pools': {
|
||||||
'tank': [{
|
'tank': {
|
||||||
|
'when_creating': {
|
||||||
|
'config': [{
|
||||||
'devices': {'/dev/sdb'},
|
'devices': {'/dev/sdb'},
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,10 +80,14 @@ nodes['htz-cloud.luther'] = {
|
||||||
},
|
},
|
||||||
'zfs': {
|
'zfs': {
|
||||||
'pools': {
|
'pools': {
|
||||||
'tank': [{
|
'tank': {
|
||||||
|
'when_creating': {
|
||||||
|
'config': [{
|
||||||
'devices': {'/dev/sdb'},
|
'devices': {'/dev/sdb'},
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
'datasets': {
|
'datasets': {
|
||||||
'tank/luther-website': {
|
'tank/luther-website': {
|
||||||
'mountpoint': '/var/www/luther-ps',
|
'mountpoint': '/var/www/luther-ps',
|
||||||
|
|
|
@ -66,10 +66,14 @@ nodes['htz-cloud.pleroma'] = {
|
||||||
},
|
},
|
||||||
'zfs': {
|
'zfs': {
|
||||||
'pools': {
|
'pools': {
|
||||||
'tank': [{
|
'tank': {
|
||||||
|
'when_creating': {
|
||||||
|
'config': [{
|
||||||
'devices': {'/dev/sdb'},
|
'devices': {'/dev/sdb'},
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,10 +69,14 @@ nodes['htz-cloud.sewfile'] = {
|
||||||
},
|
},
|
||||||
'zfs': {
|
'zfs': {
|
||||||
'pools': {
|
'pools': {
|
||||||
'tank': [{
|
'tank': {
|
||||||
|
'when_creating': {
|
||||||
|
'config': [{
|
||||||
'devices': {'/dev/sdb'},
|
'devices': {'/dev/sdb'},
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
'datasets': {
|
'datasets': {
|
||||||
'tank/mysql': {
|
'tank/mysql': {
|
||||||
'mountpoint': '/var/lib/mysql',
|
'mountpoint': '/var/lib/mysql',
|
||||||
|
|
|
@ -133,11 +133,17 @@ nodes['ovh.icinga2'] = {
|
||||||
},
|
},
|
||||||
'zfs': {
|
'zfs': {
|
||||||
'pools': {
|
'pools': {
|
||||||
'tank': [{
|
'tank': {
|
||||||
'devices': {'/dev/sdb'},
|
'when_creating': {
|
||||||
|
'config': [{
|
||||||
|
'devices': {
|
||||||
|
'/dev/sdb'
|
||||||
|
},
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
'vm': {
|
'vm': {
|
||||||
'cpu': 1,
|
'cpu': 1,
|
||||||
'ram': 2,
|
'ram': 2,
|
||||||
|
|
|
@ -481,7 +481,9 @@ nodes['rx300'] = {
|
||||||
'zfs_arc_max_gb': 16,
|
'zfs_arc_max_gb': 16,
|
||||||
},
|
},
|
||||||
'pools': {
|
'pools': {
|
||||||
'tank': [{
|
'tank': {
|
||||||
|
'when_creating': {
|
||||||
|
'config': [{
|
||||||
'type': 'raidz',
|
'type': 'raidz',
|
||||||
'devices': {
|
'devices': {
|
||||||
'/dev/sda',
|
'/dev/sda',
|
||||||
|
@ -490,6 +492,9 @@ nodes['rx300'] = {
|
||||||
'/dev/sdd',
|
'/dev/sdd',
|
||||||
},
|
},
|
||||||
}],
|
}],
|
||||||
|
'ashift': 12,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
'datasets': {
|
'datasets': {
|
||||||
'tank/libvirt': {
|
'tank/libvirt': {
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
bundlewrap>=4.9.0
|
bundlewrap~=4.11.2
|
||||||
PyNaCl
|
PyNaCl
|
||||||
bundlewrap-pass
|
bundlewrap-pass
|
||||||
|
|
Loading…
Reference in a new issue