236c9db4eb
From: http://docs.openstack.org/trunk/config-reference/content/section_compute-scheduler.html#imagepropertiesfilter Filters hosts based on properties defined on the instance's image. Updated descriptions to be provide better information. Added baremetal "hypervisor_type" after getting info from Nova core about what hypervisors to include. Left out "architecture" for now, because horizon fails when trying to update architecture property. Change-Id: I9195825a0ab4b89e764983da06827173a2daa23c Closes-bug: 1368965
42 lines
2.1 KiB
JSON
42 lines
2.1 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. 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",
|
|
"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": []
|
|
}
|