awsutil.py 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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. self.alias_lookup = {}
  25. host_type_aliases = host_type_aliases or {}
  26. self.host_type_aliases = host_type_aliases
  27. self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
  28. self.setup_host_type_alias_lookup()
  29. def setup_host_type_alias_lookup(self):
  30. """Sets up the alias to host-type lookup table."""
  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_clusters(self):
  47. """Searches for cluster tags in the inventory and returns all of the clusters found."""
  48. pattern = re.compile(r'^oo_clusterid_(.*)')
  49. clusters = []
  50. inv = self.get_inventory()
  51. for key in inv.keys():
  52. matched = pattern.match(key)
  53. if matched:
  54. clusters.append(matched.group(1))
  55. clusters.sort()
  56. return clusters
  57. def get_environments(self):
  58. """Searches for env tags in the inventory and returns all of the envs found."""
  59. pattern = re.compile(r'^oo_environment_(.*)')
  60. envs = []
  61. inv = self.get_inventory()
  62. for key in inv.keys():
  63. matched = pattern.match(key)
  64. if matched:
  65. envs.append(matched.group(1))
  66. envs.sort()
  67. return envs
  68. def get_host_types(self):
  69. """Searches for host-type tags in the inventory and returns all host-types found."""
  70. pattern = re.compile(r'^oo_hosttype_(.*)')
  71. host_types = []
  72. inv = self.get_inventory()
  73. for key in inv.keys():
  74. matched = pattern.match(key)
  75. if matched:
  76. host_types.append(matched.group(1))
  77. host_types.sort()
  78. return host_types
  79. def get_sub_host_types(self):
  80. """Searches for sub-host-type tags in the inventory and returns all sub-host-types found."""
  81. pattern = re.compile(r'^oo_subhosttype_(.*)')
  82. sub_host_types = []
  83. inv = self.get_inventory()
  84. for key in inv.keys():
  85. matched = pattern.match(key)
  86. if matched:
  87. sub_host_types.append(matched.group(1))
  88. sub_host_types.sort()
  89. return sub_host_types
  90. def get_security_groups(self):
  91. """Searches for security_groups in the inventory and returns all SGs found."""
  92. pattern = re.compile(r'^security_group_(.*)')
  93. groups = []
  94. inv = self.get_inventory()
  95. for key in inv.keys():
  96. matched = pattern.match(key)
  97. if matched:
  98. groups.append(matched.group(1))
  99. groups.sort()
  100. return groups
  101. def build_host_dict_by_env(self, args=None):
  102. """Searches the inventory for hosts in an env and returns their hostvars."""
  103. args = args or []
  104. inv = self.get_inventory(args)
  105. inst_by_env = {}
  106. for _, host in inv['_meta']['hostvars'].items():
  107. # If you don't have an environment tag, we're going to ignore you
  108. if 'oo_environment' not in host:
  109. continue
  110. if host['oo_environment'] not in inst_by_env:
  111. inst_by_env[host['oo_environment']] = {}
  112. host_id = "%s:%s" % (host['oo_name'], host['oo_id'])
  113. inst_by_env[host['oo_environment']][host_id] = host
  114. return inst_by_env
  115. def print_host_types(self):
  116. """Gets the list of host types and aliases and outputs them in columns."""
  117. host_types = self.get_host_types()
  118. ht_format_str = "%35s"
  119. alias_format_str = "%-20s"
  120. combined_format_str = ht_format_str + " " + alias_format_str
  121. print
  122. print combined_format_str % ('Host Types', 'Aliases')
  123. print combined_format_str % ('----------', '-------')
  124. for host_type in host_types:
  125. aliases = []
  126. if host_type in self.host_type_aliases:
  127. aliases = self.host_type_aliases[host_type]
  128. print combined_format_str % (host_type, ", ".join(aliases))
  129. else:
  130. print ht_format_str % host_type
  131. print
  132. def resolve_host_type(self, host_type):
  133. """Converts a host-type alias into a host-type.
  134. Keyword arguments:
  135. host_type -- The alias or host_type to look up.
  136. Example (depends on aliases defined in config file):
  137. host_type = ex-node
  138. returns: openshift-node
  139. """
  140. if self.alias_lookup.has_key(host_type):
  141. return self.alias_lookup[host_type]
  142. return host_type
  143. @staticmethod
  144. def gen_version_tag(ver):
  145. """Generate the version tag
  146. """
  147. return "oo_version_%s" % ver
  148. @staticmethod
  149. def gen_clusterid_tag(clu):
  150. """Generate the clusterid tag
  151. """
  152. return "oo_clusterid_%s" % clu
  153. @staticmethod
  154. def gen_env_tag(env):
  155. """Generate the environment tag
  156. """
  157. return "oo_environment_%s" % env
  158. def gen_host_type_tag(self, host_type, version):
  159. """Generate the host type tag
  160. """
  161. if version == '2':
  162. host_type = self.resolve_host_type(host_type)
  163. return "oo_hosttype_%s" % host_type
  164. @staticmethod
  165. def gen_sub_host_type_tag(sub_host_type):
  166. """Generate the host type tag
  167. """
  168. return "oo_subhosttype_%s" % sub_host_type
  169. # This function uses all of these params to perform a filters on our host inventory.
  170. # pylint: disable=too-many-arguments
  171. def get_host_list(self, clusters=None, host_type=None, sub_host_type=None, envs=None, version=None, cached=False):
  172. """Get the list of hosts from the inventory using host-type and environment
  173. """
  174. retval = set([])
  175. envs = envs or []
  176. inv = self.get_inventory(cached=cached)
  177. retval.update(inv.get('all_hosts', []))
  178. if clusters:
  179. cluster_hosts = set([])
  180. if len(clusters) > 1:
  181. for cluster in clusters:
  182. clu_tag = AwsUtil.gen_clusterid_tag(cluster)
  183. cluster_hosts.update(inv.get(clu_tag, []))
  184. else:
  185. cluster_hosts.update(inv.get(AwsUtil.gen_clusterid_tag(clusters[0]), []))
  186. retval.intersection_update(cluster_hosts)
  187. if envs:
  188. env_hosts = set([])
  189. if len(envs) > 1:
  190. for env in envs:
  191. env_tag = AwsUtil.gen_env_tag(env)
  192. env_hosts.update(inv.get(env_tag, []))
  193. else:
  194. env_hosts.update(inv.get(AwsUtil.gen_env_tag(envs[0]), []))
  195. retval.intersection_update(env_hosts)
  196. if host_type:
  197. retval.intersection_update(inv.get(self.gen_host_type_tag(host_type, version), []))
  198. if sub_host_type:
  199. retval.intersection_update(inv.get(self.gen_sub_host_type_tag(sub_host_type), []))
  200. if version != 'all':
  201. retval.intersection_update(inv.get(AwsUtil.gen_version_tag(version), []))
  202. return list(retval)
  203. def convert_to_ip(self, hosts, cached=False):
  204. """convert a list of host names to ip addresses"""
  205. inv = self.get_inventory(cached=cached)
  206. ips = []
  207. for host in hosts:
  208. ips.append(inv['_meta']['hostvars'][host]['oo_public_ip'])
  209. return ips