os_subports_deletion.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # Copyright 2018 Red Hat, Inc. and/or its affiliates
  4. # and other contributors as indicated by the @author tags.
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. # pylint: disable=unused-wildcard-import,wildcard-import,unused-import,redefined-builtin
  18. ''' os_subports_deletion '''
  19. import keystoneauth1
  20. from ansible.module_utils.basic import AnsibleModule
  21. try:
  22. import shade
  23. HAS_SHADE = True
  24. except ImportError:
  25. HAS_SHADE = False
  26. DOCUMENTATION = '''
  27. ---
  28. module: os_subports_deletion
  29. short_description: Delete subports belonging to a trunk
  30. description:
  31. - Detach and deletes all the Neutron Subports belonging to a trunk
  32. author:
  33. - "Luis Tomas Bolivar <ltomasbo@redhat.com>"
  34. '''
  35. RETURN = '''
  36. '''
  37. def main():
  38. ''' Main module function '''
  39. module = AnsibleModule(
  40. argument_spec=dict(
  41. trunk_name=dict(default=False, type='str'),
  42. ),
  43. supports_check_mode=True,
  44. )
  45. if not HAS_SHADE:
  46. module.fail_json(msg='shade is required for this module')
  47. try:
  48. cloud = shade.openstack_cloud()
  49. # pylint: disable=broad-except
  50. except Exception:
  51. module.fail_json(msg='Failed to connect to the cloud')
  52. try:
  53. adapter = keystoneauth1.adapter.Adapter(
  54. session=cloud.keystone_session,
  55. service_type=cloud.cloud_config.get_service_type('network'),
  56. interface=cloud.cloud_config.get_interface('network'),
  57. endpoint_override=cloud.cloud_config.get_endpoint('network'),
  58. version=cloud.cloud_config.get_api_version('network'))
  59. # pylint: disable=broad-except
  60. except Exception:
  61. module.fail_json(msg='Failed to get an adapter to talk to the Neutron '
  62. 'API')
  63. try:
  64. trunk_response = adapter.get('/trunks')
  65. # pylint: disable=broad-except
  66. except Exception:
  67. module.fail_json(msg='Failed to retrieve Neutron trunk information')
  68. subports = []
  69. for trunk in trunk_response.json()['trunks']:
  70. if trunk['name'] == module.params['trunk_name']:
  71. trunk_id = trunk['id']
  72. for subport in trunk['sub_ports']:
  73. subports.append(subport['port_id'])
  74. data = _get_data(subports)
  75. try:
  76. adapter.put('/trunks/' + trunk_id + '/remove_subports',
  77. **data)
  78. # pylint: disable=broad-except
  79. except Exception:
  80. module.fail_json(msg='Failed to detach subports')
  81. try:
  82. for port in subports:
  83. adapter.delete('/ports/' + port)
  84. # pylint: disable=broad-except
  85. except Exception:
  86. module.fail_json(msg='Failed to delete Neutron subports')
  87. module.exit_json(
  88. changed=True)
  89. def _get_data(subports):
  90. ports_list = [{"port_id": port_id.encode('ascii')} for port_id in subports]
  91. sub_ports = str({"sub_ports": ports_list}).replace('\'', '\"')
  92. return {'data': sub_ports}
  93. if __name__ == '__main__':
  94. main()