gce.py 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. #!/usr/bin/python
  2. # Copyright 2013 Google Inc.
  3. #
  4. # This file is part of Ansible
  5. #
  6. # Ansible is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # Ansible is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
  18. '''
  19. GCE external inventory script
  20. =================================
  21. Generates inventory that Ansible can understand by making API requests
  22. Google Compute Engine via the libcloud library. Full install/configuration
  23. instructions for the gce* modules can be found in the comments of
  24. ansible/test/gce_tests.py.
  25. When run against a specific host, this script returns the following variables
  26. based on the data obtained from the libcloud Node object:
  27. - gce_uuid
  28. - gce_id
  29. - gce_image
  30. - gce_machine_type
  31. - gce_private_ip
  32. - gce_public_ip
  33. - gce_name
  34. - gce_description
  35. - gce_status
  36. - gce_zone
  37. - gce_tags
  38. - gce_metadata
  39. - gce_network
  40. When run in --list mode, instances are grouped by the following categories:
  41. - zone:
  42. zone group name examples are us-central1-b, europe-west1-a, etc.
  43. - instance tags:
  44. An entry is created for each tag. For example, if you have two instances
  45. with a common tag called 'foo', they will both be grouped together under
  46. the 'tag_foo' name.
  47. - network name:
  48. the name of the network is appended to 'network_' (e.g. the 'default'
  49. network will result in a group named 'network_default')
  50. - machine type
  51. types follow a pattern like n1-standard-4, g1-small, etc.
  52. - running status:
  53. group name prefixed with 'status_' (e.g. status_running, status_stopped,..)
  54. - image:
  55. when using an ephemeral/scratch disk, this will be set to the image name
  56. used when creating the instance (e.g. debian-7-wheezy-v20130816). when
  57. your instance was created with a root persistent disk it will be set to
  58. 'persistent_disk' since there is no current way to determine the image.
  59. Examples:
  60. Execute uname on all instances in the us-central1-a zone
  61. $ ansible -i gce.py us-central1-a -m shell -a "/bin/uname -a"
  62. Use the GCE inventory script to print out instance specific information
  63. $ plugins/inventory/gce.py --host my_instance
  64. Author: Eric Johnson <erjohnso@google.com>
  65. Version: 0.0.1
  66. '''
  67. USER_AGENT_PRODUCT="Ansible-gce_inventory_plugin"
  68. USER_AGENT_VERSION="v1"
  69. import sys
  70. import os
  71. import argparse
  72. import ConfigParser
  73. try:
  74. import json
  75. except ImportError:
  76. import simplejson as json
  77. try:
  78. from libcloud.compute.types import Provider
  79. from libcloud.compute.providers import get_driver
  80. _ = Provider.GCE
  81. except:
  82. print("GCE inventory script requires libcloud >= 0.13")
  83. sys.exit(1)
  84. class GceInventory(object):
  85. def __init__(self):
  86. # Read settings and parse CLI arguments
  87. self.parse_cli_args()
  88. self.driver = self.get_gce_driver()
  89. # Just display data for specific host
  90. if self.args.host:
  91. print self.json_format_dict(self.node_to_dict(
  92. self.get_instance(self.args.host)))
  93. sys.exit(0)
  94. # Otherwise, assume user wants all instances grouped
  95. print(self.json_format_dict(self.group_instances()))
  96. sys.exit(0)
  97. def get_gce_driver(self):
  98. """Determine the GCE authorization settings and return a
  99. libcloud driver.
  100. """
  101. gce_ini_default_path = os.path.join(
  102. os.path.dirname(os.path.realpath(__file__)), "gce.ini")
  103. gce_ini_path = os.environ.get('GCE_INI_PATH', gce_ini_default_path)
  104. # Create a ConfigParser.
  105. # This provides empty defaults to each key, so that environment
  106. # variable configuration (as opposed to INI configuration) is able
  107. # to work.
  108. config = ConfigParser.SafeConfigParser(defaults={
  109. 'gce_service_account_email_address': '',
  110. 'gce_service_account_pem_file_path': '',
  111. 'gce_project_id': '',
  112. 'libcloud_secrets': '',
  113. })
  114. if 'gce' not in config.sections():
  115. config.add_section('gce')
  116. config.read(gce_ini_path)
  117. # Attempt to get GCE params from a configuration file, if one
  118. # exists.
  119. secrets_path = config.get('gce', 'libcloud_secrets')
  120. secrets_found = False
  121. try:
  122. import secrets
  123. args = list(getattr(secrets, 'GCE_PARAMS', []))
  124. kwargs = getattr(secrets, 'GCE_KEYWORD_PARAMS', {})
  125. secrets_found = True
  126. except:
  127. pass
  128. if not secrets_found and secrets_path:
  129. if not secrets_path.endswith('secrets.py'):
  130. err = "Must specify libcloud secrets file as "
  131. err += "/absolute/path/to/secrets.py"
  132. print(err)
  133. sys.exit(1)
  134. sys.path.append(os.path.dirname(secrets_path))
  135. try:
  136. import secrets
  137. args = list(getattr(secrets, 'GCE_PARAMS', []))
  138. kwargs = getattr(secrets, 'GCE_KEYWORD_PARAMS', {})
  139. secrets_found = True
  140. except:
  141. pass
  142. if not secrets_found:
  143. args = [
  144. config.get('gce','gce_service_account_email_address'),
  145. config.get('gce','gce_service_account_pem_file_path')
  146. ]
  147. kwargs = {'project': config.get('gce', 'gce_project_id')}
  148. # If the appropriate environment variables are set, they override
  149. # other configuration; process those into our args and kwargs.
  150. args[0] = os.environ.get('GCE_EMAIL', args[0])
  151. args[1] = os.environ.get('GCE_PEM_FILE_PATH', args[1])
  152. kwargs['project'] = os.environ.get('GCE_PROJECT', kwargs['project'])
  153. # Retrieve and return the GCE driver.
  154. gce = get_driver(Provider.GCE)(*args, **kwargs)
  155. gce.connection.user_agent_append(
  156. '%s/%s' % (USER_AGENT_PRODUCT, USER_AGENT_VERSION),
  157. )
  158. return gce
  159. def parse_cli_args(self):
  160. ''' Command line argument processing '''
  161. parser = argparse.ArgumentParser(
  162. description='Produce an Ansible Inventory file based on GCE')
  163. parser.add_argument('--list', action='store_true', default=True,
  164. help='List instances (default: True)')
  165. parser.add_argument('--host', action='store',
  166. help='Get all information about an instance')
  167. self.args = parser.parse_args()
  168. def node_to_dict(self, inst):
  169. md = {}
  170. if inst is None:
  171. return {}
  172. if inst.extra['metadata'].has_key('items'):
  173. for entry in inst.extra['metadata']['items']:
  174. md[entry['key']] = entry['value']
  175. net = inst.extra['networkInterfaces'][0]['network'].split('/')[-1]
  176. return {
  177. 'gce_uuid': inst.uuid,
  178. 'gce_id': inst.id,
  179. 'gce_image': inst.image,
  180. 'gce_machine_type': inst.size,
  181. 'gce_private_ip': inst.private_ips[0],
  182. 'gce_public_ip': inst.public_ips[0],
  183. 'gce_name': inst.name,
  184. 'gce_description': inst.extra['description'],
  185. 'gce_status': inst.extra['status'],
  186. 'gce_zone': inst.extra['zone'].name,
  187. 'gce_tags': inst.extra['tags'],
  188. 'gce_metadata': md,
  189. 'gce_network': net,
  190. # Hosts don't have a public name, so we add an IP
  191. 'ansible_ssh_host': inst.public_ips[0]
  192. }
  193. def get_instance(self, instance_name):
  194. '''Gets details about a specific instance '''
  195. try:
  196. return self.driver.ex_get_node(instance_name)
  197. except Exception, e:
  198. return None
  199. def group_instances(self):
  200. '''Group all instances'''
  201. groups = {}
  202. for node in self.driver.list_nodes():
  203. name = node.name
  204. zone = node.extra['zone'].name
  205. if groups.has_key(zone): groups[zone].append(name)
  206. else: groups[zone] = [name]
  207. tags = node.extra['tags']
  208. for t in tags:
  209. tag = 'tag_%s' % t
  210. if groups.has_key(tag): groups[tag].append(name)
  211. else: groups[tag] = [name]
  212. net = node.extra['networkInterfaces'][0]['network'].split('/')[-1]
  213. net = 'network_%s' % net
  214. if groups.has_key(net): groups[net].append(name)
  215. else: groups[net] = [name]
  216. machine_type = node.size
  217. if groups.has_key(machine_type): groups[machine_type].append(name)
  218. else: groups[machine_type] = [name]
  219. image = node.image and node.image or 'persistent_disk'
  220. if groups.has_key(image): groups[image].append(name)
  221. else: groups[image] = [name]
  222. status = node.extra['status']
  223. stat = 'status_%s' % status.lower()
  224. if groups.has_key(stat): groups[stat].append(name)
  225. else: groups[stat] = [name]
  226. return groups
  227. def json_format_dict(self, data, pretty=False):
  228. ''' Converts a dict to a JSON object and dumps it as a formatted
  229. string '''
  230. if pretty:
  231. return json.dumps(data, sort_keys=True, indent=2)
  232. else:
  233. return json.dumps(data)
  234. # Run the script
  235. GceInventory()