oo_filters.py 39 KB

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