oo_filters.py 39 KB

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