Merge pull request #992 from privateip/vca_vapp
refactor vca_vapp to use vca common module
This commit is contained in:
commit
2476fe8325
1 changed files with 110 additions and 509 deletions
|
@ -25,6 +25,7 @@ short_description: create, terminate, start or stop a vm in vca
|
|||
description:
|
||||
- Creates or terminates vca vms.
|
||||
version_added: "2.0"
|
||||
author: Peter Sprygada (@privateip)
|
||||
options:
|
||||
username:
|
||||
description:
|
||||
|
@ -87,11 +88,6 @@ options:
|
|||
- The network name to which the vm should be attached.
|
||||
required: false
|
||||
default: 'None'
|
||||
network_ip:
|
||||
description:
|
||||
- The ip address that should be assigned to vm when the ip assignment type is static
|
||||
required: false
|
||||
default: None
|
||||
network_mode:
|
||||
description:
|
||||
- The network mode in which the ip should be allocated.
|
||||
|
@ -103,16 +99,6 @@ options:
|
|||
- The instance id of the region in vca flavour where the vm should be created
|
||||
required: false
|
||||
default: None
|
||||
wait:
|
||||
description:
|
||||
- If the module should wait if the operation is poweroff or poweron, is better to wait to report the right state.
|
||||
required: false
|
||||
default: True
|
||||
wait_timeout:
|
||||
description:
|
||||
- The wait timeout when wait is set to true
|
||||
required: false
|
||||
default: 250
|
||||
vdc_name:
|
||||
description:
|
||||
- The name of the vdc where the vm should be created.
|
||||
|
@ -133,23 +119,6 @@ options:
|
|||
- The amount of memory to be added to vm in megabytes
|
||||
required: false
|
||||
default: None
|
||||
verify_certs:
|
||||
description:
|
||||
- If the certificates of the authentication is to be verified
|
||||
required: false
|
||||
default: True
|
||||
admin_password:
|
||||
description:
|
||||
- The password to be set for admin
|
||||
required: false
|
||||
default: None
|
||||
operation:
|
||||
description:
|
||||
- The operation to be done on the vm
|
||||
required: false
|
||||
default: poweroff
|
||||
choices: [ 'shutdown', 'poweroff', 'poweron', 'reboot', 'reset', 'suspend' ]
|
||||
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
@ -207,519 +176,151 @@ EXAMPLES = '''
|
|||
template_name: "CentOS 6.5 64Bit CLI"
|
||||
network_mode: pool
|
||||
|
||||
|
||||
'''
|
||||
|
||||
|
||||
import time, json, xmltodict
|
||||
|
||||
HAS_PYVCLOUD = False
|
||||
try:
|
||||
from pyvcloud.vcloudair import VCA
|
||||
HAS_PYVCLOUD = True
|
||||
except ImportError:
|
||||
pass
|
||||
HAS_PYVCLOUD = False
|
||||
|
||||
SERVICE_MAP = {'vca': 'ondemand', 'vchs': 'subscription', 'vcd': 'vcd'}
|
||||
LOGIN_HOST = {}
|
||||
LOGIN_HOST['vca'] = 'vca.vmware.com'
|
||||
LOGIN_HOST['vchs'] = 'vchs.vmware.com'
|
||||
VM_COMPARE_KEYS = ['admin_password', 'status', 'cpus', 'memory_mb']
|
||||
VAPP_STATE_MAP = {
|
||||
'poweron': 'Powered on',
|
||||
'poweroff': 'Powered off',
|
||||
'reboot': None,
|
||||
'reset': None,
|
||||
'shutdown': 'Powered off',
|
||||
'suspend': 'Suspended',
|
||||
'absent': None
|
||||
}
|
||||
|
||||
def vm_state(val=None):
|
||||
if val == 8:
|
||||
return "Power_Off"
|
||||
elif val == 4:
|
||||
return "Power_On"
|
||||
else:
|
||||
return "Unknown Status"
|
||||
def modify_vapp(vapp, module):
|
||||
vm_name = module.params['vm_name']
|
||||
vm_cpus = module.params['vm_cpus']
|
||||
vm_memory = module.params['vm_memory']
|
||||
|
||||
def serialize_instances(instance_list):
|
||||
instances = []
|
||||
for i in instance_list:
|
||||
instances.append(dict(apiUrl=i['apiUrl'], instance_id=i['id']))
|
||||
return instances
|
||||
changed = False
|
||||
|
||||
def get_catalogs(vca):
|
||||
catalogs = vca.get_catalogs()
|
||||
results = []
|
||||
for catalog in catalogs:
|
||||
if catalog.CatalogItems and catalog.CatalogItems.CatalogItem:
|
||||
for item in catalog.CatalogItems.CatalogItem:
|
||||
results.append([catalog.name, item.name])
|
||||
else:
|
||||
results.append([catalog.name, ''])
|
||||
return results
|
||||
try:
|
||||
vm = vapp.get_vms_details()[0]
|
||||
except IndexError:
|
||||
raise VcaError('No VM provisioned for vapp')
|
||||
|
||||
def vca_login(module=None):
|
||||
service_type = module.params.get('service_type')
|
||||
username = module.params.get('username')
|
||||
password = module.params.get('password')
|
||||
instance = module.params.get('instance_id')
|
||||
org = module.params.get('org')
|
||||
service = module.params.get('service_id')
|
||||
vdc_name = module.params.get('vdc_name')
|
||||
version = module.params.get('api_version')
|
||||
verify = module.params.get('verify_certs')
|
||||
if not vdc_name:
|
||||
if service_type == 'vchs':
|
||||
vdc_name = module.params.get('service_id')
|
||||
if not org:
|
||||
if service_type == 'vchs':
|
||||
if vdc_name:
|
||||
org = vdc_name
|
||||
else:
|
||||
org = service
|
||||
if service_type == 'vcd':
|
||||
host = module.params.get('host')
|
||||
else:
|
||||
host = LOGIN_HOST[service_type]
|
||||
if vm['status'] != 'Powered off':
|
||||
raise VcaError('vApp must be powered off to modify')
|
||||
|
||||
if not username:
|
||||
if 'VCA_USER' in os.environ:
|
||||
username = os.environ['VCA_USER']
|
||||
if not password:
|
||||
if 'VCA_PASS' in os.environ:
|
||||
password = os.environ['VCA_PASS']
|
||||
if not username or not password:
|
||||
module.fail_json(msg = "Either the username or password is not set, please check")
|
||||
if vm_cpus != vm['cpus'] and vm_cpus is not None:
|
||||
if not module.check_mode:
|
||||
task = vapp.modify_vm_cpu(vm_name, vm_cpus)
|
||||
changed = True
|
||||
|
||||
if service_type == 'vchs':
|
||||
version = '5.6'
|
||||
if service_type == 'vcd':
|
||||
if not version:
|
||||
version == '5.6'
|
||||
if vm_memory != vm['memory_mb'] and vm_memory is not None:
|
||||
if not module.check_mode:
|
||||
task = vca.modify_vm_memory(vm_name, vm_memory)
|
||||
changed = True
|
||||
|
||||
return changed
|
||||
|
||||
|
||||
vca = VCA(host=host, username=username, service_type=SERVICE_MAP[service_type], version=version, verify=verify)
|
||||
|
||||
if service_type == 'vca':
|
||||
if not vca.login(password=password):
|
||||
module.fail_json(msg = "Login Failed: Please check username or password", error=vca.response.content)
|
||||
if not vca.login_to_instance(password=password, instance=instance, token=None, org_url=None):
|
||||
s_json = serialize_instances(vca.instances)
|
||||
module.fail_json(msg = "Login to Instance failed: Seems like instance_id provided is wrong .. Please check",\
|
||||
valid_instances=s_json)
|
||||
if not vca.login_to_instance(instance=instance, password=None, token=vca.vcloud_session.token,
|
||||
org_url=vca.vcloud_session.org_url):
|
||||
module.fail_json(msg = "Error logging into org for the instance", error=vca.response.content)
|
||||
return vca
|
||||
|
||||
if service_type == 'vchs':
|
||||
if not vca.login(password=password):
|
||||
module.fail_json(msg = "Login Failed: Please check username or password", error=vca.response.content)
|
||||
if not vca.login(token=vca.token):
|
||||
module.fail_json(msg = "Failed to get the token", error=vca.response.content)
|
||||
if not vca.login_to_org(service, org):
|
||||
module.fail_json(msg = "Failed to login to org, Please check the orgname", error=vca.response.content)
|
||||
return vca
|
||||
|
||||
if service_type == 'vcd':
|
||||
if not vca.login(password=password, org=org):
|
||||
module.fail_json(msg = "Login Failed: Please check username or password or host parameters")
|
||||
if not vca.login(password=password, org=org):
|
||||
module.fail_json(msg = "Failed to get the token", error=vca.response.content)
|
||||
if not vca.login(token=vca.token, org=org, org_url=vca.vcloud_session.org_url):
|
||||
module.fail_json(msg = "Failed to login to org", error=vca.response.content)
|
||||
return vca
|
||||
|
||||
def set_vm_state(module=None, vca=None, state=None):
|
||||
wait = module.params.get('wait')
|
||||
wait_tmout = module.params.get('wait_timeout')
|
||||
vm_name = module.params.get('vm_name')
|
||||
vdc_name = module.params.get('vdc_name')
|
||||
vapp_name = module.params.get('vm_name')
|
||||
service_type = module.params.get('service_type')
|
||||
service_id = module.params.get('service_id')
|
||||
if service_type == 'vchs' and not vdc_name:
|
||||
vdc_name = service_id
|
||||
vdc = vca.get_vdc(vdc_name)
|
||||
if wait:
|
||||
tmout = time.time() + wait_tmout
|
||||
while tmout > time.time():
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
vms = filter(lambda vm: vm['name'] == vm_name, vapp.get_vms_details())
|
||||
vm = vms[0]
|
||||
if vm['status'] == state:
|
||||
return True
|
||||
time.sleep(5)
|
||||
module.fail_json(msg="Timeut waiting for the vms state to change")
|
||||
return True
|
||||
|
||||
def vm_details(vdc=None, vapp=None, vca=None):
|
||||
table = []
|
||||
networks = []
|
||||
vm_name = vapp
|
||||
vdc1 = vca.get_vdc(vdc)
|
||||
if not vdc1:
|
||||
module.fail_json(msg = "Error getting the vdc, Please check the vdc name")
|
||||
vap = vca.get_vapp(vdc1, vapp)
|
||||
if vap:
|
||||
vms = filter(lambda vm: vm['name'] == vm_name, vap.get_vms_details())
|
||||
networks = vap.get_vms_network_info()
|
||||
if len(networks[0]) >= 1:
|
||||
table.append(dict(vm_info=vms[0], network_info=networks[0][0]))
|
||||
else:
|
||||
table.append(dict(vm_info=vms[0], network_info=networks[0]))
|
||||
return table
|
||||
def set_vapp_state(vapp, state):
|
||||
vm = vapp.get_vms_details()[0]
|
||||
try:
|
||||
if vm['status'] != VAPP_STATE_MAP[state]:
|
||||
func = getattr(vm, state)
|
||||
func()
|
||||
except KeyError:
|
||||
raise VcaError('unknown vapp state', state=str(state), vm=str(vm))
|
||||
|
||||
|
||||
def vapp_attach_net(module=None, vca=None, vapp=None):
|
||||
network_name = module.params.get('network_name')
|
||||
service_type = module.params.get('service_type')
|
||||
vdc_name = module.params.get('vdc_name')
|
||||
mode = module.params.get('network_mode')
|
||||
if mode.upper() == 'STATIC':
|
||||
network_ip = module.params.get('network_ip')
|
||||
else:
|
||||
network_ip = None
|
||||
if not vdc_name:
|
||||
if service_type == 'vchs':
|
||||
vdc_name = module.params.get('service_id')
|
||||
nets = filter(lambda n: n.name == network_name, vca.get_networks(vdc_name))
|
||||
if len(nets) <= 1:
|
||||
net_task = vapp.disconnect_vms()
|
||||
if not net_task:
|
||||
module.fail_json(msg="Failure in detattaching vms from vnetworks", error=vapp.response.content)
|
||||
if not vca.block_until_completed(net_task):
|
||||
module.fail_json(msg="Failure in waiting for detaching vms from vnetworks", error=vapp.response.content)
|
||||
net_task = vapp.disconnect_from_networks()
|
||||
if not net_task:
|
||||
module.fail_json(msg="Failure in detattaching network from vapp", error=vapp.response.content)
|
||||
if not vca.block_until_completed(net_task):
|
||||
module.fail_json(msg="Failure in waiting for detaching network from vapp", error=vapp.response.content)
|
||||
if not network_name:
|
||||
return True
|
||||
def create_vapp(vca, module):
|
||||
vdc_name = module.params['vdc_name']
|
||||
vapp_name = module.params['vapp_name']
|
||||
template_name = module.params['template_name']
|
||||
catalog_name = module.params['catalog_name']
|
||||
network_name = module.params['network_name']
|
||||
network_mode = module.params['network_mode']
|
||||
vm_name = module.params['vm_name']
|
||||
vm_cpus = module.params['vm_cpus']
|
||||
vm_memory = module.params['vm_memory']
|
||||
deploy = module.params['deploy']
|
||||
|
||||
net_task = vapp.connect_to_network(nets[0].name, nets[0].href)
|
||||
if not net_task:
|
||||
module.fail_json(msg="Failure in attaching network to vapp", error=vapp.response.content)
|
||||
if not vca.block_until_completed(net_task):
|
||||
module.fail_json(msg="Failure in waiting for attching network to vapp", error=vapp.response.content)
|
||||
task = vca.create_vapp(vdc_name, vapp_name, template_name, catalog_name,
|
||||
network_name, network_mode, vm_name, vm_cpus,
|
||||
vm_memory, deploy, False)
|
||||
|
||||
net_task = vapp.connect_vms(nets[0].name, connection_index=0, ip_allocation_mode=mode.upper(), ip_address=network_ip )
|
||||
if not net_task:
|
||||
module.fail_json(msg="Failure in attaching network to vm", error=vapp.response.content)
|
||||
if not vca.block_until_completed(net_task):
|
||||
module.fail_json(msg="Failure in waiting for attaching network to vm", error=vapp.response.content)
|
||||
return True
|
||||
nets = []
|
||||
for i in vca.get_networks(vdc_name):
|
||||
nets.append(i.name)
|
||||
module.fail_json(msg="Seems like network_name is not found in the vdc, please check Available networks as above", Available_networks=nets)
|
||||
vca.block_until_completed(task)
|
||||
|
||||
def create_vm(vca=None, module=None):
|
||||
vm_name = module.params.get('vm_name')
|
||||
operation = module.params.get('operation')
|
||||
vm_cpus = module.params.get('vm_cpus')
|
||||
vm_memory = module.params.get('vm_memory')
|
||||
catalog_name = module.params.get('catalog_name')
|
||||
template_name = module.params.get('template_name')
|
||||
vdc_name = module.params.get('vdc_name')
|
||||
network_name = module.params.get('network_name')
|
||||
service_type = module.params.get('service_type')
|
||||
admin_pass = module.params.get('admin_password')
|
||||
script = module.params.get('script')
|
||||
vapp_name = vm_name
|
||||
return vca.get_vapp(vca.get_vdc(vdc_name), vapp_name)
|
||||
|
||||
if not vdc_name:
|
||||
if service_type == 'vchs':
|
||||
vdc_name = module.params.get('service_id')
|
||||
task = vca.create_vapp(vdc_name, vapp_name, template_name, catalog_name, vm_name=None)
|
||||
if not task:
|
||||
catalogs = get_catalogs(vca)
|
||||
module.fail_json(msg="Error in Creating VM, Please check catalog or template, Available catalogs and templates are as above or check the error field", catalogs=catalogs, errors=vca.response.content)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg = "Error in waiting for VM Creation, Please check logs", errors=vca.response.content)
|
||||
vdc = vca.get_vdc(vdc_name)
|
||||
if not vdc:
|
||||
module.fail_json(msg = "Error getting the vdc, Please check the vdc name", errors=vca.response.content)
|
||||
def remove_vapp(vca, module):
|
||||
vdc_name = module.params['vdc_name']
|
||||
vapp_name = module.params['vapp_name']
|
||||
if not vca.delete_vapp(vdc_name, vapp_name):
|
||||
raise VcaError('unable to delete %s from %s' % (vapp_name, vdc_name))
|
||||
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
task = vapp.modify_vm_name(1, vm_name)
|
||||
if not task:
|
||||
module.fail_json(msg="Error in setting the vm_name to vapp_name", errors=vca.response.content)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg = "Error in waiting for VM Renaming, Please check logs", errors=vca.response.content)
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
task = vapp.customize_guest_os(vm_name, computer_name=vm_name)
|
||||
if not task:
|
||||
module.fail_json(msg="Error in setting the computer_name to vm_name", errors=vca.response.content)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg = "Error in waiting for Computer Renaming, Please check logs", errors=vca.response.content)
|
||||
|
||||
|
||||
if network_name:
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
if not vapp_attach_net(module, vca, vapp):
|
||||
module.fail_json(msg= "Attaching network to VM fails", errors=vca.response.content)
|
||||
|
||||
if vm_cpus:
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
task = vapp.modify_vm_cpu(vm_name, vm_cpus)
|
||||
if not task:
|
||||
module.fail_json(msg="Error adding cpu", error=vapp.resonse.contents)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg="Failure in waiting for modifying cpu", error=vapp.response.content)
|
||||
|
||||
if vm_memory:
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
task = vapp.modify_vm_memory(vm_name, vm_memory)
|
||||
if not task:
|
||||
module.fail_json(msg="Error adding memory", error=vapp.resonse.contents)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg="Failure in waiting for modifying memory", error=vapp.response.content)
|
||||
|
||||
if admin_pass:
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
task = vapp.customize_guest_os(vm_name, customization_script=None,
|
||||
computer_name=None, admin_password=admin_pass,
|
||||
reset_password_required=False)
|
||||
if not task:
|
||||
module.fail_json(msg="Error adding admin password", error=vapp.resonse.contents)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg = "Error in waiting for resettng admin pass, Please check logs", errors=vapp.response.content)
|
||||
|
||||
if script:
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
if os.path.exists(os.path.expanduser(script)):
|
||||
file_contents = open(script, 'r')
|
||||
task = vapp.customize_guest_os(vm_name, customization_script=file_contents.read())
|
||||
if not task:
|
||||
module.fail_json(msg="Error adding customization script", error=vapp.resonse.contents)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg = "Error in waiting for customization script, please check logs", errors=vapp.response.content)
|
||||
task = vapp.force_customization(vm_name, power_on=False )
|
||||
if not task:
|
||||
module.fail_json(msg="Error adding customization script", error=vapp.resonse.contents)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg = "Error in waiting for customization script, please check logs", errors=vapp.response.content)
|
||||
else:
|
||||
module.fail_json(msg = "The file specified in script paramter is not avaialable or accessible")
|
||||
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
if operation == 'poweron':
|
||||
vapp.poweron()
|
||||
set_vm_state(module, vca, state='Powered on')
|
||||
elif operation == 'poweroff':
|
||||
vapp.poweroff()
|
||||
elif operation == 'reboot':
|
||||
vapp.reboot()
|
||||
elif operation == 'reset':
|
||||
vapp.reset()
|
||||
elif operation == 'suspend':
|
||||
vapp.suspend()
|
||||
elif operation == 'shutdown':
|
||||
vapp.shutdown()
|
||||
details = vm_details(vdc_name, vapp_name, vca)
|
||||
module.exit_json(changed=True, msg="VM created", vm_details=details[0])
|
||||
|
||||
def vapp_reconfigure(module=None, diff=None, vm=None, vca=None, vapp=None, vdc_name=None):
|
||||
flag = False
|
||||
vapp_name = module.params.get('vm_name')
|
||||
vm_name = module.params.get('vm_name')
|
||||
cpus = module.params.get('vm_cpus')
|
||||
memory = module.params.get('vm_memory')
|
||||
admin_pass = module.params.get('admin_password')
|
||||
|
||||
if 'status' in diff:
|
||||
operation = module.params.get('operation')
|
||||
if operation == 'poweroff':
|
||||
vapp.poweroff()
|
||||
set_vm_state(module, vca, state='Powered off')
|
||||
flag = True
|
||||
if 'network' in diff:
|
||||
vapp_attach_net(module, vca, vapp)
|
||||
flag = True
|
||||
if 'cpus' in diff:
|
||||
task = vapp.modify_vm_cpu(vm_name, cpus)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg="Failure in waiting for modifying cpu, might be vm is powered on and doesnt support hotplugging", error=vapp.response.content)
|
||||
flag = True
|
||||
if 'memory_mb' in diff:
|
||||
task = vapp.modify_vm_memory(vm_name, memory)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg="Failure in waiting for modifying memory, might be vm is powered on and doesnt support hotplugging", error=vapp.response.content)
|
||||
flag = True
|
||||
if 'admin_password' in diff:
|
||||
task = vapp.customize_guest_os(vm_name, customization_script=None,
|
||||
computer_name=None, admin_password=admin_pass,
|
||||
reset_password_required=False)
|
||||
if not task:
|
||||
module.fail_json(msg="Error adding admin password", error=vapp.resonse.contents)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg = "Error in waiting for resettng admin pass, Please check logs", errors=vapp.response.content)
|
||||
flag = True
|
||||
if 'status' in diff:
|
||||
operation = module.params.get('operation')
|
||||
if operation == 'poweron':
|
||||
vapp.poweron()
|
||||
set_vm_state(module, vca, state='Powered on')
|
||||
elif operation == 'reboot':
|
||||
vapp.reboot()
|
||||
elif operation == 'reset':
|
||||
vapp.reset()
|
||||
elif operation == 'suspend':
|
||||
vapp.suspend()
|
||||
elif operation == 'shutdown':
|
||||
vapp.shutdown()
|
||||
flag = True
|
||||
details = vm_details(vdc_name, vapp_name, vca)
|
||||
if flag:
|
||||
module.exit_json(changed=True, msg="VM reconfigured", vm_details=details[0])
|
||||
module.exit_json(changed=False, msg="VM exists as per configuration",\
|
||||
vm_details=details[0])
|
||||
|
||||
def vm_exists(module=None, vapp=None, vca=None, vdc_name=None):
|
||||
vm_name = module.params.get('vm_name')
|
||||
operation = module.params.get('operation')
|
||||
vm_cpus = module.params.get('vm_cpus')
|
||||
vm_memory = module.params.get('vm_memory')
|
||||
network_name = module.params.get('network_name')
|
||||
admin_pass = module.params.get('admin_password')
|
||||
|
||||
d_vm = {}
|
||||
d_vm['name'] = vm_name
|
||||
d_vm['cpus'] = vm_cpus
|
||||
d_vm['memory_mb'] = vm_memory
|
||||
d_vm['admin_password'] = admin_pass
|
||||
|
||||
if operation == 'poweron':
|
||||
d_vm['status'] = 'Powered on'
|
||||
elif operation == 'poweroff':
|
||||
d_vm['status'] = 'Powered off'
|
||||
else:
|
||||
d_vm['status'] = 'operate'
|
||||
|
||||
vms = filter(lambda vm: vm['name'] == vm_name, vapp.get_vms_details())
|
||||
if len(vms) > 1:
|
||||
module.fail_json(msg = "The vapp seems to have more than one vm with same name,\
|
||||
currently we only support a single vm deployment")
|
||||
elif len(vms) == 0:
|
||||
return False
|
||||
|
||||
else:
|
||||
vm = vms[0]
|
||||
diff = []
|
||||
for i in VM_COMPARE_KEYS:
|
||||
if not d_vm[i]:
|
||||
continue
|
||||
if vm[i] != d_vm[i]:
|
||||
diff.append(i)
|
||||
if len(diff) == 1 and 'status' in diff:
|
||||
vapp_reconfigure(module, diff, vm, vca, vapp, vdc_name)
|
||||
networks = vapp.get_vms_network_info()
|
||||
if not network_name and len(networks) >=1:
|
||||
if len(networks[0]) >= 1:
|
||||
if networks[0][0]['network_name'] != 'none':
|
||||
diff.append('network')
|
||||
if not network_name:
|
||||
if len(diff) == 0:
|
||||
return True
|
||||
if not networks[0] and network_name:
|
||||
diff.append('network')
|
||||
if networks[0]:
|
||||
if len(networks[0]) >= 1:
|
||||
if networks[0][0]['network_name'] != network_name:
|
||||
diff.append('network')
|
||||
if vm['status'] != 'Powered off':
|
||||
if operation != 'poweroff' and len(diff) > 0:
|
||||
module.fail_json(msg="To change any properties of a vm, The vm should be in Powered Off state")
|
||||
if len(diff) == 0:
|
||||
return True
|
||||
else:
|
||||
vapp_reconfigure(module, diff, vm, vca, vapp, vdc_name)
|
||||
|
||||
def main():
|
||||
module = AnsibleModule(
|
||||
argument_spec=dict(
|
||||
username = dict(default=None),
|
||||
password = dict(default=None),
|
||||
org = dict(default=None),
|
||||
service_id = dict(default=None),
|
||||
script = dict(default=None),
|
||||
host = dict(default=None),
|
||||
api_version = dict(default='5.7'),
|
||||
service_type = dict(default='vca', choices=['vchs', 'vca', 'vcd']),
|
||||
state = dict(default='present', choices = ['present', 'absent']),
|
||||
catalog_name = dict(default="Public Catalog"),
|
||||
template_name = dict(default=None, required=True),
|
||||
network_name = dict(default=None),
|
||||
network_ip = dict(default=None),
|
||||
network_mode = dict(default='pool', choices=['dhcp', 'static', 'pool']),
|
||||
instance_id = dict(default=None),
|
||||
wait = dict(default=True, type='bool'),
|
||||
wait_timeout = dict(default=250, type='int'),
|
||||
vdc_name = dict(default=None),
|
||||
vm_name = dict(default='default_ansible_vm1'),
|
||||
vm_cpus = dict(default=None, type='int'),
|
||||
verify_certs = dict(default=True, type='bool'),
|
||||
vm_memory = dict(default=None, type='int'),
|
||||
admin_password = dict(default=None),
|
||||
operation = dict(default='poweroff', choices=['shutdown', 'poweroff', 'poweron', 'reboot', 'reset', 'suspend'])
|
||||
argument_spec = vca_argument_spec()
|
||||
argument_spec.update(
|
||||
dict(
|
||||
vdc_name=dict(requred=True),
|
||||
vapp_name=dict(required=True),
|
||||
template_name=dict(required=True),
|
||||
catalog_name=dict(default='Public Catalog'),
|
||||
network_name=dict(),
|
||||
network_mode=dict(default='pool', choices=['dhcp', 'static', 'pool']),
|
||||
vm_name=dict(),
|
||||
vm_memory=dict(),
|
||||
vm_cpus=dict(),
|
||||
deploy=dict(default=False),
|
||||
state=dict(default='poweron', choices=VAPP_STATE_MAP.keys())
|
||||
)
|
||||
)
|
||||
|
||||
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True)
|
||||
|
||||
vdc_name = module.params.get('vdc_name')
|
||||
vm_name = module.params.get('vm_name')
|
||||
org = module.params.get('org')
|
||||
service = module.params.get('service_id')
|
||||
state = module.params.get('state')
|
||||
service_type = module.params.get('service_type')
|
||||
host = module.params.get('host')
|
||||
instance_id = module.params.get('instance_id')
|
||||
network_mode = module.params.get('network_mode')
|
||||
network_ip = module.params.get('network_ip')
|
||||
vapp_name = vm_name
|
||||
vdc_name = module.params['vdc_name']
|
||||
vapp_name = module.params['vapp_name']
|
||||
state = module.params['state']
|
||||
|
||||
if not HAS_PYVCLOUD:
|
||||
module.fail_json(msg="python module pyvcloud is needed for this module")
|
||||
|
||||
if network_mode.upper() == 'STATIC':
|
||||
if not network_ip:
|
||||
module.fail_json(msg="if network_mode is STATIC, network_ip is mandatory")
|
||||
|
||||
if service_type == 'vca':
|
||||
if not instance_id:
|
||||
module.fail_json(msg="When service type is vca the instance_id parameter is mandatory")
|
||||
if not vdc_name:
|
||||
module.fail_json(msg="When service type is vca the vdc_name parameter is mandatory")
|
||||
|
||||
if service_type == 'vchs':
|
||||
if not service:
|
||||
module.fail_json(msg="When service type vchs the service_id parameter is mandatory")
|
||||
if not org:
|
||||
org = service
|
||||
if not vdc_name:
|
||||
vdc_name = service
|
||||
if service_type == 'vcd':
|
||||
if not host:
|
||||
module.fail_json(msg="When service type is vcd host parameter is mandatory")
|
||||
|
||||
vca = vca_login(module)
|
||||
|
||||
vdc = vca.get_vdc(vdc_name)
|
||||
if not vdc:
|
||||
module.fail_json(msg = "Error getting the vdc, Please check the vdc name")
|
||||
module.fail_json(msg="Error getting the vdc, Please check the vdc name")
|
||||
|
||||
result = dict(changed=False)
|
||||
|
||||
vapp = vca.get_vapp(vdc, vapp_name)
|
||||
if vapp:
|
||||
if state == 'absent':
|
||||
task = vca.delete_vapp(vdc_name, vapp_name)
|
||||
if not vca.block_until_completed(task):
|
||||
module.fail_json(msg="failure in deleting vapp")
|
||||
module.exit_json(changed=True, msg="Vapp deleted")
|
||||
if vm_exists(module, vapp, vca, vdc_name ):
|
||||
details = vm_details(vdc_name, vapp_name, vca)
|
||||
module.exit_json(changed=False, msg="vapp exists", vm_details=details[0])
|
||||
else:
|
||||
create_vm(vca, module)
|
||||
if state == 'absent':
|
||||
module.exit_json(changed=False, msg="Vapp does not exist")
|
||||
create_vm(vca, module)
|
||||
|
||||
try:
|
||||
if not vapp and state != 'absent':
|
||||
if not module.check_mode:
|
||||
vapp = create_vapp(vca, module)
|
||||
set_vapp_state(vapp, state)
|
||||
result['changed'] = True
|
||||
elif vapp and state == 'absent':
|
||||
if not module.check_mode:
|
||||
remove_vapp(vca, module)
|
||||
result['changed'] = True
|
||||
elif vapp:
|
||||
if not module.check_mode:
|
||||
changed = modify_vapp(vapp, module)
|
||||
set_vapp_state(vapp, state)
|
||||
result['changed'] = True
|
||||
except VcaError, e:
|
||||
module.fail_json(msg=e.message, **e.kwargs)
|
||||
except Exception, e:
|
||||
module.fail_json(msg=e.message)
|
||||
|
||||
module.exit_json(**result)
|
||||
|
||||
# import module snippets
|
||||
from ansible.module_utils.basic import *
|
||||
from ansible.module_utils.vca import *
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
main()
|
||||
|
|
Loading…
Reference in a new issue