Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP7:Update
salt.18653
fixes-56144-to-enable-hotadd-profile-support.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File fixes-56144-to-enable-hotadd-profile-support.patch of Package salt.18653
From 7642598bcb9932c5802af06bc1f31c315a92085d Mon Sep 17 00:00:00 2001 From: nicholasmhughes <nicholasmhughes@gmail.com> Date: Fri, 14 Feb 2020 22:03:42 -0500 Subject: [PATCH] fixes #56144 to enable hotadd profile support --- doc/topics/cloud/vmware.rst | 8 ++++++++ salt/cloud/clouds/vmware.py | 12 ++++++++++++ 2 files changed, 20 insertions(+) diff --git a/doc/topics/cloud/vmware.rst b/doc/topics/cloud/vmware.rst index 6c979f183e..e4ffe50408 100644 --- a/doc/topics/cloud/vmware.rst +++ b/doc/topics/cloud/vmware.rst @@ -451,6 +451,14 @@ Set up an initial profile at ``/etc/salt/cloud.profiles`` or Specifies whether the new virtual machine should be powered on or not. If ``template: True`` is set, this field is ignored. Default is ``power_on: True``. +``cpu_hot_add`` + Boolean value that enables hot-add support for modifying CPU resources while + the guest is powered on. + +``mem_hot_add`` + Boolean value that enables hot-add support for modifying memory resources while + the guest is powered on. + ``extra_config`` Specifies the additional configuration information for the virtual machine. This describes a set of modifications to the additional options. If the key is already diff --git a/salt/cloud/clouds/vmware.py b/salt/cloud/clouds/vmware.py index f3a9b3c1f0..b53551730b 100644 --- a/salt/cloud/clouds/vmware.py +++ b/salt/cloud/clouds/vmware.py @@ -2550,6 +2550,12 @@ def create(vm_): win_run_once = config.get_cloud_config_value( 'win_run_once', vm_, __opts__, search_global=False, default=None ) + cpu_hot_add = config.get_cloud_config_value( + 'cpu_hot_add', vm_, __opts__, search_global=False, default=None + ) + mem_hot_add = config.get_cloud_config_value( + 'mem_hot_add', vm_, __opts__, search_global=False, default=None + ) # Get service instance object si = _get_si() @@ -2768,6 +2774,12 @@ def create(vm_): specs = _manage_devices(devices, vm=object_ref, container_ref=container_ref, new_vm_name=vm_name) config_spec.deviceChange = specs['device_specs'] + if cpu_hot_add and hasattr(config_spec, 'cpuHotAddEnabled'): + config_spec.cpuHotAddEnabled = bool(cpu_hot_add) + + if mem_hot_add and hasattr(config_spec, 'memoryHotAddEnabled'): + config_spec.memoryHotAddEnabled = bool(mem_hot_add) + if extra_config: for key, value in six.iteritems(extra_config): option = vim.option.OptionValue(key=key, value=value) -- 2.30.0
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor