os_network_extensions.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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_network_extensions '''
  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_network_extensions_facts
  29. short_description: Retrieve OpenStack Networking extension facts
  30. description:
  31. - Retrieves all the OpenStack Neutron available extensions
  32. notes:
  33. - This module creates a new top-level C(openstack_network_extensions) fact
  34. which contains a list of supported OpenStack Neutron extensions
  35. author:
  36. - "Antoni Segura Puimedon <antoni@redhat.com>"
  37. '''
  38. RETURN = '''
  39. openstack_network_extensions:
  40. description: List of available extensions in the Cloud Neutron
  41. type: list
  42. returned: always
  43. sample:
  44. - agent
  45. - router
  46. - subnet_allocation
  47. - trunk
  48. '''
  49. def main():
  50. ''' Main module function '''
  51. module = AnsibleModule(argument_spec={}, supports_check_mode=True)
  52. if not HAS_SHADE:
  53. module.fail_json(msg='shade is required for this module')
  54. try:
  55. cloud = shade.openstack_cloud()
  56. # pylint: disable=broad-except
  57. except Exception:
  58. module.fail_json(msg='Failed to connect to the cloud')
  59. try:
  60. adapter = keystoneauth1.adapter.Adapter(
  61. session=cloud.keystone_session,
  62. service_type=cloud.cloud_config.get_service_type('network'),
  63. interface=cloud.cloud_config.get_interface('network'),
  64. endpoint_override=cloud.cloud_config.get_endpoint('network'),
  65. version=cloud.cloud_config.get_api_version('network'))
  66. # pylint: disable=broad-except
  67. except Exception:
  68. module.fail_json(msg='Failed to get an adapter to talk to the Neutron '
  69. 'API')
  70. try:
  71. response = adapter.get('/extensions.json')
  72. # pylint: disable=broad-except
  73. except Exception:
  74. module.fail_json(msg='Failed to retrieve Neutron extensions')
  75. extensions = []
  76. try:
  77. for ext_record in response.json()['extensions']:
  78. extensions.append(ext_record['alias'])
  79. # pylint: disable=broad-except
  80. except Exception:
  81. module.fail_json(msg='Failed to process cloud networking '
  82. 'extensions')
  83. module.exit_json(
  84. changed=False,
  85. ansible_facts={'openstack_network_extensions': extensions})
  86. if __name__ == '__main__':
  87. main()