1af8cd5745
Since Juno, some new hardware properties have been added to Nova that should be included in the Kilo versions of the metadef JSON files. This bug, would add in new properties or objects found in Nova and update properties or objects if the definitions have changed. Closes-Bug: 1436877 Change-Id: I582827e666bece539674e4a191963ecf8ebf599f
33 lines
1.5 KiB
JSON
33 lines
1.5 KiB
JSON
{
|
|
"namespace": "OS::Compute::Libvirt",
|
|
"display_name": "libvirt Driver Options",
|
|
"description": "The libvirt compute driver options. \n\nThese are properties that affect the libvirt compute driver and may be specified on flavors and images. For a list of all hypervisors, see here: https://wiki.openstack.org/wiki/HypervisorSupportMatrix.",
|
|
"visibility": "public",
|
|
"protected": true,
|
|
"resource_type_associations": [
|
|
{
|
|
"name": "OS::Glance::Image",
|
|
"prefix": "hw_"
|
|
},
|
|
{
|
|
"name": "OS::Nova::Flavor",
|
|
"prefix": "hw:"
|
|
}
|
|
],
|
|
"properties": {
|
|
"serial_port_count": {
|
|
"title": "Serial Port Count",
|
|
"description": "Specifies the count of serial ports that should be provided. If hw:serial_port_count is not set in the flavor's extra_specs, then any count is permitted. If hw:serial_port_count is set, then this provides the default serial port count. It is permitted to override the default serial port count, but only with a lower value.",
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"boot_menu": {
|
|
"title": "Boot Menu",
|
|
"description": "If true, enables the BIOS bootmenu. In cases where both the image metadata and Extra Spec are set, the Extra Spec setting is used. This allows for flexibility in setting/overriding the default behavior as needed.",
|
|
"type": "string",
|
|
"enum": ["true", "false"]
|
|
}
|
|
},
|
|
"objects": []
|
|
}
|