Add object-map to default RBD volume features

This allows for much quicker image deletes especially for empty images.
This commit is contained in:
Joshua Boniface 2021-02-17 13:57:28 -05:00
parent 0ccfc41398
commit 00e9cca6f0
1 changed files with 1 additions and 1 deletions

View File

@ -486,7 +486,7 @@ def add_volume(zk_conn, pool, name, size):
size = '{}B'.format(size)
# 2. Create the volume
retcode, stdout, stderr = common.run_os_command('rbd create --size {} --image-feature layering,exclusive-lock {}/{}'.format(size, pool, name))
retcode, stdout, stderr = common.run_os_command('rbd create --size {} --image-feature layering,exclusive-lock,object-map {}/{}'.format(size, pool, name))
if retcode:
return False, 'ERROR: Failed to create RBD volume "{}": {}'.format(name, stderr)