2016-10-26 19:08:23 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
* *******************************************************
|
|
|
|
* Copyright (c) VMware, Inc. 2016. All Rights Reserved.
|
|
|
|
* *******************************************************
|
|
|
|
*
|
|
|
|
* DISCLAIMER. THIS PROGRAM IS PROVIDED TO YOU "AS IS" WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER ORAL OR WRITTEN,
|
|
|
|
* EXPRESS OR IMPLIED. THE AUTHOR SPECIFICALLY DISCLAIMS ANY IMPLIED
|
|
|
|
* WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,
|
|
|
|
* NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
"""
|
|
|
|
|
2017-02-09 20:14:36 -05:00
|
|
|
__author__ = 'VMware, Inc.'
|
|
|
|
__copyright__ = 'Copyright 2016 VMware, Inc. All rights reserved.'
|
2017-02-10 16:55:12 -05:00
|
|
|
__vcenter_version__ = '6.5+'
|
2017-02-09 20:14:36 -05:00
|
|
|
|
2016-10-26 19:08:23 -04:00
|
|
|
from com.vmware.vcenter.vm.hardware_client import Cpu
|
2017-01-23 16:28:22 -05:00
|
|
|
from samples.vsphere.common import vapiconnect
|
|
|
|
from samples.vsphere.common.sample_util import parse_cli_args_vm
|
|
|
|
from samples.vsphere.common.sample_util import pp
|
|
|
|
from samples.vsphere.vcenter.setup import testbed
|
2016-10-26 19:08:23 -04:00
|
|
|
|
2017-01-23 16:28:22 -05:00
|
|
|
from samples.vsphere.vcenter.helper.vm_helper import get_vm
|
2016-10-26 19:08:23 -04:00
|
|
|
|
|
|
|
"""
|
|
|
|
Demonstrates how to configure CPU settings for a VM.
|
|
|
|
|
|
|
|
Sample Prerequisites:
|
|
|
|
The sample needs an existing VM.
|
|
|
|
"""
|
|
|
|
|
|
|
|
vm = None
|
|
|
|
vm_name = None
|
|
|
|
stub_config = None
|
|
|
|
cpu_svc = None
|
|
|
|
cleardata = False
|
|
|
|
orig_cpu_info = None
|
|
|
|
|
|
|
|
|
|
|
|
def setup(context=None):
|
|
|
|
global vm, vm_name, stub_config, cleardata
|
|
|
|
if context:
|
|
|
|
# Run sample suite via setup script
|
|
|
|
stub_config = context.stub_config
|
|
|
|
vm_name = testbed.config['VM_NAME_DEFAULT']
|
|
|
|
else:
|
|
|
|
# Run sample in standalone mode
|
|
|
|
server, username, password, cleardata, skip_verification, vm_name = \
|
|
|
|
parse_cli_args_vm(testbed.config['VM_NAME_DEFAULT'])
|
|
|
|
stub_config = vapiconnect.connect(server,
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
skip_verification)
|
|
|
|
|
|
|
|
|
|
|
|
def run():
|
|
|
|
global vm
|
|
|
|
vm = get_vm(stub_config, vm_name)
|
|
|
|
if not vm:
|
2017-01-25 02:27:34 -05:00
|
|
|
raise Exception('Sample requires an existing vm with name ({}). '
|
|
|
|
'Please create the vm first.'.format(vm_name))
|
2016-10-26 19:08:23 -04:00
|
|
|
print("Using VM '{}' ({}) for Cpu Sample".format(vm_name, vm))
|
|
|
|
|
|
|
|
# Create Cpu stub used for making requests
|
|
|
|
global cpu_svc
|
|
|
|
cpu_svc = Cpu(stub_config)
|
|
|
|
|
|
|
|
print('\n# Example: Get current Cpu configuration')
|
|
|
|
cpu_info = cpu_svc.get(vm)
|
|
|
|
print('vm.hardware.Cpu.get({}) -> {}'.format(vm, pp(cpu_info)))
|
|
|
|
|
|
|
|
# Save current Cpu info to verify that we have cleaned up properly
|
|
|
|
global orig_cpu_info
|
|
|
|
orig_cpu_info = cpu_info
|
|
|
|
|
|
|
|
print('\n# Example: Update cpu field of Cpu configuration')
|
|
|
|
update_spec = Cpu.UpdateSpec(count=2)
|
|
|
|
print('vm.hardware.Cpu.update({}, {})'.format(vm, update_spec))
|
|
|
|
cpu_svc.update(vm, update_spec)
|
|
|
|
|
|
|
|
# Get new Cpu configuration
|
|
|
|
cpu_info = cpu_svc.get(vm)
|
|
|
|
print('vm.hardware.Cpu.get({}) -> {}'.format(vm, pp(cpu_info)))
|
|
|
|
|
|
|
|
print('\n# Example: Update other less likely used fields of Cpu configuration')
|
|
|
|
update_spec = Cpu.UpdateSpec(cores_per_socket=2, hot_add_enabled=True)
|
|
|
|
print('vm.hardware.Cpu.update({}, {})'.format(vm, update_spec))
|
|
|
|
cpu_svc.update(vm, update_spec)
|
|
|
|
|
|
|
|
# Get new Cpu configuration
|
|
|
|
cpu_info = cpu_svc.get(vm)
|
|
|
|
print('vm.hardware.Cpu.get({}) -> {}'.format(vm, pp(cpu_info)))
|
|
|
|
|
|
|
|
|
|
|
|
def cleanup():
|
|
|
|
print('\n# Cleanup: Revert Cpu configuration')
|
|
|
|
update_spec = \
|
|
|
|
Cpu.UpdateSpec(count=orig_cpu_info.count,
|
|
|
|
cores_per_socket=orig_cpu_info.cores_per_socket,
|
|
|
|
hot_add_enabled=orig_cpu_info.hot_add_enabled,
|
|
|
|
hot_remove_enabled=orig_cpu_info.hot_remove_enabled)
|
|
|
|
print('vm.hardware.Cpu.update({}, {})'.format(vm, update_spec))
|
|
|
|
cpu_svc.update(vm, update_spec)
|
|
|
|
|
|
|
|
# Get final Cpu configuration
|
|
|
|
cpu_info = cpu_svc.get(vm)
|
|
|
|
print('vm.hardware.Cpu.get({}) -> {}'.format(vm, pp(cpu_info)))
|
|
|
|
|
|
|
|
if cpu_info != orig_cpu_info:
|
|
|
|
print('vm.hardware.Cpu WARNING: Final Cpu info does not match original')
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
try:
|
|
|
|
setup()
|
|
|
|
run()
|
|
|
|
if cleardata:
|
|
|
|
cleanup()
|
|
|
|
finally:
|
|
|
|
if stub_config:
|
|
|
|
vapiconnect.logout(stub_config)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|