cloudstack: cs_host: add state maintenance (#26502)

pull/26520/head
René Moser 7 years ago committed by GitHub
parent 5ceabe939d
commit 63f4aa3069

@ -400,7 +400,8 @@ class AnsibleCloudStackHost(AnsibleCloudStack):
'version': 'host_version', 'version': 'host_version',
'gpugroup': 'gpu_group', 'gpugroup': 'gpu_group',
} }
self.allocation_states = { # States only usable by the updateHost API
self.allocation_states_for_update = {
'enabled': 'Enable', 'enabled': 'Enable',
'disabled': 'Disable', 'disabled': 'Disable',
} }
@ -438,12 +439,6 @@ class AnsibleCloudStackHost(AnsibleCloudStack):
return None return None
return ','.join(host_tags) return ','.join(host_tags)
def get_allocation_state(self):
allocation_state = self.module.params.get('allocation_state')
if allocation_state is None:
return None
return self.allocation_states[allocation_state]
def get_host(self, refresh=False): def get_host(self, refresh=False):
if self.host is not None and not refresh: if self.host is not None and not refresh:
return self.host return self.host
@ -459,12 +454,53 @@ class AnsibleCloudStackHost(AnsibleCloudStack):
self.host = h self.host = h
return self.host return self.host
def _handle_allocation_state(self, host):
allocation_state = self.module.params.get('allocation_state')
if not allocation_state:
return host
host = self._set_host_allocation_state(host)
# In case host in maintenance and target is maintenance
if host['allocationstate'].lower() == allocation_state and allocation_state == 'maintenance':
return host
# Cancel maintenance if target state is enabled/disabled
elif allocation_state in list(self.allocation_states_for_update.keys()):
host = self.disable_maintenance(host)
host = self._update_host(host, self.allocation_states_for_update[allocation_state])
# Only an enabled host can put in maintenance
elif allocation_state == 'maintenance':
host = self._update_host(host, 'Enable')
host = self.enable_maintenance(host)
return host
def _set_host_allocation_state(self, host):
if host is None:
host['allocationstate'] = 'Enable'
# Set host allocationstate to be disabled/enabled
elif host['resourcestate'].lower() in list(self.allocation_states_for_update.keys()):
host['allocationstate'] = self.allocation_states_for_update[host['resourcestate'].lower()]
else:
host['allocationstate'] = host['resourcestate']
return host
def present_host(self): def present_host(self):
host = self.get_host() host = self.get_host()
if not host: if not host:
host = self._create_host(host) host = self._create_host(host)
else: else:
host = self._update_host(host) host = self._update_host(host)
if host:
host = self._handle_allocation_state(host)
return host return host
def _get_url(self): def _get_url(self):
@ -491,7 +527,6 @@ class AnsibleCloudStackHost(AnsibleCloudStack):
'podid': self.get_pod(key='id'), 'podid': self.get_pod(key='id'),
'zoneid': self.get_zone(key='id'), 'zoneid': self.get_zone(key='id'),
'clusterid': self.get_cluster(key='id'), 'clusterid': self.get_cluster(key='id'),
'allocationstate': self.get_allocation_state(),
'hosttags': self.get_host_tags(), 'hosttags': self.get_host_tags(),
} }
if not self.module.check_mode: if not self.module.check_mode:
@ -501,13 +536,16 @@ class AnsibleCloudStackHost(AnsibleCloudStack):
host = host['host'][0] host = host['host'][0]
return host return host
def _update_host(self, host): def _update_host(self, host, allocation_state=None):
args = { args = {
'id': host['id'], 'id': host['id'],
'hosttags': self.get_host_tags(), 'hosttags': self.get_host_tags(),
'allocationstate': self.get_allocation_state() 'allocationstate': allocation_state,
} }
host['allocationstate'] = self.allocation_states[host['resourcestate'].lower()]
if allocation_state is not None:
host = self._set_host_allocation_state(host)
if self.has_changed(args, host): if self.has_changed(args, host):
self.result['changed'] = True self.result['changed'] = True
if not self.module.check_mode: if not self.module.check_mode:
@ -526,15 +564,14 @@ class AnsibleCloudStackHost(AnsibleCloudStack):
'id': host['id'], 'id': host['id'],
} }
if not self.module.check_mode: if not self.module.check_mode:
res = self.enable_maintenance() res = self.enable_maintenance(host)
if res: if res:
res = self.cs.deleteHost(**args) res = self.cs.deleteHost(**args)
if 'errortext' in res: if 'errortext' in res:
self.module.fail_json(msg="Failed: '%s'" % res['errortext']) self.module.fail_json(msg="Failed: '%s'" % res['errortext'])
return host return host
def enable_maintenance(self): def enable_maintenance(self, host):
host = self.get_host()
if host['resourcestate'] not in ['PrepareForMaintenance', 'Maintenance']: if host['resourcestate'] not in ['PrepareForMaintenance', 'Maintenance']:
self.result['changed'] = True self.result['changed'] = True
args = { args = {
@ -542,10 +579,23 @@ class AnsibleCloudStackHost(AnsibleCloudStack):
} }
if not self.module.check_mode: if not self.module.check_mode:
res = self.cs.prepareHostForMaintenance(**args) res = self.cs.prepareHostForMaintenance(**args)
if 'errortext' in res:
self.module.fail_json(msg="Failed: '%s'" % res['errortext'])
self.poll_job(res, 'host')
host = self._poll_for_maintenance()
return host
def disable_maintenance(self, host):
if host['resourcestate'] in ['PrepareForMaintenance', 'Maintenance']:
self.result['changed'] = True
args = {
'id': host['id'],
}
if not self.module.check_mode:
res = self.cs.cancelHostMaintenance(**args)
if 'errortext' in res: if 'errortext' in res:
self.module.fail_json(msg="Failed: '%s'" % res['errortext']) self.module.fail_json(msg="Failed: '%s'" % res['errortext'])
host = self.poll_job(res, 'host') host = self.poll_job(res, 'host')
self._poll_for_maintenance()
return host return host
def _poll_for_maintenance(self): def _poll_for_maintenance(self):
@ -571,14 +621,14 @@ def main():
argument_spec.update(dict( argument_spec.update(dict(
name=dict(required=True, aliases=['ip_address']), name=dict(required=True, aliases=['ip_address']),
url=dict(), url=dict(),
password=dict(default=None, no_log=True), password=dict(no_log=True),
username=dict(default=None), username=dict(),
hypervisor=dict(choices=CS_HYPERVISORS, default=None), hypervisor=dict(choices=CS_HYPERVISORS),
allocation_state=dict(default=None), allocation_state=dict(choices=['enabled', 'disabled', 'maintenance']),
pod=dict(default=None), pod=dict(),
cluster=dict(default=None), cluster=dict(),
host_tags=dict(default=None, type='list'), host_tags=dict(type='list'),
zone=dict(default=None), zone=dict(),
state=dict(choices=['present', 'absent'], default='present'), state=dict(choices=['present', 'absent'], default='present'),
)) ))

@ -242,6 +242,129 @@
- host.name == '{{ host_hostname }}' - host.name == '{{ host_hostname }}'
when: false when: false
- name: test put host in maintenance in check mode
cs_host:
name: "{{ host_hostname }}"
cluster: C0-basic
pod: POD0-basic
allocation_state: maintenance
check_mode: true
register: host
- name: verify test put host in maintenance in check mode
assert:
that:
- host|changed
- host.cluster == 'C0-basic'
- host.pod == 'POD0-basic'
- host.hypervisor == 'Simulator'
- host.allocation_state == 'enabled'
- host.zone == 'Sandbox-simulator-basic'
- host.state == 'Up'
- host.name == '{{ host_hostname }}'
- host.host_tags == ['perf', 'gpu', 'x2']
- name: test put host in maintenance
cs_host:
name: "{{ host_hostname }}"
cluster: C0-basic
pod: POD0-basic
allocation_state: maintenance
register: host
- name: verify test put host in maintenance
assert:
that:
- host|changed
- host.cluster == 'C0-basic'
- host.pod == 'POD0-basic'
- host.hypervisor == 'Simulator'
- host.allocation_state == 'maintenance'
- host.zone == 'Sandbox-simulator-basic'
- host.state == 'Up'
- host.name == '{{ host_hostname }}'
- host.host_tags == ['perf', 'gpu', 'x2']
- name: test put host in maintenance idempotence
cs_host:
name: "{{ host_hostname }}"
cluster: C0-basic
pod: POD0-basic
allocation_state: maintenance
register: host
- name: verify test put host in maintenance idempotence
assert:
that:
- not host|changed
- host.cluster == 'C0-basic'
- host.pod == 'POD0-basic'
- host.hypervisor == 'Simulator'
- host.allocation_state == 'maintenance'
- host.zone == 'Sandbox-simulator-basic'
- host.state == 'Up'
- host.name == '{{ host_hostname }}'
- host.host_tags == ['perf', 'gpu', 'x2']
- name: test put host out of maintenance in check mode
cs_host:
name: "{{ host_hostname }}"
cluster: C0-basic
pod: POD0-basic
allocation_state: enabled
check_mode: true
register: host
- name: verify test put host out of maintenance in check mode
assert:
that:
- host|changed
- host.cluster == 'C0-basic'
- host.pod == 'POD0-basic'
- host.hypervisor == 'Simulator'
- host.allocation_state == 'maintenance'
- host.zone == 'Sandbox-simulator-basic'
- host.state == 'Up'
- host.name == '{{ host_hostname }}'
- host.host_tags == ['perf', 'gpu', 'x2']
- name: test put host out of maintenance
cs_host:
name: "{{ host_hostname }}"
cluster: C0-basic
pod: POD0-basic
allocation_state: enabled
register: host
- name: verify test put host out of maintenance
assert:
that:
- host|changed
- host.cluster == 'C0-basic'
- host.pod == 'POD0-basic'
- host.hypervisor == 'Simulator'
- host.allocation_state == 'enabled'
- host.zone == 'Sandbox-simulator-basic'
- host.state == 'Up'
- host.name == '{{ host_hostname }}'
- host.host_tags == ['perf', 'gpu', 'x2']
- name: test put host out of maintenance idempotence
cs_host:
name: "{{ host_hostname }}"
cluster: C0-basic
pod: POD0-basic
allocation_state: enabled
register: host
- name: verify test put host out of maintenance idempotence
assert:
that:
- not host|changed
- host.cluster == 'C0-basic'
- host.pod == 'POD0-basic'
- host.hypervisor == 'Simulator'
- host.allocation_state == 'enabled'
- host.zone == 'Sandbox-simulator-basic'
- host.state == 'Up'
- host.name == '{{ host_hostname }}'
- host.host_tags == ['perf', 'gpu', 'x2']
- name: test remove host in check mode - name: test remove host in check mode
cs_host: cs_host:
name: "{{ host_hostname }}" name: "{{ host_hostname }}"

Loading…
Cancel
Save