oo_filters.py 41 KB

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