awsutil.py 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. # vim: expandtab:tabstop=4:shiftwidth=4
  2. """This module comprises Aws specific utility functions."""
  3. import os
  4. import re
  5. # Buildbot does not have multi_inventory installed
  6. #pylint: disable=no-name-in-module
  7. from openshift_ansible import multi_inventory
  8. class ArgumentError(Exception):
  9. """This class is raised when improper arguments are passed."""
  10. def __init__(self, message):
  11. """Initialize an ArgumentError.
  12. Keyword arguments:
  13. message -- the exact error message being raised
  14. """
  15. super(ArgumentError, self).__init__()
  16. self.message = message
  17. class AwsUtil(object):
  18. """This class contains the AWS utility functions."""
  19. def __init__(self, host_type_aliases=None):
  20. """Initialize the AWS utility class.
  21. Keyword arguments:
  22. host_type_aliases -- a list of aliases to common host-types (e.g. ex-node)
  23. """
  24. host_type_aliases = host_type_aliases or {}
  25. self.host_type_aliases = host_type_aliases
  26. self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  27. self.setup_host_type_alias_lookup()
  28. def setup_host_type_alias_lookup(self):
  29. """Sets up the alias to host-type lookup table."""
  30. self.alias_lookup = {}
  31. for key, values in self.host_type_aliases.iteritems():
  32. for value in values:
  33. self.alias_lookup[value] = key
  34. @staticmethod
  35. def get_inventory(args=None, cached=False):
  36. """Calls the inventory script and returns a dictionary containing the inventory."
  37. Keyword arguments:
  38. args -- optional arguments to pass to the inventory script
  39. """
  40. minv = multi_inventory.MultiInventory(args)
  41. if cached:
  42. minv.get_inventory_from_cache()
  43. else:
  44. minv.run()
  45. return minv.result
  46. def get_environments(self):
  47. """Searches for env tags in the inventory and returns all of the envs found."""
  48. pattern = re.compile(r'^tag_environment_(.*)')
  49. envs = []
  50. inv = self.get_inventory()
  51. for key in inv.keys():
  52. matched = pattern.match(key)
  53. if matched:
  54. envs.append(matched.group(1))
  55. envs.sort()
  56. return envs
  57. def get_host_types(self):
  58. """Searches for host-type tags in the inventory and returns all host-types found."""
  59. pattern = re.compile(r'^tag_host-type_(.*)')
  60. host_types = []
  61. inv = self.get_inventory()
  62. for key in inv.keys():
  63. matched = pattern.match(key)
  64. if matched:
  65. host_types.append(matched.group(1))
  66. host_types.sort()
  67. return host_types
  68. def get_security_groups(self):
  69. """Searches for security_groups in the inventory and returns all SGs found."""
  70. pattern = re.compile(r'^security_group_(.*)')
  71. groups = []
  72. inv = self.get_inventory()
  73. for key in inv.keys():
  74. matched = pattern.match(key)
  75. if matched:
  76. groups.append(matched.group(1))
  77. groups.sort()
  78. return groups
  79. def build_host_dict_by_env(self, args=None):
  80. """Searches the inventory for hosts in an env and returns their hostvars."""
  81. args = args or []
  82. inv = self.get_inventory(args)
  83. inst_by_env = {}
  84. for _, host in inv['_meta']['hostvars'].items():
  85. # If you don't have an environment tag, we're going to ignore you
  86. if 'ec2_tag_environment' not in host:
  87. continue
  88. if host['ec2_tag_environment'] not in inst_by_env:
  89. inst_by_env[host['ec2_tag_environment']] = {}
  90. host_id = "%s:%s" % (host['ec2_tag_Name'], host['ec2_id'])
  91. inst_by_env[host['ec2_tag_environment']][host_id] = host
  92. return inst_by_env
  93. def print_host_types(self):
  94. """Gets the list of host types and aliases and outputs them in columns."""
  95. host_types = self.get_host_types()
  96. ht_format_str = "%35s"
  97. alias_format_str = "%-20s"
  98. combined_format_str = ht_format_str + " " + alias_format_str
  99. print
  100. print combined_format_str % ('Host Types', 'Aliases')
  101. print combined_format_str % ('----------', '-------')
  102. for host_type in host_types:
  103. aliases = []
  104. if host_type in self.host_type_aliases:
  105. aliases = self.host_type_aliases[host_type]
  106. print combined_format_str % (host_type, ", ".join(aliases))
  107. else:
  108. print ht_format_str % host_type
  109. print
  110. def resolve_host_type(self, host_type):
  111. """Converts a host-type alias into a host-type.
  112. Keyword arguments:
  113. host_type -- The alias or host_type to look up.
  114. Example (depends on aliases defined in config file):
  115. host_type = ex-node
  116. returns: openshift-node
  117. """
  118. if self.alias_lookup.has_key(host_type):
  119. return self.alias_lookup[host_type]
  120. return host_type
  121. @staticmethod
  122. def gen_env_tag(env):
  123. """Generate the environment tag
  124. """
  125. return "tag_environment_%s" % env
  126. def gen_host_type_tag(self, host_type):
  127. """Generate the host type tag
  128. """
  129. host_type = self.resolve_host_type(host_type)
  130. return "tag_host-type_%s" % host_type
  131. def get_host_list(self, host_type=None, envs=None, version=None, cached=False):
  132. """Get the list of hosts from the inventory using host-type and environment
  133. """
  134. retval = set([])
  135. envs = envs or []
  136. inv = self.get_inventory(cached=cached)
  137. # We prefer to deal with a list of environments
  138. if issubclass(type(envs), basestring):
  139. if envs == 'all':
  140. envs = self.get_environments()
  141. else:
  142. envs = [envs]
  143. if host_type and envs:
  144. # Both host type and environment were specified
  145. for env in envs:
  146. retval.update(inv.get('tag_environment_%s' % env, []))
  147. retval.intersection_update(inv.get(self.gen_host_type_tag(host_type), []))
  148. elif envs and not host_type:
  149. # Just environment was specified
  150. for env in envs:
  151. env_tag = AwsUtil.gen_env_tag(env)
  152. if env_tag in inv.keys():
  153. retval.update(inv.get(env_tag, []))
  154. elif host_type and not envs:
  155. # Just host-type was specified
  156. host_type_tag = self.gen_host_type_tag(host_type)
  157. if host_type_tag in inv.keys():
  158. retval.update(inv.get(host_type_tag, []))
  159. # If version is specified then return only hosts in that version
  160. if version:
  161. retval.intersection_update(inv.get('oo_version_%s' % version, []))
  162. return retval