Update OS::Glance::CommonImageProperties in metadefs

Add missing properties, as of Train, defined in etc/schema-image.json
for OS::Glance::CommonImageProperties defined in
etc/metadefs/glance-common-image-props.json

Change-Id: I3e6d2ab88cca41bbf66dbced8b576637f13b9f57
Closes-bug: #1856581
This commit is contained in:
khashf 2020-04-07 18:12:40 -07:00
parent 2f2e118a58
commit 7c4eda8f62
1 changed files with 19 additions and 0 deletions

View File

@ -37,6 +37,25 @@
"title": "OS Version",
"description": "Operating system version as specified by the distributor. (for example, '11.10')",
"type": "string"
},
"description": {
"title": "Image description",
"description": "A human-readable string describing this image.",
"type": "string"
},
"cinder_encryption_key_id": {
"title": "Cinder Encryption Key ID",
"description": "Identifier in the OpenStack Key Management Service for the encryption key for the Block Storage Service to use when mounting a volume created from this image",
"type": "string"
},
"cinder_encryption_key_deletion_policy": {
"title": "Cinder Encryption Key Deletion Policy",
"description": "States the condition under which the Image Service will delete the object associated with the 'cinder_encryption_key_id' image property. If this property is missing, the Image Service will take no action",
"type": "string",
"enum": [
"on_image_deletion",
"do_not_delete"
]
}
}
}