mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
cloudstack: cs_template: implement state=extracted
This commit is contained in:
parent
75456f7b3a
commit
d2db491098
1 changed files with 57 additions and 5 deletions
|
@ -23,7 +23,7 @@ DOCUMENTATION = '''
|
||||||
module: cs_template
|
module: cs_template
|
||||||
short_description: Manages templates on Apache CloudStack based clouds.
|
short_description: Manages templates on Apache CloudStack based clouds.
|
||||||
description:
|
description:
|
||||||
- Register a template from URL, create a template from a ROOT volume of a stopped VM or its snapshot and delete templates.
|
- Register a template from URL, create a template from a ROOT volume of a stopped VM or its snapshot, extract and delete templates.
|
||||||
version_added: '2.0'
|
version_added: '2.0'
|
||||||
author: "René Moser (@resmo)"
|
author: "René Moser (@resmo)"
|
||||||
options:
|
options:
|
||||||
|
@ -33,7 +33,8 @@ options:
|
||||||
required: true
|
required: true
|
||||||
url:
|
url:
|
||||||
description:
|
description:
|
||||||
- URL of where the template is hosted.
|
- URL of where the template is hosted on C(state=present).
|
||||||
|
- URL to which the template would be extracted on C(state=extracted).
|
||||||
- Mutually exclusive with C(vm).
|
- Mutually exclusive with C(vm).
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
@ -174,7 +175,7 @@ options:
|
||||||
- State of the template.
|
- State of the template.
|
||||||
required: false
|
required: false
|
||||||
default: 'present'
|
default: 'present'
|
||||||
choices: [ 'present', 'absent' ]
|
choices: [ 'present', 'absent', 'extacted' ]
|
||||||
poll_async:
|
poll_async:
|
||||||
description:
|
description:
|
||||||
- Poll async jobs until job has finished.
|
- Poll async jobs until job has finished.
|
||||||
|
@ -314,6 +315,21 @@ hypervisor:
|
||||||
returned: success
|
returned: success
|
||||||
type: string
|
type: string
|
||||||
sample: VMware
|
sample: VMware
|
||||||
|
mode:
|
||||||
|
description: Mode of extraction
|
||||||
|
returned: success
|
||||||
|
type: string
|
||||||
|
sample: http_download
|
||||||
|
state:
|
||||||
|
description: State of the extracted template
|
||||||
|
returned: success
|
||||||
|
type: string
|
||||||
|
sample: DOWNLOAD_URL_CREATED
|
||||||
|
url:
|
||||||
|
description: Url to which the template is extracted to
|
||||||
|
returned: success
|
||||||
|
type: string
|
||||||
|
sample: "http://1.2.3.4/userdata/eb307f13-4aca-45e8-b157-a414a14e6b04.ova"
|
||||||
tags:
|
tags:
|
||||||
description: List of resource tags associated with the template.
|
description: List of resource tags associated with the template.
|
||||||
returned: success
|
returned: success
|
||||||
|
@ -370,6 +386,9 @@ class AnsibleCloudStackTemplate(AnsibleCloudStack):
|
||||||
'ispublic': 'is_public',
|
'ispublic': 'is_public',
|
||||||
'format': 'format',
|
'format': 'format',
|
||||||
'hypervisor': 'hypervisor',
|
'hypervisor': 'hypervisor',
|
||||||
|
'url': 'url',
|
||||||
|
'extractMode': 'mode',
|
||||||
|
'state': 'state',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -506,6 +525,34 @@ class AnsibleCloudStackTemplate(AnsibleCloudStack):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def extract_template(self):
|
||||||
|
template = self.get_template()
|
||||||
|
if not template:
|
||||||
|
self.module.fail_json(msg="Failed: template not found")
|
||||||
|
|
||||||
|
args = {}
|
||||||
|
args['id'] = template['id']
|
||||||
|
args['url'] = self.module.params.get('url')
|
||||||
|
args['mode'] = self.module.params.get('mode')
|
||||||
|
args['zoneid'] = self.get_zone(key='id')
|
||||||
|
|
||||||
|
if not args['url']:
|
||||||
|
self.module.fail_json(msg="Missing required arguments: url")
|
||||||
|
|
||||||
|
self.result['changed'] = True
|
||||||
|
|
||||||
|
if not self.module.check_mode:
|
||||||
|
template = self.cs.extractTemplate(**args)
|
||||||
|
|
||||||
|
if 'errortext' in template:
|
||||||
|
self.module.fail_json(msg="Failed: '%s'" % template['errortext'])
|
||||||
|
|
||||||
|
poll_async = self.module.params.get('poll_async')
|
||||||
|
if poll_async:
|
||||||
|
template = self._poll_job(template, 'template')
|
||||||
|
return template
|
||||||
|
|
||||||
|
|
||||||
def remove_template(self):
|
def remove_template(self):
|
||||||
template = self.get_template()
|
template = self.get_template()
|
||||||
if template:
|
if template:
|
||||||
|
@ -553,8 +600,9 @@ def main():
|
||||||
format = dict(choices=['QCOW2', 'RAW', 'VHD', 'OVA'], default=None),
|
format = dict(choices=['QCOW2', 'RAW', 'VHD', 'OVA'], default=None),
|
||||||
details = dict(default=None),
|
details = dict(default=None),
|
||||||
bits = dict(type='int', choices=[ 32, 64 ], default=64),
|
bits = dict(type='int', choices=[ 32, 64 ], default=64),
|
||||||
state = dict(choices=['present', 'absent'], default='present'),
|
state = dict(choices=['present', 'absent', 'extracted'], default='present'),
|
||||||
cross_zones = dict(type='bool', choices=BOOLEANS, default=False),
|
cross_zones = dict(type='bool', default=False),
|
||||||
|
mode = dict(choices=['http_download', 'ftp_upload'], default='http_download'),
|
||||||
zone = dict(default=None),
|
zone = dict(default=None),
|
||||||
domain = dict(default=None),
|
domain = dict(default=None),
|
||||||
account = dict(default=None),
|
account = dict(default=None),
|
||||||
|
@ -585,6 +633,10 @@ def main():
|
||||||
state = module.params.get('state')
|
state = module.params.get('state')
|
||||||
if state in ['absent']:
|
if state in ['absent']:
|
||||||
tpl = acs_tpl.remove_template()
|
tpl = acs_tpl.remove_template()
|
||||||
|
|
||||||
|
elif state in ['extracted']:
|
||||||
|
tpl = acs_tpl.extract_template()
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if module.params.get('url'):
|
if module.params.get('url'):
|
||||||
tpl = acs_tpl.register_template()
|
tpl = acs_tpl.register_template()
|
||||||
|
|
Loading…
Reference in a new issue