oo_filters.py 32 KB

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