os_lbaas_deletion.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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_lbaas_deletion '''
  19. import keystoneauth1
  20. from oslo_serialization import jsonutils
  21. from ansible.module_utils.basic import AnsibleModule
  22. try:
  23. import shade
  24. HAS_SHADE = True
  25. except ImportError:
  26. HAS_SHADE = False
  27. DOCUMENTATION = '''
  28. ---
  29. module: os_lbaas_deletion
  30. short_description: Delete LBaaS created by Kuryr
  31. description:
  32. - Delete all the LBaaS created by Kuryr with the cascade flag
  33. author:
  34. - "Luis Tomas Bolivar <ltomasbo@redhat.com>"
  35. '''
  36. RETURN = '''
  37. '''
  38. def main():
  39. ''' Main module function '''
  40. module = AnsibleModule(
  41. argument_spec=dict(
  42. lbaas_annotation=dict(default=False, type='dict'),
  43. ),
  44. supports_check_mode=True,
  45. )
  46. if not HAS_SHADE:
  47. module.fail_json(msg='shade is required for this module')
  48. try:
  49. cloud = shade.openstack_cloud()
  50. # pylint: disable=broad-except
  51. except Exception:
  52. module.fail_json(msg='Failed to connect to the cloud')
  53. try:
  54. adapter = keystoneauth1.adapter.Adapter(
  55. session=cloud.keystone_session,
  56. service_type=cloud.cloud_config.get_service_type('load-balancer'),
  57. interface=cloud.cloud_config.get_interface('load-balancer'),
  58. endpoint_override=cloud.cloud_config.get_endpoint('load-balancer'),
  59. version=cloud.cloud_config.get_api_version('load-balancer'))
  60. # pylint: disable=broad-except
  61. except Exception:
  62. module.fail_json(msg='Failed to get an adapter to talk to the Octavia '
  63. 'API')
  64. try:
  65. lbaas_state = (
  66. module.params['lbaas_annotation'][
  67. 'openstack.org/kuryr-lbaas-state'])
  68. # pylint: disable=broad-except
  69. except Exception:
  70. module.exit_json(change=True, msg='No information about the lbaas to '
  71. 'delete')
  72. lbaas_data = jsonutils.loads(lbaas_state)['versioned_object.data'][
  73. 'loadbalancer']
  74. lbaas_id = lbaas_data['versioned_object.data']['id']
  75. try:
  76. adapter.delete(
  77. '/v2.0/lbaas/loadbalancers/' + lbaas_id + '?cascade=True')
  78. # pylint: disable=broad-except
  79. except Exception:
  80. module.fail_json(msg='Failed to delete Octavia LBaaS with cascade '
  81. 'flag')
  82. module.exit_json(
  83. changed=True)
  84. if __name__ == '__main__':
  85. main()