oo_filters.py 38 KB

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