Dear Openstack community,
I would like to reduce the size of an image, I wrote this command:
# openstack image set --property size=700000 centos7.6-kudu-image
Unable to set 'size' to '700000'. Reason: '700000' is not of type u'null', u'integer'
Failed validating u'type' in schema[u'properties'][u'size']:
{u'description': u'Size of image file in bytes',
u'readOnly': True,
u'type': [u'null', u'integer']}
On instance[u'size']:
'700000'
I guess the real issue is
u'readOnly': True
How can I reduce the image size?
Thank you very much
Manuel