oo_filters.py 41 KB

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