oo_filters.py 39 KB

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