cac2fc67ec
Virtuozzo hypervisor reports itself as 'vz' hypervisor, and it was supported as libvirt virt type since Kilo. Let's expand image metadata so that it will possible to filter out compute nodes, which don't support images requiring hypervisor_type=vz Lite-Spec-Id: I6ba0fcf670aecddde95cfdc6850cdb751dec2058 Change-Id: I51afacf83655107a6c4e4c226623fa360bdafca2
43 lines
2.2 KiB
JSON
43 lines
2.2 KiB
JSON
{
|
|
"namespace": "OS::Compute::Hypervisor",
|
|
"display_name": "Hypervisor Selection",
|
|
"description": "OpenStack Compute supports many hypervisors, although most installations use only one hypervisor. For installations with multiple supported hypervisors, you can schedule different hypervisors using the ImagePropertiesFilter. This filters compute nodes that satisfy any architecture, hypervisor type, or virtual machine mode properties specified on the instance's image properties.",
|
|
"visibility": "public",
|
|
"protected": true,
|
|
"resource_type_associations": [
|
|
{
|
|
"name": "OS::Glance::Image"
|
|
}
|
|
],
|
|
"properties": {
|
|
"hypervisor_type": {
|
|
"title": "Hypervisor Type",
|
|
"description": "Hypervisor type required by the image. Used with the ImagePropertiesFilter. \n\n KVM - Kernel-based Virtual Machine. LXC - Linux Containers (through libvirt). QEMU - Quick EMUlator. UML - User Mode Linux. hyperv - Microsoft® hyperv. vmware - VMware® vsphere. Baremetal - physical provisioning. VZ - Virtuozzo OS Containers and Virtual Machines (through libvirt). For more information, see: http://docs.openstack.org/trunk/config-reference/content/section_compute-hypervisors.html",
|
|
"type": "string",
|
|
"enum": [
|
|
"baremetal",
|
|
"hyperv",
|
|
"kvm",
|
|
"lxc",
|
|
"qemu",
|
|
"uml",
|
|
"vmware",
|
|
"vz",
|
|
"xen"
|
|
]
|
|
},
|
|
"vm_mode": {
|
|
"title": "VM Mode",
|
|
"description": "The virtual machine mode. This represents the host/guest ABI (application binary interface) used for the virtual machine. Used with the ImagePropertiesFilter. \n\n hvm — Fully virtualized - This is the virtual machine mode (vm_mode) used by QEMU and KVM. \n\n xen - Xen 3.0 paravirtualized. \n\n uml — User Mode Linux paravirtualized. \n\n exe — Executables in containers. This is the mode used by LXC.",
|
|
"type": "string",
|
|
"enum": [
|
|
"hvm",
|
|
"xen",
|
|
"uml",
|
|
"exe"
|
|
]
|
|
}
|
|
},
|
|
"objects": []
|
|
}
|