oo_filters.py 37 KB

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