oo_filters.py 38 KB

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