oo_filters.py 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. # pylint: disable=no-name-in-module, import-error, wrong-import-order, ungrouped-imports
  5. """
  6. Custom filters for use in openshift-ansible
  7. """
  8. import os
  9. import pdb
  10. import pkg_resources
  11. import re
  12. import json
  13. import yaml
  14. from ansible import errors
  15. from collections import Mapping
  16. from distutils.util import strtobool
  17. from distutils.version import LooseVersion
  18. from operator import itemgetter
  19. from ansible.parsing.yaml.dumper import AnsibleDumper
  20. from urlparse import urlparse
  21. HAS_OPENSSL = False
  22. try:
  23. import OpenSSL.crypto
  24. HAS_OPENSSL = True
  25. except ImportError:
  26. pass
  27. try:
  28. # ansible-2.2
  29. # ansible.utils.unicode.to_unicode is deprecated in ansible-2.2,
  30. # ansible.module_utils._text.to_text should be used instead.
  31. from ansible.module_utils._text import to_text
  32. except ImportError:
  33. # ansible-2.1
  34. from ansible.utils.unicode import to_unicode as to_text
  35. # Disabling too-many-public-methods, since filter methods are necessarily
  36. # public
  37. # pylint: disable=too-many-public-methods
  38. class FilterModule(object):
  39. """ Custom ansible filters """
  40. @staticmethod
  41. def oo_pdb(arg):
  42. """ This pops you into a pdb instance where arg is the data passed in
  43. from the filter.
  44. Ex: "{{ hostvars | oo_pdb }}"
  45. """
  46. pdb.set_trace()
  47. return arg
  48. @staticmethod
  49. def get_attr(data, attribute=None):
  50. """ This looks up dictionary attributes of the form a.b.c and returns
  51. the value.
  52. If the key isn't present, None is returned.
  53. Ex: data = {'a': {'b': {'c': 5}}}
  54. attribute = "a.b.c"
  55. returns 5
  56. """
  57. if not attribute:
  58. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  59. ptr = data
  60. for attr in attribute.split('.'):
  61. if attr in ptr:
  62. ptr = ptr[attr]
  63. else:
  64. ptr = None
  65. break
  66. return ptr
  67. @staticmethod
  68. def oo_flatten(data):
  69. """ This filter plugin will flatten a list of lists
  70. """
  71. if not isinstance(data, list):
  72. raise errors.AnsibleFilterError("|failed expects to flatten a List")
  73. return [item for sublist in data for item in sublist]
  74. @staticmethod
  75. def oo_merge_dicts(first_dict, second_dict):
  76. """ Merge two dictionaries where second_dict values take precedence.
  77. Ex: first_dict={'a': 1, 'b': 2}
  78. second_dict={'b': 3, 'c': 4}
  79. returns {'a': 1, 'b': 3, 'c': 4}
  80. """
  81. if not isinstance(first_dict, dict) or not isinstance(second_dict, dict):
  82. raise errors.AnsibleFilterError("|failed expects to merge two dicts")
  83. merged = first_dict.copy()
  84. merged.update(second_dict)
  85. return merged
  86. @staticmethod
  87. def oo_merge_hostvars(hostvars, variables, inventory_hostname):
  88. """ Merge host and play variables.
  89. When ansible version is greater than or equal to 2.0.0,
  90. merge hostvars[inventory_hostname] with variables (ansible vars)
  91. otherwise merge hostvars with hostvars['inventory_hostname'].
  92. Ex: hostvars={'master1.example.com': {'openshift_variable': '3'},
  93. 'openshift_other_variable': '7'}
  94. variables={'openshift_other_variable': '6'}
  95. inventory_hostname='master1.example.com'
  96. returns {'openshift_variable': '3', 'openshift_other_variable': '7'}
  97. hostvars=<ansible.vars.hostvars.HostVars object> (Mapping)
  98. variables={'openshift_other_variable': '6'}
  99. inventory_hostname='master1.example.com'
  100. returns {'openshift_variable': '3', 'openshift_other_variable': '6'}
  101. """
  102. if not isinstance(hostvars, Mapping):
  103. raise errors.AnsibleFilterError("|failed expects hostvars is dictionary or object")
  104. if not isinstance(variables, dict):
  105. raise errors.AnsibleFilterError("|failed expects variables is a dictionary")
  106. if not isinstance(inventory_hostname, basestring):
  107. raise errors.AnsibleFilterError("|failed expects inventory_hostname is a string")
  108. # pylint: disable=no-member
  109. ansible_version = pkg_resources.get_distribution("ansible").version
  110. merged_hostvars = {}
  111. if LooseVersion(ansible_version) >= LooseVersion('2.0.0'):
  112. merged_hostvars = FilterModule.oo_merge_dicts(hostvars[inventory_hostname],
  113. variables)
  114. else:
  115. merged_hostvars = FilterModule.oo_merge_dicts(hostvars[inventory_hostname],
  116. hostvars)
  117. return merged_hostvars
  118. @staticmethod
  119. def oo_collect(data, attribute=None, filters=None):
  120. """ This takes a list of dict and collects all attributes specified into a
  121. list. If filter is specified then we will include all items that
  122. match _ALL_ of filters. If a dict entry is missing the key in a
  123. filter it will be excluded from the match.
  124. Ex: data = [ {'a':1, 'b':5, 'z': 'z'}, # True, return
  125. {'a':2, 'z': 'z'}, # True, return
  126. {'a':3, 'z': 'z'}, # True, return
  127. {'a':4, 'z': 'b'}, # FAILED, obj['z'] != obj['z']
  128. ]
  129. attribute = 'a'
  130. filters = {'z': 'z'}
  131. returns [1, 2, 3]
  132. """
  133. if not isinstance(data, list):
  134. raise errors.AnsibleFilterError("|failed expects to filter on a List")
  135. if not attribute:
  136. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  137. if filters is not None:
  138. if not isinstance(filters, dict):
  139. raise errors.AnsibleFilterError("|failed expects filter to be a"
  140. " dict")
  141. retval = [FilterModule.get_attr(d, attribute) for d in data if (
  142. all([d.get(key, None) == filters[key] for key in filters]))]
  143. else:
  144. retval = [FilterModule.get_attr(d, attribute) for d in data]
  145. retval = [val for val in retval if val is not None]
  146. return retval
  147. @staticmethod
  148. def oo_select_keys_from_list(data, keys):
  149. """ This returns a list, which contains the value portions for the keys
  150. Ex: data = { 'a':1, 'b':2, 'c':3 }
  151. keys = ['a', 'c']
  152. returns [1, 3]
  153. """
  154. if not isinstance(data, list):
  155. raise errors.AnsibleFilterError("|failed expects to filter on a list")
  156. if not isinstance(keys, list):
  157. raise errors.AnsibleFilterError("|failed expects first param is a list")
  158. # Gather up the values for the list of keys passed in
  159. retval = [FilterModule.oo_select_keys(item, keys) for item in data]
  160. return FilterModule.oo_flatten(retval)
  161. @staticmethod
  162. def oo_select_keys(data, keys):
  163. """ This returns a list, which contains the value portions for the keys
  164. Ex: data = { 'a':1, 'b':2, 'c':3 }
  165. keys = ['a', 'c']
  166. returns [1, 3]
  167. """
  168. if not isinstance(data, Mapping):
  169. raise errors.AnsibleFilterError("|failed expects to filter on a dict or object")
  170. if not isinstance(keys, list):
  171. raise errors.AnsibleFilterError("|failed expects first param is a list")
  172. # Gather up the values for the list of keys passed in
  173. retval = [data[key] for key in keys if key in data]
  174. return retval
  175. @staticmethod
  176. def oo_prepend_strings_in_list(data, prepend):
  177. """ This takes a list of strings and prepends a string to each item in the
  178. list
  179. Ex: data = ['cart', 'tree']
  180. prepend = 'apple-'
  181. returns ['apple-cart', 'apple-tree']
  182. """
  183. if not isinstance(data, list):
  184. raise errors.AnsibleFilterError("|failed expects first param is a list")
  185. if not all(isinstance(x, basestring) for x in data):
  186. raise errors.AnsibleFilterError("|failed expects first param is a list"
  187. " of strings")
  188. retval = [prepend + s for s in data]
  189. return retval
  190. @staticmethod
  191. def oo_combine_key_value(data, joiner='='):
  192. """Take a list of dict in the form of { 'key': 'value'} and
  193. arrange them as a list of strings ['key=value']
  194. """
  195. if not isinstance(data, list):
  196. raise errors.AnsibleFilterError("|failed expects first param is a list")
  197. rval = []
  198. for item in data:
  199. rval.append("%s%s%s" % (item['key'], joiner, item['value']))
  200. return rval
  201. @staticmethod
  202. def oo_combine_dict(data, in_joiner='=', out_joiner=' '):
  203. """Take a dict in the form of { 'key': 'value', 'key': 'value' } and
  204. arrange them as a string 'key=value key=value'
  205. """
  206. if not isinstance(data, dict):
  207. # pylint: disable=line-too-long
  208. raise errors.AnsibleFilterError("|failed expects first param is a dict [oo_combine_dict]. Got %s. Type: %s" % (str(data), str(type(data))))
  209. return out_joiner.join([in_joiner.join([k, str(v)]) for k, v in data.items()])
  210. @staticmethod
  211. def oo_ami_selector(data, image_name):
  212. """ This takes a list of amis and an image name and attempts to return
  213. the latest ami.
  214. """
  215. if not isinstance(data, list):
  216. raise errors.AnsibleFilterError("|failed expects first param is a list")
  217. if not data:
  218. return None
  219. else:
  220. if image_name is None or not image_name.endswith('_*'):
  221. ami = sorted(data, key=itemgetter('name'), reverse=True)[0]
  222. return ami['ami_id']
  223. else:
  224. ami_info = [(ami, ami['name'].split('_')[-1]) for ami in data]
  225. ami = sorted(ami_info, key=itemgetter(1), reverse=True)[0][0]
  226. return ami['ami_id']
  227. @staticmethod
  228. def oo_ec2_volume_definition(data, host_type, docker_ephemeral=False):
  229. """ This takes a dictionary of volume definitions and returns a valid ec2
  230. volume definition based on the host_type and the values in the
  231. dictionary.
  232. The dictionary should look similar to this:
  233. { 'master':
  234. { 'root':
  235. { 'volume_size': 10, 'device_type': 'gp2',
  236. 'iops': 500
  237. },
  238. 'docker':
  239. { 'volume_size': 40, 'device_type': 'gp2',
  240. 'iops': 500, 'ephemeral': 'true'
  241. }
  242. },
  243. 'node':
  244. { 'root':
  245. { 'volume_size': 10, 'device_type': 'io1',
  246. 'iops': 1000
  247. },
  248. 'docker':
  249. { 'volume_size': 40, 'device_type': 'gp2',
  250. 'iops': 500, 'ephemeral': 'true'
  251. }
  252. }
  253. }
  254. """
  255. if not isinstance(data, dict):
  256. # pylint: disable=line-too-long
  257. raise errors.AnsibleFilterError("|failed expects first param is a dict [oo_ec2_volume_def]. Got %s. Type: %s" % (str(data), str(type(data))))
  258. if host_type not in ['master', 'node', 'etcd']:
  259. raise errors.AnsibleFilterError("|failed expects etcd, master or node"
  260. " as the host type")
  261. root_vol = data[host_type]['root']
  262. root_vol['device_name'] = '/dev/sda1'
  263. root_vol['delete_on_termination'] = True
  264. if root_vol['device_type'] != 'io1':
  265. root_vol.pop('iops', None)
  266. if host_type in ['master', 'node'] and 'docker' in data[host_type]:
  267. docker_vol = data[host_type]['docker']
  268. docker_vol['device_name'] = '/dev/xvdb'
  269. docker_vol['delete_on_termination'] = True
  270. if docker_vol['device_type'] != 'io1':
  271. docker_vol.pop('iops', None)
  272. if docker_ephemeral:
  273. docker_vol.pop('device_type', None)
  274. docker_vol.pop('delete_on_termination', None)
  275. docker_vol['ephemeral'] = 'ephemeral0'
  276. return [root_vol, docker_vol]
  277. elif host_type == 'etcd' and 'etcd' in data[host_type]:
  278. etcd_vol = data[host_type]['etcd']
  279. etcd_vol['device_name'] = '/dev/xvdb'
  280. etcd_vol['delete_on_termination'] = True
  281. if etcd_vol['device_type'] != 'io1':
  282. etcd_vol.pop('iops', None)
  283. return [root_vol, etcd_vol]
  284. return [root_vol]
  285. @staticmethod
  286. def oo_split(string, separator=','):
  287. """ This splits the input string into a list. If the input string is
  288. already a list we will return it as is.
  289. """
  290. if isinstance(string, list):
  291. return string
  292. return string.split(separator)
  293. @staticmethod
  294. def oo_haproxy_backend_masters(hosts, port):
  295. """ This takes an array of dicts and returns an array of dicts
  296. to be used as a backend for the haproxy role
  297. """
  298. servers = []
  299. for idx, host_info in enumerate(hosts):
  300. server = dict(name="master%s" % idx)
  301. server_ip = host_info['openshift']['common']['ip']
  302. server['address'] = "%s:%s" % (server_ip, port)
  303. server['opts'] = 'check'
  304. servers.append(server)
  305. return servers
  306. @staticmethod
  307. def oo_filter_list(data, filter_attr=None):
  308. """ This returns a list, which contains all items where filter_attr
  309. evaluates to true
  310. Ex: data = [ { a: 1, b: True },
  311. { a: 3, b: False },
  312. { a: 5, b: True } ]
  313. filter_attr = 'b'
  314. returns [ { a: 1, b: True },
  315. { a: 5, b: True } ]
  316. """
  317. if not isinstance(data, list):
  318. raise errors.AnsibleFilterError("|failed expects to filter on a list")
  319. if not isinstance(filter_attr, basestring):
  320. raise errors.AnsibleFilterError("|failed expects filter_attr is a str or unicode")
  321. # Gather up the values for the list of keys passed in
  322. return [x for x in data if filter_attr in x and x[filter_attr]]
  323. @staticmethod
  324. def oo_nodes_with_label(nodes, label, value=None):
  325. """ Filters a list of nodes by label and value (if provided)
  326. It handles labels that are in the following variables by priority:
  327. openshift_node_labels, cli_openshift_node_labels, openshift['node']['labels']
  328. Examples:
  329. data = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  330. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}},
  331. 'c': {'openshift_node_labels': {'size': 'S'}}]
  332. label = 'color'
  333. returns = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  334. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}}]
  335. data = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  336. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}},
  337. 'c': {'openshift_node_labels': {'size': 'S'}}]
  338. label = 'color'
  339. value = 'green'
  340. returns = ['b': {'labels': {'color': 'green', 'size': 'L'}}]
  341. Args:
  342. nodes (list[dict]): list of node to node variables
  343. label (str): label to filter `nodes` by
  344. value (Optional[str]): value of `label` to filter by Defaults
  345. to None.
  346. Returns:
  347. list[dict]: nodes filtered by label and value (if provided)
  348. """
  349. if not isinstance(nodes, list):
  350. raise errors.AnsibleFilterError("failed expects to filter on a list")
  351. if not isinstance(label, basestring):
  352. raise errors.AnsibleFilterError("failed expects label to be a string")
  353. if value is not None and not isinstance(value, basestring):
  354. raise errors.AnsibleFilterError("failed expects value to be a string")
  355. def label_filter(node):
  356. """ filter function for testing if node should be returned """
  357. if not isinstance(node, dict):
  358. raise errors.AnsibleFilterError("failed expects to filter on a list of dicts")
  359. if 'openshift_node_labels' in node:
  360. labels = node['openshift_node_labels']
  361. elif 'cli_openshift_node_labels' in node:
  362. labels = node['cli_openshift_node_labels']
  363. elif 'openshift' in node and 'node' in node['openshift'] and 'labels' in node['openshift']['node']:
  364. labels = node['openshift']['node']['labels']
  365. else:
  366. return False
  367. if isinstance(labels, basestring):
  368. labels = yaml.safe_load(labels)
  369. if not isinstance(labels, dict):
  370. raise errors.AnsibleFilterError(
  371. "failed expected node labels to be a dict or serializable to a dict"
  372. )
  373. return label in labels and (value is None or labels[label] == value)
  374. return [n for n in nodes if label_filter(n)]
  375. @staticmethod
  376. def oo_parse_heat_stack_outputs(data):
  377. """ Formats the HEAT stack output into a usable form
  378. The goal is to transform something like this:
  379. +---------------+-------------------------------------------------+
  380. | Property | Value |
  381. +---------------+-------------------------------------------------+
  382. | capabilities | [] | |
  383. | creation_time | 2015-06-26T12:26:26Z | |
  384. | description | OpenShift cluster | |
  385. | … | … |
  386. | outputs | [ |
  387. | | { |
  388. | | "output_value": "value_A" |
  389. | | "description": "This is the value of Key_A" |
  390. | | "output_key": "Key_A" |
  391. | | }, |
  392. | | { |
  393. | | "output_value": [ |
  394. | | "value_B1", |
  395. | | "value_B2" |
  396. | | ], |
  397. | | "description": "This is the value of Key_B" |
  398. | | "output_key": "Key_B" |
  399. | | }, |
  400. | | ] |
  401. | parameters | { |
  402. | … | … |
  403. +---------------+-------------------------------------------------+
  404. into something like this:
  405. {
  406. "Key_A": "value_A",
  407. "Key_B": [
  408. "value_B1",
  409. "value_B2"
  410. ]
  411. }
  412. """
  413. # Extract the “outputs” JSON snippet from the pretty-printed array
  414. in_outputs = False
  415. outputs = ''
  416. line_regex = re.compile(r'\|\s*(.*?)\s*\|\s*(.*?)\s*\|')
  417. for line in data['stdout_lines']:
  418. match = line_regex.match(line)
  419. if match:
  420. if match.group(1) == 'outputs':
  421. in_outputs = True
  422. elif match.group(1) != '':
  423. in_outputs = False
  424. if in_outputs:
  425. outputs += match.group(2)
  426. outputs = json.loads(outputs)
  427. # Revamp the “outputs” to put it in the form of a “Key: value” map
  428. revamped_outputs = {}
  429. for output in outputs:
  430. revamped_outputs[output['output_key']] = output['output_value']
  431. return revamped_outputs
  432. @staticmethod
  433. # pylint: disable=too-many-branches
  434. def oo_parse_named_certificates(certificates, named_certs_dir, internal_hostnames):
  435. """ Parses names from list of certificate hashes.
  436. Ex: certificates = [{ "certfile": "/root/custom1.crt",
  437. "keyfile": "/root/custom1.key",
  438. "cafile": "/root/custom-ca1.crt" },
  439. { "certfile": "custom2.crt",
  440. "keyfile": "custom2.key",
  441. "cafile": "custom-ca2.crt" }]
  442. returns [{ "certfile": "/etc/origin/master/named_certificates/custom1.crt",
  443. "keyfile": "/etc/origin/master/named_certificates/custom1.key",
  444. "cafile": "/etc/origin/master/named_certificates/custom-ca1.crt",
  445. "names": [ "public-master-host.com",
  446. "other-master-host.com" ] },
  447. { "certfile": "/etc/origin/master/named_certificates/custom2.crt",
  448. "keyfile": "/etc/origin/master/named_certificates/custom2.key",
  449. "cafile": "/etc/origin/master/named_certificates/custom-ca-2.crt",
  450. "names": [ "some-hostname.com" ] }]
  451. """
  452. if not isinstance(named_certs_dir, basestring):
  453. raise errors.AnsibleFilterError("|failed expects named_certs_dir is str or unicode")
  454. if not isinstance(internal_hostnames, list):
  455. raise errors.AnsibleFilterError("|failed expects internal_hostnames is list")
  456. if not HAS_OPENSSL:
  457. raise errors.AnsibleFilterError("|missing OpenSSL python bindings")
  458. for certificate in certificates:
  459. if 'names' in certificate.keys():
  460. continue
  461. else:
  462. certificate['names'] = []
  463. if not os.path.isfile(certificate['certfile']) or not os.path.isfile(certificate['keyfile']):
  464. raise errors.AnsibleFilterError("|certificate and/or key does not exist '%s', '%s'" %
  465. (certificate['certfile'], certificate['keyfile']))
  466. try:
  467. st_cert = open(certificate['certfile'], 'rt').read()
  468. cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, st_cert)
  469. certificate['names'].append(str(cert.get_subject().commonName.decode()))
  470. for i in range(cert.get_extension_count()):
  471. if cert.get_extension(i).get_short_name() == 'subjectAltName':
  472. for name in str(cert.get_extension(i)).replace('DNS:', '').split(', '):
  473. certificate['names'].append(name)
  474. except:
  475. raise errors.AnsibleFilterError(("|failed to parse certificate '%s', " % certificate['certfile'] +
  476. "please specify certificate names in host inventory"))
  477. certificate['names'] = list(set(certificate['names']))
  478. if 'cafile' not in certificate:
  479. certificate['names'] = [name for name in certificate['names'] if name not in internal_hostnames]
  480. if not certificate['names']:
  481. raise errors.AnsibleFilterError(("|failed to parse certificate '%s' or " % certificate['certfile'] +
  482. "detected a collision with internal hostname, please specify " +
  483. "certificate names in host inventory"))
  484. for certificate in certificates:
  485. # Update paths for configuration
  486. certificate['certfile'] = os.path.join(named_certs_dir, os.path.basename(certificate['certfile']))
  487. certificate['keyfile'] = os.path.join(named_certs_dir, os.path.basename(certificate['keyfile']))
  488. if 'cafile' in certificate:
  489. certificate['cafile'] = os.path.join(named_certs_dir, os.path.basename(certificate['cafile']))
  490. return certificates
  491. @staticmethod
  492. def oo_pretty_print_cluster(data, prefix='tag_'):
  493. """ Read a subset of hostvars and build a summary of the cluster
  494. in the following layout:
  495. "c_id": {
  496. "master": {
  497. "default": [
  498. { "name": "c_id-master-12345", "public IP": "172.16.0.1", "private IP": "192.168.0.1" }
  499. ]
  500. "node": {
  501. "infra": [
  502. { "name": "c_id-node-infra-23456", "public IP": "172.16.0.2", "private IP": "192.168.0.2" }
  503. ],
  504. "compute": [
  505. { "name": "c_id-node-compute-23456", "public IP": "172.16.0.3", "private IP": "192.168.0.3" },
  506. ...
  507. ]
  508. }
  509. """
  510. def _get_tag_value(tags, key):
  511. """ Extract values of a map implemented as a set.
  512. Ex: tags = { 'tag_foo_value1', 'tag_bar_value2', 'tag_baz_value3' }
  513. key = 'bar'
  514. returns 'value2'
  515. """
  516. for tag in tags:
  517. if tag[:len(prefix) + len(key)] == prefix + key:
  518. return tag[len(prefix) + len(key) + 1:]
  519. raise KeyError(key)
  520. def _add_host(clusters,
  521. clusterid,
  522. host_type,
  523. sub_host_type,
  524. host):
  525. """ Add a new host in the clusters data structure """
  526. if clusterid not in clusters:
  527. clusters[clusterid] = {}
  528. if host_type not in clusters[clusterid]:
  529. clusters[clusterid][host_type] = {}
  530. if sub_host_type not in clusters[clusterid][host_type]:
  531. clusters[clusterid][host_type][sub_host_type] = []
  532. clusters[clusterid][host_type][sub_host_type].append(host)
  533. clusters = {}
  534. for host in data:
  535. try:
  536. _add_host(clusters=clusters,
  537. clusterid=_get_tag_value(host['group_names'], 'clusterid'),
  538. host_type=_get_tag_value(host['group_names'], 'host-type'),
  539. sub_host_type=_get_tag_value(host['group_names'], 'sub-host-type'),
  540. host={'name': host['inventory_hostname'],
  541. 'public IP': host['oo_public_ipv4'],
  542. 'private IP': host['oo_private_ipv4']})
  543. except KeyError:
  544. pass
  545. return clusters
  546. @staticmethod
  547. def oo_generate_secret(num_bytes):
  548. """ generate a session secret """
  549. if not isinstance(num_bytes, int):
  550. raise errors.AnsibleFilterError("|failed expects num_bytes is int")
  551. secret = os.urandom(num_bytes)
  552. return secret.encode('base-64').strip()
  553. @staticmethod
  554. def to_padded_yaml(data, level=0, indent=2, **kw):
  555. """ returns a yaml snippet padded to match the indent level you specify """
  556. if data in [None, ""]:
  557. return ""
  558. try:
  559. transformed = yaml.dump(data, indent=indent, allow_unicode=True,
  560. default_flow_style=False,
  561. Dumper=AnsibleDumper, **kw)
  562. padded = "\n".join([" " * level * indent + line for line in transformed.splitlines()])
  563. return to_text("\n{0}".format(padded))
  564. except Exception as my_e:
  565. raise errors.AnsibleFilterError('Failed to convert: %s' % my_e)
  566. @staticmethod
  567. def oo_openshift_env(hostvars):
  568. ''' Return facts which begin with "openshift_" and translate
  569. legacy facts to their openshift_env counterparts.
  570. Ex: hostvars = {'openshift_fact': 42,
  571. 'theyre_taking_the_hobbits_to': 'isengard'}
  572. returns = {'openshift_fact': 42}
  573. '''
  574. if not issubclass(type(hostvars), dict):
  575. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  576. facts = {}
  577. regex = re.compile('^openshift_.*')
  578. for key in hostvars:
  579. if regex.match(key):
  580. facts[key] = hostvars[key]
  581. migrations = {'openshift_router_selector': 'openshift_hosted_router_selector',
  582. 'openshift_registry_selector': 'openshift_hosted_registry_selector'}
  583. for old_fact, new_fact in migrations.iteritems():
  584. if old_fact in facts and new_fact not in facts:
  585. facts[new_fact] = facts[old_fact]
  586. return facts
  587. @staticmethod
  588. # pylint: disable=too-many-branches, too-many-nested-blocks
  589. def oo_persistent_volumes(hostvars, groups, persistent_volumes=None):
  590. """ Generate list of persistent volumes based on oo_openshift_env
  591. storage options set in host variables.
  592. """
  593. if not issubclass(type(hostvars), dict):
  594. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  595. if not issubclass(type(groups), dict):
  596. raise errors.AnsibleFilterError("|failed expects groups is a dict")
  597. if persistent_volumes is not None and not issubclass(type(persistent_volumes), list):
  598. raise errors.AnsibleFilterError("|failed expects persistent_volumes is a list")
  599. if persistent_volumes is None:
  600. persistent_volumes = []
  601. if 'hosted' in hostvars['openshift']:
  602. for component in hostvars['openshift']['hosted']:
  603. if 'storage' in hostvars['openshift']['hosted'][component]:
  604. params = hostvars['openshift']['hosted'][component]['storage']
  605. kind = params['kind']
  606. create_pv = params['create_pv']
  607. if kind is not None and create_pv:
  608. if kind == 'nfs':
  609. host = params['host']
  610. if host is None:
  611. if 'oo_nfs_to_config' in groups and len(groups['oo_nfs_to_config']) > 0:
  612. host = groups['oo_nfs_to_config'][0]
  613. else:
  614. raise errors.AnsibleFilterError("|failed no storage host detected")
  615. directory = params['nfs']['directory']
  616. volume = params['volume']['name']
  617. path = directory + '/' + volume
  618. size = params['volume']['size']
  619. access_modes = params['access_modes']
  620. persistent_volume = dict(
  621. name="{0}-volume".format(volume),
  622. capacity=size,
  623. access_modes=access_modes,
  624. storage=dict(
  625. nfs=dict(
  626. server=host,
  627. path=path)))
  628. persistent_volumes.append(persistent_volume)
  629. elif kind == 'openstack':
  630. volume = params['volume']['name']
  631. size = params['volume']['size']
  632. access_modes = params['access_modes']
  633. filesystem = params['openstack']['filesystem']
  634. volume_id = params['openstack']['volumeID']
  635. persistent_volume = dict(
  636. name="{0}-volume".format(volume),
  637. capacity=size,
  638. access_modes=access_modes,
  639. storage=dict(
  640. cinder=dict(
  641. fsType=filesystem,
  642. volumeID=volume_id)))
  643. persistent_volumes.append(persistent_volume)
  644. elif not (kind == 'object' or kind == 'dynamic'):
  645. msg = "|failed invalid storage kind '{0}' for component '{1}'".format(
  646. kind,
  647. component)
  648. raise errors.AnsibleFilterError(msg)
  649. return persistent_volumes
  650. @staticmethod
  651. def oo_persistent_volume_claims(hostvars, persistent_volume_claims=None):
  652. """ Generate list of persistent volume claims based on oo_openshift_env
  653. storage options set in host variables.
  654. """
  655. if not issubclass(type(hostvars), dict):
  656. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  657. if persistent_volume_claims is not None and not issubclass(type(persistent_volume_claims), list):
  658. raise errors.AnsibleFilterError("|failed expects persistent_volume_claims is a list")
  659. if persistent_volume_claims is None:
  660. persistent_volume_claims = []
  661. if 'hosted' in hostvars['openshift']:
  662. for component in hostvars['openshift']['hosted']:
  663. if 'storage' in hostvars['openshift']['hosted'][component]:
  664. params = hostvars['openshift']['hosted'][component]['storage']
  665. kind = params['kind']
  666. create_pv = params['create_pv']
  667. create_pvc = params['create_pvc']
  668. if kind not in [None, 'object'] and create_pv and create_pvc:
  669. volume = params['volume']['name']
  670. size = params['volume']['size']
  671. access_modes = params['access_modes']
  672. persistent_volume_claim = dict(
  673. name="{0}-claim".format(volume),
  674. capacity=size,
  675. access_modes=access_modes)
  676. persistent_volume_claims.append(persistent_volume_claim)
  677. return persistent_volume_claims
  678. @staticmethod
  679. def oo_31_rpm_rename_conversion(rpms, openshift_version=None):
  680. """ Filters a list of 3.0 rpms and return the corresponding 3.1 rpms
  681. names with proper version (if provided)
  682. If 3.1 rpms are passed in they will only be augmented with the
  683. correct version. This is important for hosts that are running both
  684. Masters and Nodes.
  685. """
  686. if not isinstance(rpms, list):
  687. raise errors.AnsibleFilterError("failed expects to filter on a list")
  688. if openshift_version is not None and not isinstance(openshift_version, basestring):
  689. raise errors.AnsibleFilterError("failed expects openshift_version to be a string")
  690. rpms_31 = []
  691. for rpm in rpms:
  692. if 'atomic' not in rpm:
  693. rpm = rpm.replace("openshift", "atomic-openshift")
  694. if openshift_version:
  695. rpm = rpm + openshift_version
  696. rpms_31.append(rpm)
  697. return rpms_31
  698. @staticmethod
  699. def oo_pods_match_component(pods, deployment_type, component):
  700. """ Filters a list of Pods and returns the ones matching the deployment_type and component
  701. """
  702. if not isinstance(pods, list):
  703. raise errors.AnsibleFilterError("failed expects to filter on a list")
  704. if not isinstance(deployment_type, basestring):
  705. raise errors.AnsibleFilterError("failed expects deployment_type to be a string")
  706. if not isinstance(component, basestring):
  707. raise errors.AnsibleFilterError("failed expects component to be a string")
  708. image_prefix = 'openshift/origin-'
  709. if deployment_type in ['enterprise', 'online', 'openshift-enterprise']:
  710. image_prefix = 'openshift3/ose-'
  711. elif deployment_type == 'atomic-enterprise':
  712. image_prefix = 'aep3_beta/aep-'
  713. matching_pods = []
  714. image_regex = image_prefix + component + r'.*'
  715. for pod in pods:
  716. for container in pod['spec']['containers']:
  717. if re.search(image_regex, container['image']):
  718. matching_pods.append(pod)
  719. break # stop here, don't add a pod more than once
  720. return matching_pods
  721. @staticmethod
  722. def oo_get_hosts_from_hostvars(hostvars, hosts):
  723. """ Return a list of hosts from hostvars """
  724. retval = []
  725. for host in hosts:
  726. try:
  727. retval.append(hostvars[host])
  728. except errors.AnsibleError:
  729. # host does not exist
  730. pass
  731. return retval
  732. @staticmethod
  733. def oo_image_tag_to_rpm_version(version, include_dash=False):
  734. """ Convert an image tag string to an RPM version if necessary
  735. Empty strings and strings that are already in rpm version format
  736. are ignored. Also remove non semantic version components.
  737. Ex. v3.2.0.10 -> -3.2.0.10
  738. v1.2.0-rc1 -> -1.2.0
  739. """
  740. if not isinstance(version, basestring):
  741. raise errors.AnsibleFilterError("|failed expects a string or unicode")
  742. if version.startswith("v"):
  743. version = version[1:]
  744. # Strip release from requested version, we no longer support this.
  745. version = version.split('-')[0]
  746. if include_dash and version and not version.startswith("-"):
  747. version = "-" + version
  748. return version
  749. @staticmethod
  750. def oo_hostname_from_url(url):
  751. """ Returns the hostname contained in a URL
  752. Ex: https://ose3-master.example.com/v1/api -> ose3-master.example.com
  753. """
  754. if not isinstance(url, basestring):
  755. raise errors.AnsibleFilterError("|failed expects a string or unicode")
  756. parse_result = urlparse(url)
  757. if parse_result.netloc != '':
  758. return parse_result.netloc
  759. else:
  760. # netloc wasn't parsed, assume url was missing scheme and path
  761. return parse_result.path
  762. # pylint: disable=invalid-name, missing-docstring, unused-argument
  763. @staticmethod
  764. def oo_openshift_loadbalancer_frontends(api_port, servers_hostvars, use_nuage=False, nuage_rest_port=None):
  765. loadbalancer_frontends = [{'name': 'atomic-openshift-api',
  766. 'mode': 'tcp',
  767. 'options': ['tcplog'],
  768. 'binds': ["*:{0}".format(api_port)],
  769. 'default_backend': 'atomic-openshift-api'}]
  770. if bool(strtobool(str(use_nuage))) and nuage_rest_port is not None:
  771. loadbalancer_frontends.append({'name': 'nuage-monitor',
  772. 'mode': 'tcp',
  773. 'options': ['tcplog'],
  774. 'binds': ["*:{0}".format(nuage_rest_port)],
  775. 'default_backend': 'nuage-monitor'})
  776. return loadbalancer_frontends
  777. # pylint: disable=invalid-name, missing-docstring
  778. @staticmethod
  779. def oo_openshift_loadbalancer_backends(api_port, servers_hostvars, use_nuage=False, nuage_rest_port=None):
  780. loadbalancer_backends = [{'name': 'atomic-openshift-api',
  781. 'mode': 'tcp',
  782. 'option': 'tcplog',
  783. 'balance': 'source',
  784. 'servers': FilterModule.oo_haproxy_backend_masters(servers_hostvars, api_port)}]
  785. if bool(strtobool(str(use_nuage))) and nuage_rest_port is not None:
  786. # pylint: disable=line-too-long
  787. loadbalancer_backends.append({'name': 'nuage-monitor',
  788. 'mode': 'tcp',
  789. 'option': 'tcplog',
  790. 'balance': 'source',
  791. 'servers': FilterModule.oo_haproxy_backend_masters(servers_hostvars, nuage_rest_port)})
  792. return loadbalancer_backends
  793. @staticmethod
  794. def oo_chomp_commit_offset(version):
  795. """Chomp any "+git.foo" commit offset string from the given `version`
  796. and return the modified version string.
  797. Ex:
  798. - chomp_commit_offset(None) => None
  799. - chomp_commit_offset(1337) => "1337"
  800. - chomp_commit_offset("v3.4.0.15+git.derp") => "v3.4.0.15"
  801. - chomp_commit_offset("v3.4.0.15") => "v3.4.0.15"
  802. - chomp_commit_offset("v1.3.0+52492b4") => "v1.3.0"
  803. """
  804. if version is None:
  805. return version
  806. else:
  807. # Stringify, just in case it's a Number type. Split by '+' and
  808. # return the first split. No concerns about strings without a
  809. # '+', .split() returns an array of the original string.
  810. return str(version).split('+')[0]
  811. def filters(self):
  812. """ returns a mapping of filters to methods """
  813. return {
  814. "oo_select_keys": self.oo_select_keys,
  815. "oo_select_keys_from_list": self.oo_select_keys_from_list,
  816. "oo_chomp_commit_offset": self.oo_chomp_commit_offset,
  817. "oo_collect": self.oo_collect,
  818. "oo_flatten": self.oo_flatten,
  819. "oo_pdb": self.oo_pdb,
  820. "oo_prepend_strings_in_list": self.oo_prepend_strings_in_list,
  821. "oo_ami_selector": self.oo_ami_selector,
  822. "oo_ec2_volume_definition": self.oo_ec2_volume_definition,
  823. "oo_combine_key_value": self.oo_combine_key_value,
  824. "oo_combine_dict": self.oo_combine_dict,
  825. "oo_split": self.oo_split,
  826. "oo_filter_list": self.oo_filter_list,
  827. "oo_parse_heat_stack_outputs": self.oo_parse_heat_stack_outputs,
  828. "oo_parse_named_certificates": self.oo_parse_named_certificates,
  829. "oo_haproxy_backend_masters": self.oo_haproxy_backend_masters,
  830. "oo_pretty_print_cluster": self.oo_pretty_print_cluster,
  831. "oo_generate_secret": self.oo_generate_secret,
  832. "to_padded_yaml": self.to_padded_yaml,
  833. "oo_nodes_with_label": self.oo_nodes_with_label,
  834. "oo_openshift_env": self.oo_openshift_env,
  835. "oo_persistent_volumes": self.oo_persistent_volumes,
  836. "oo_persistent_volume_claims": self.oo_persistent_volume_claims,
  837. "oo_31_rpm_rename_conversion": self.oo_31_rpm_rename_conversion,
  838. "oo_pods_match_component": self.oo_pods_match_component,
  839. "oo_get_hosts_from_hostvars": self.oo_get_hosts_from_hostvars,
  840. "oo_image_tag_to_rpm_version": self.oo_image_tag_to_rpm_version,
  841. "oo_merge_dicts": self.oo_merge_dicts,
  842. "oo_hostname_from_url": self.oo_hostname_from_url,
  843. "oo_merge_hostvars": self.oo_merge_hostvars,
  844. "oo_openshift_loadbalancer_frontends": self.oo_openshift_loadbalancer_frontends,
  845. "oo_openshift_loadbalancer_backends": self.oo_openshift_loadbalancer_backends
  846. }