os_service_catalog.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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_service_catalog_facts '''
  19. from ansible.module_utils.basic import AnsibleModule
  20. try:
  21. import shade
  22. HAS_SHADE = True
  23. except ImportError:
  24. HAS_SHADE = False
  25. DOCUMENTATION = '''
  26. ---
  27. module: os_service_catalog_facts
  28. short_description: Retrieve OpenStack service catalog facts
  29. description:
  30. - Retrieves all the available OpenStack services
  31. notes:
  32. - This module creates a new top-level C(openstack_service_catalog) fact
  33. which contains a dictionary of OpenStack service endpoints like
  34. network and load-balancers.
  35. author:
  36. - "Antoni Segura Puimedon <antoni@redhat.com>"
  37. '''
  38. RETURN = '''
  39. openstack_service_catalog:
  40. description: OpenStack available services.
  41. type: dict
  42. returned: always
  43. sample:
  44. alarming:
  45. - adminURL: http://172.16.0.9:8042
  46. id: 2c40b50da0bb44178db91c8a9a29a46e
  47. internalURL: http://172.16.0.9:8042
  48. publicURL: https://mycloud.org:13042
  49. region: regionOne
  50. cloudformation:
  51. - adminURL: http://172.16.0.9:8000/v1
  52. id: 46648eded04e463281a9cba7ddcc45cb
  53. internalURL: http://172.16.0.9:8000/v1
  54. publicURL: https://mycloud.org:13005/v1
  55. region: regionOne
  56. compute:
  57. - adminURL: http://172.16.0.9:8774/v2.1
  58. id: bff1bc5dd92842c281b2358a6d15c5bc
  59. internalURL: http://172.16.0.9:8774/v2.1
  60. publicURL: https://mycloud.org:13774/v2.1
  61. region: regionOne
  62. event:
  63. - adminURL: http://172.16.0.9:8779
  64. id: 608ac3666ef24f2e8f240785b8612efb
  65. internalURL: http://172.16.0.9:8779
  66. publicURL: https://mycloud.org:13779
  67. region: regionOne
  68. identity:
  69. - adminURL: https://mycloud.org:35357
  70. id: 4d07689ce46b4d51a01cc873bc772c80
  71. internalURL: http://172.16.0.9:5000
  72. publicURL: https://mycloud.org:13000
  73. region: regionOne
  74. image:
  75. - adminURL: http://172.16.0.9:9292
  76. id: 1850105115ea493eb65f3f704d421291
  77. internalURL: http://172.16.0.9:9292
  78. publicURL: https://mycloud.org:13292
  79. region: regionOne
  80. metering:
  81. - adminURL: http://172.16.0.9:8777
  82. id: 4cae4dcabe0a4914a6ec6dabd62490ba
  83. internalURL: http://172.16.0.9:8777
  84. publicURL: https://mycloud.org:13777
  85. region: regionOne
  86. metric:
  87. - adminURL: http://172.16.0.9:8041
  88. id: 29bcecf9a06f40f782f19dd7492af352
  89. internalURL: http://172.16.0.9:8041
  90. publicURL: https://mycloud.org:13041
  91. region: regionOne
  92. network:
  93. - adminURL: http://172.16.0.9:9696
  94. id: 5d5785c9b8174c21bfb19dc3b16c87fa
  95. internalURL: http://172.16.0.9:9696
  96. publicURL: https://mycloud.org:13696
  97. region: regionOne
  98. object-store:
  99. - adminURL: http://172.17.0.9:8080
  100. id: 031f1e342fdf4f25b6099d1f3b0847e3
  101. internalURL: http://172.17.0.9:8080/v1/AUTH_6d2847d6a6414308a67644eefc7b98c7
  102. publicURL: https://mycloud.org:13808/v1/AUTH_6d2847d6a6414308a67644eefc7b98c7
  103. region: regionOne
  104. orchestration:
  105. - adminURL: http://172.16.0.9:8004/v1/6d2847d6a6414308a67644eefc7b98c7
  106. id: 1e6cecbd15b3413d9411052c52b9d433
  107. internalURL: http://172.16.0.9:8004/v1/6d2847d6a6414308a67644eefc7b98c7
  108. publicURL: https://mycloud.org:13004/v1/6d2847d6a6414308a67644eefc7b98c7
  109. region: regionOne
  110. placement:
  111. - adminURL: http://172.16.0.9:8778/placement
  112. id: 1f2551e5450c4bd6a9f716f92e93a154
  113. internalURL: http://172.16.0.9:8778/placement
  114. publicURL: https://mycloud.org:13778/placement
  115. region: regionOne
  116. volume:
  117. - adminURL: http://172.16.0.9:8776/v1/6d2847d6a6414308a67644eefc7b98c7
  118. id: 38e369a0e17346fe8e37a20146e005ef
  119. internalURL: http://172.16.0.9:8776/v1/6d2847d6a6414308a67644eefc7b98c7
  120. publicURL: https://mycloud.org:13776/v1/6d2847d6a6414308a67644eefc7b98c7
  121. region: regionOne
  122. volumev2:
  123. - adminURL: http://172.16.0.9:8776/v2/6d2847d6a6414308a67644eefc7b98c7
  124. id: 113a0bff9f2347b6b8774407a1c8d572
  125. internalURL: http://172.16.0.9:8776/v2/6d2847d6a6414308a67644eefc7b98c7
  126. publicURL: https://mycloud.org:13776/v2/6d2847d6a6414308a67644eefc7b98c7
  127. region: regionOne
  128. volumev3:
  129. - adminURL: http://172.16.0.9:8776/v3/6d2847d6a6414308a67644eefc7b98c7
  130. id: 9982c0afd28941a19feb1ffb13b91daf
  131. internalURL: http://172.16.0.9:8776/v3/6d2847d6a6414308a67644eefc7b98c7
  132. publicURL: https://mycloud.org:13776/v3/6d2847d6a6414308a67644eefc7b98c7
  133. region: regionOne
  134. '''
  135. def main():
  136. ''' Main module function '''
  137. module = AnsibleModule(argument_spec={}, supports_check_mode=True)
  138. if not HAS_SHADE:
  139. module.fail_json(msg='shade is required for this module')
  140. try:
  141. cloud = shade.openstack_cloud()
  142. # pylint: disable=broad-except
  143. except Exception:
  144. module.fail_json(msg='Failed to connect to the cloud')
  145. try:
  146. service_catalog = cloud.cloud_config.get_service_catalog()
  147. # pylint: disable=broad-except
  148. except Exception:
  149. module.fail_json(msg='Failed to retrieve the service catalog')
  150. try:
  151. endpoints = service_catalog.get_endpoints()
  152. # pylint: disable=broad-except
  153. except Exception:
  154. module.fail_json(msg='Failed to retrieve the service catalog '
  155. 'endpoints')
  156. module.exit_json(
  157. changed=False,
  158. ansible_facts={'openstack_service_catalog': endpoints})
  159. if __name__ == '__main__':
  160. main()