Files
nova/nova/virt/vmwareapi/constants.py
T
alecorps d5faf45e9d VMware: Support volumes backed by VStorageObject
vSphere 6.5 introduced APIs to manage virtual disks (volumes)
as first class objects. The new managed disk entity is called
VStorageObject aka First Class Disk (FCD). Adding support for
volumes backed by VStorageObject.

Change-Id: I4a5a9d3537dc175508f0a0fd82507c498737d1a5
2022-02-15 09:44:38 +00:00

236 lines
6.1 KiB
Python

# Copyright (c) 2014 VMware, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""
Shared constants across the VMware driver
"""
from nova.compute import power_state
from nova.network import model as network_model
MIN_VC_VERSION = '5.1.0'
NEXT_MIN_VC_VERSION = '5.5.0'
# The minimum VC version for Neutron 'ovs' port type support
MIN_VC_OVS_VERSION = '5.5.0'
DISK_FORMAT_ISO = 'iso'
DISK_FORMAT_VMDK = 'vmdk'
DISK_FORMAT_ISCSI = 'iscsi'
DISK_FORMAT_FCD = 'vstorageobject'
DISK_FORMATS_ALL = [DISK_FORMAT_ISO, DISK_FORMAT_VMDK, DISK_FORMAT_FCD]
DISK_TYPE_THIN = 'thin'
CONTAINER_FORMAT_BARE = 'bare'
CONTAINER_FORMAT_OVA = 'ova'
CONTAINER_FORMATS_ALL = [CONTAINER_FORMAT_BARE, CONTAINER_FORMAT_OVA]
DISK_TYPE_SPARSE = 'sparse'
DISK_TYPE_PREALLOCATED = 'preallocated'
DISK_TYPE_STREAM_OPTIMIZED = 'streamOptimized'
DISK_TYPE_EAGER_ZEROED_THICK = 'eagerZeroedThick'
DATASTORE_TYPE_VMFS = 'VMFS'
DATASTORE_TYPE_NFS = 'NFS'
DATASTORE_TYPE_NFS41 = 'NFS41'
DATASTORE_TYPE_VSAN = 'vsan'
DEFAULT_VIF_MODEL = network_model.VIF_MODEL_E1000
DEFAULT_OS_TYPE = "otherGuest"
DEFAULT_ADAPTER_TYPE = "lsiLogic"
DEFAULT_DISK_TYPE = DISK_TYPE_PREALLOCATED
DEFAULT_DISK_FORMAT = DISK_FORMAT_VMDK
DEFAULT_CONTAINER_FORMAT = CONTAINER_FORMAT_BARE
IMAGE_VM_PREFIX = "OSTACK_IMG"
SNAPSHOT_VM_PREFIX = "OSTACK_SNAP"
ADAPTER_TYPE_BUSLOGIC = "busLogic"
ADAPTER_TYPE_IDE = "ide"
ADAPTER_TYPE_LSILOGICSAS = "lsiLogicsas"
ADAPTER_TYPE_PARAVIRTUAL = "paraVirtual"
SCSI_ADAPTER_TYPES = [DEFAULT_ADAPTER_TYPE, ADAPTER_TYPE_LSILOGICSAS,
ADAPTER_TYPE_BUSLOGIC, ADAPTER_TYPE_PARAVIRTUAL]
SUPPORTED_FLAT_VARIANTS = ["thin", "preallocated", "thick", "eagerZeroedThick"]
EXTENSION_KEY = 'org.openstack.compute'
EXTENSION_TYPE_INSTANCE = 'instance'
# The max number of devices that can be connected to one adapter
# One adapter has 16 slots but one reserved for controller
SCSI_MAX_CONNECT_NUMBER = 15
# The max number of SCSI adaptors that could be created on one instance.
SCSI_MAX_CONTROLLER_NUMBER = 4
# This list was extracted from a file on an installation of ESX 6.5. The file
# can be found in /usr/lib/vmware/hostd/vimLocale/en/gos.vmsg
# The contents of this list should be updated whenever there is a new
# release of ESX.
VALID_OS_TYPES = set([
'asianux3_64Guest',
'asianux3Guest',
'asianux4_64Guest',
'asianux4Guest',
'asianux5_64Guest',
'asianux7_64Guest',
'centos64Guest',
'centosGuest',
'centos6Guest',
'centos6_64Guest',
'centos7_64Guest',
'centos7Guest',
'coreos64Guest',
'darwin10_64Guest',
'darwin10Guest',
'darwin11_64Guest',
'darwin11Guest',
'darwin12_64Guest',
'darwin13_64Guest',
'darwin14_64Guest',
'darwin15_64Guest',
'darwin16_64Guest',
'darwin64Guest',
'darwinGuest',
'debian4_64Guest',
'debian4Guest',
'debian5_64Guest',
'debian5Guest',
'debian6_64Guest',
'debian6Guest',
'debian7_64Guest',
'debian7Guest',
'debian8_64Guest',
'debian8Guest',
'debian9_64Guest',
'debian9Guest',
'debian10_64Guest',
'debian10Guest',
'dosGuest',
'eComStation2Guest',
'eComStationGuest',
'fedora64Guest',
'fedoraGuest',
'freebsd64Guest',
'freebsdGuest',
'genericLinuxGuest',
'mandrakeGuest',
'mandriva64Guest',
'mandrivaGuest',
'netware4Guest',
'netware5Guest',
'netware6Guest',
'nld9Guest',
'oesGuest',
'openServer5Guest',
'openServer6Guest',
'opensuse64Guest',
'opensuseGuest',
'oracleLinux64Guest',
'oracleLinuxGuest',
'oracleLinux6Guest',
'oracleLinux6_64Guest',
'oracleLinux7_64Guest',
'oracleLinux7Guest',
'os2Guest',
'other24xLinux64Guest',
'other24xLinuxGuest',
'other26xLinux64Guest',
'other26xLinuxGuest',
'other3xLinux64Guest',
'other3xLinuxGuest',
'otherGuest',
'otherGuest64',
'otherLinux64Guest',
'otherLinuxGuest',
'redhatGuest',
'rhel2Guest',
'rhel3_64Guest',
'rhel3Guest',
'rhel4_64Guest',
'rhel4Guest',
'rhel5_64Guest',
'rhel5Guest',
'rhel6_64Guest',
'rhel6Guest',
'rhel7_64Guest',
'rhel7Guest',
'sjdsGuest',
'sles10_64Guest',
'sles10Guest',
'sles11_64Guest',
'sles11Guest',
'sles12_64Guest',
'sles12Guest',
'sles64Guest',
'slesGuest',
'solaris10_64Guest',
'solaris10Guest',
'solaris11_64Guest',
'solaris6Guest',
'solaris7Guest',
'solaris8Guest',
'solaris9Guest',
'suse64Guest',
'suseGuest',
'turboLinux64Guest',
'turboLinuxGuest',
'ubuntu64Guest',
'ubuntuGuest',
'unixWare7Guest',
'vmkernel5Guest',
'vmkernel6Guest',
'vmkernel65Guest',
'vmkernelGuest',
'vmwarePhoton64Guest',
'win2000AdvServGuest',
'win2000ProGuest',
'win2000ServGuest',
'win31Guest',
'win95Guest',
'win98Guest',
'windows7_64Guest',
'windows7Guest',
'windows7Server64Guest',
'windows8_64Guest',
'windows8Guest',
'windows8Server64Guest',
'windows9_64Guest',
'windows9Guest',
'windows9Server64Guest',
'windowsHyperVGuest',
'winLonghorn64Guest',
'winLonghornGuest',
'winMeGuest',
'winNetBusinessGuest',
'winNetDatacenter64Guest',
'winNetDatacenterGuest',
'winNetEnterprise64Guest',
'winNetEnterpriseGuest',
'winNetStandard64Guest',
'winNetStandardGuest',
'winNetWebGuest',
'winNTGuest',
'winVista64Guest',
'winVistaGuest',
'winXPHomeGuest',
'winXPPro64Guest',
'winXPProGuest',
])
POWER_STATES = {'poweredOff': power_state.SHUTDOWN,
'poweredOn': power_state.RUNNING,
'suspended': power_state.SUSPENDED}