openshift_facts.py 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283
  1. #!/usr/bin/python
  2. # pylint: disable=too-many-lines
  3. # -*- coding: utf-8 -*-
  4. # Reason: Disable pylint too-many-lines because we don't want to split up this file.
  5. # Status: Permanently disabled to keep this module as self-contained as possible.
  6. """Ansible module for retrieving and setting openshift related facts"""
  7. # pylint: disable=no-name-in-module, import-error, wrong-import-order
  8. import copy
  9. import errno
  10. import json
  11. import re
  12. import os
  13. import yaml
  14. import struct
  15. import socket
  16. import ipaddress
  17. from distutils.util import strtobool
  18. from ansible.module_utils.six import text_type
  19. from ansible.module_utils.six import string_types
  20. # ignore pylint errors related to the module_utils import
  21. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import
  22. # import module snippets
  23. from ansible.module_utils.basic import * # noqa: F403
  24. from ansible.module_utils.facts import * # noqa: F403
  25. from ansible.module_utils.urls import * # noqa: F403
  26. from ansible.module_utils.six import iteritems, itervalues
  27. from ansible.module_utils.six.moves.urllib.parse import urlparse, urlunparse
  28. from ansible.module_utils._text import to_native
  29. DOCUMENTATION = '''
  30. ---
  31. module: openshift_facts
  32. short_description: Cluster Facts
  33. author: Jason DeTiberus
  34. requirements: [ ]
  35. '''
  36. EXAMPLES = '''
  37. '''
  38. # TODO: We should add a generic migration function that takes source and destination
  39. # paths and does the right thing rather than one function for common, one for node, etc.
  40. def migrate_common_facts(facts):
  41. """ Migrate facts from various roles into common """
  42. params = {
  43. 'node': ('portal_net'),
  44. 'master': ('portal_net')
  45. }
  46. if 'common' not in facts:
  47. facts['common'] = {}
  48. # pylint: disable=consider-iterating-dictionary
  49. for role in params.keys():
  50. if role in facts:
  51. for param in params[role]:
  52. if param in facts[role]:
  53. facts['common'][param] = facts[role].pop(param)
  54. return facts
  55. def migrate_admission_plugin_facts(facts):
  56. """ Apply migrations for admission plugin facts """
  57. if 'master' in facts:
  58. if 'kube_admission_plugin_config' in facts['master']:
  59. if 'admission_plugin_config' not in facts['master']:
  60. facts['master']['admission_plugin_config'] = dict()
  61. # Merge existing kube_admission_plugin_config with admission_plugin_config.
  62. facts['master']['admission_plugin_config'] = merge_facts(facts['master']['admission_plugin_config'],
  63. facts['master']['kube_admission_plugin_config'],
  64. additive_facts_to_overwrite=[])
  65. # Remove kube_admission_plugin_config fact
  66. facts['master'].pop('kube_admission_plugin_config', None)
  67. return facts
  68. def migrate_local_facts(facts):
  69. """ Apply migrations of local facts """
  70. migrated_facts = copy.deepcopy(facts)
  71. migrated_facts = migrate_common_facts(migrated_facts)
  72. migrated_facts = migrate_admission_plugin_facts(migrated_facts)
  73. return migrated_facts
  74. def first_ip(network):
  75. """ Return the first IPv4 address in network
  76. Args:
  77. network (str): network in CIDR format
  78. Returns:
  79. str: first IPv4 address
  80. """
  81. atoi = lambda addr: struct.unpack("!I", socket.inet_aton(addr))[0] # noqa: E731
  82. itoa = lambda addr: socket.inet_ntoa(struct.pack("!I", addr)) # noqa: E731
  83. (address, netmask) = network.split('/')
  84. netmask_i = (0xffffffff << (32 - atoi(netmask))) & 0xffffffff
  85. return itoa((atoi(address) & netmask_i) + 1)
  86. def hostname_valid(hostname):
  87. """ Test if specified hostname should be considered valid
  88. Args:
  89. hostname (str): hostname to test
  90. Returns:
  91. bool: True if valid, otherwise False
  92. """
  93. if (not hostname or
  94. hostname.startswith('localhost') or
  95. hostname.endswith('localdomain') or
  96. # OpenShift will not allow a node with more than 63 chars in name.
  97. len(hostname) > 63):
  98. return False
  99. return True
  100. def choose_hostname(hostnames=None, fallback=''):
  101. """ Choose a hostname from the provided hostnames
  102. Given a list of hostnames and a fallback value, choose a hostname to
  103. use. This function will prefer fqdns if they exist (excluding any that
  104. begin with localhost or end with localdomain) over ip addresses.
  105. Args:
  106. hostnames (list): list of hostnames
  107. fallback (str): default value to set if hostnames does not contain
  108. a valid hostname
  109. Returns:
  110. str: chosen hostname
  111. """
  112. hostname = fallback
  113. if hostnames is None:
  114. return hostname
  115. ip_regex = r'\A\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\Z'
  116. ips = [i for i in hostnames if i is not None and isinstance(i, string_types) and re.match(ip_regex, i)]
  117. hosts = [i for i in hostnames if i is not None and i != '' and i not in ips]
  118. for host_list in (hosts, ips):
  119. for host in host_list:
  120. if hostname_valid(host):
  121. return host
  122. return hostname
  123. def query_metadata(metadata_url, headers=None, expect_json=False):
  124. """ Return metadata from the provided metadata_url
  125. Args:
  126. metadata_url (str): metadata url
  127. headers (dict): headers to set for metadata request
  128. expect_json (bool): does the metadata_url return json
  129. Returns:
  130. dict or list: metadata request result
  131. """
  132. result, info = fetch_url(module, metadata_url, headers=headers) # noqa: F405
  133. if info['status'] != 200:
  134. raise OpenShiftFactsMetadataUnavailableError("Metadata unavailable")
  135. if expect_json:
  136. return module.from_json(to_native(result.read())) # noqa: F405
  137. else:
  138. return [to_native(line.strip()) for line in result.readlines()]
  139. def walk_metadata(metadata_url, headers=None, expect_json=False):
  140. """ Walk the metadata tree and return a dictionary of the entire tree
  141. Args:
  142. metadata_url (str): metadata url
  143. headers (dict): headers to set for metadata request
  144. expect_json (bool): does the metadata_url return json
  145. Returns:
  146. dict: the result of walking the metadata tree
  147. """
  148. metadata = dict()
  149. for line in query_metadata(metadata_url, headers, expect_json):
  150. if line.endswith('/') and not line == 'public-keys/':
  151. key = line[:-1]
  152. metadata[key] = walk_metadata(metadata_url + line,
  153. headers, expect_json)
  154. else:
  155. results = query_metadata(metadata_url + line, headers,
  156. expect_json)
  157. if len(results) == 1:
  158. # disable pylint maybe-no-member because overloaded use of
  159. # the module name causes pylint to not detect that results
  160. # is an array or hash
  161. # pylint: disable=maybe-no-member
  162. metadata[line] = results.pop()
  163. else:
  164. metadata[line] = results
  165. return metadata
  166. def get_provider_metadata(metadata_url, supports_recursive=False,
  167. headers=None, expect_json=False):
  168. """ Retrieve the provider metadata
  169. Args:
  170. metadata_url (str): metadata url
  171. supports_recursive (bool): does the provider metadata api support
  172. recursion
  173. headers (dict): headers to set for metadata request
  174. expect_json (bool): does the metadata_url return json
  175. Returns:
  176. dict: the provider metadata
  177. """
  178. try:
  179. if supports_recursive:
  180. metadata = query_metadata(metadata_url, headers,
  181. expect_json)
  182. else:
  183. metadata = walk_metadata(metadata_url, headers,
  184. expect_json)
  185. except OpenShiftFactsMetadataUnavailableError:
  186. metadata = None
  187. return metadata
  188. def normalize_gce_facts(metadata, facts):
  189. """ Normalize gce facts
  190. Args:
  191. metadata (dict): provider metadata
  192. facts (dict): facts to update
  193. Returns:
  194. dict: the result of adding the normalized metadata to the provided
  195. facts dict
  196. """
  197. for interface in metadata['instance']['networkInterfaces']:
  198. int_info = dict(ips=[interface['ip']], network_type='gce')
  199. int_info['public_ips'] = [ac['externalIp'] for ac
  200. in interface['accessConfigs']]
  201. int_info['public_ips'].extend(interface['forwardedIps'])
  202. _, _, network_id = interface['network'].rpartition('/')
  203. int_info['network_id'] = network_id
  204. facts['network']['interfaces'].append(int_info)
  205. _, _, zone = metadata['instance']['zone'].rpartition('/')
  206. facts['zone'] = zone
  207. # GCE currently only supports a single interface
  208. facts['network']['ip'] = facts['network']['interfaces'][0]['ips'][0]
  209. pub_ip = facts['network']['interfaces'][0]['public_ips'][0]
  210. facts['network']['public_ip'] = pub_ip
  211. # Split instance hostname from GCE metadata to use the short instance name
  212. facts['network']['hostname'] = metadata['instance']['hostname'].split('.')[0]
  213. # TODO: attempt to resolve public_hostname
  214. facts['network']['public_hostname'] = facts['network']['public_ip']
  215. return facts
  216. def normalize_aws_facts(metadata, facts):
  217. """ Normalize aws facts
  218. Args:
  219. metadata (dict): provider metadata
  220. facts (dict): facts to update
  221. Returns:
  222. dict: the result of adding the normalized metadata to the provided
  223. facts dict
  224. """
  225. for interface in sorted(
  226. metadata['network']['interfaces']['macs'].values(),
  227. key=lambda x: x['device-number']
  228. ):
  229. int_info = dict()
  230. var_map = {'ips': 'local-ipv4s', 'public_ips': 'public-ipv4s'}
  231. for ips_var, int_var in iteritems(var_map):
  232. ips = interface.get(int_var)
  233. if isinstance(ips, string_types):
  234. int_info[ips_var] = [ips]
  235. else:
  236. int_info[ips_var] = ips
  237. if 'vpc-id' in interface:
  238. int_info['network_type'] = 'vpc'
  239. else:
  240. int_info['network_type'] = 'classic'
  241. if int_info['network_type'] == 'vpc':
  242. int_info['network_id'] = interface['subnet-id']
  243. else:
  244. int_info['network_id'] = None
  245. facts['network']['interfaces'].append(int_info)
  246. facts['zone'] = metadata['placement']['availability-zone']
  247. # TODO: actually attempt to determine default local and public ips
  248. # by using the ansible default ip fact and the ipv4-associations
  249. # from the ec2 metadata
  250. facts['network']['ip'] = metadata.get('local-ipv4')
  251. facts['network']['public_ip'] = metadata.get('public-ipv4')
  252. # TODO: verify that local hostname makes sense and is resolvable
  253. facts['network']['hostname'] = metadata.get('local-hostname')
  254. # TODO: verify that public hostname makes sense and is resolvable
  255. facts['network']['public_hostname'] = metadata.get('public-hostname')
  256. return facts
  257. def normalize_openstack_facts(metadata, facts):
  258. """ Normalize openstack facts
  259. Args:
  260. metadata (dict): provider metadata
  261. facts (dict): facts to update
  262. Returns:
  263. dict: the result of adding the normalized metadata to the provided
  264. facts dict
  265. """
  266. # openstack ec2 compat api does not support network interfaces and
  267. # the version tested on did not include the info in the openstack
  268. # metadata api, should be updated if neutron exposes this.
  269. facts['zone'] = metadata['availability_zone']
  270. local_ipv4 = metadata['ec2_compat']['local-ipv4'].split(',')[0]
  271. facts['network']['ip'] = local_ipv4
  272. facts['network']['public_ip'] = metadata['ec2_compat']['public-ipv4']
  273. for f_var, h_var, ip_var in [('hostname', 'hostname', 'local-ipv4'),
  274. ('public_hostname', 'public-hostname', 'public-ipv4')]:
  275. try:
  276. if socket.gethostbyname(metadata['ec2_compat'][h_var]) == metadata['ec2_compat'][ip_var]:
  277. facts['network'][f_var] = metadata['ec2_compat'][h_var]
  278. else:
  279. facts['network'][f_var] = metadata['ec2_compat'][ip_var]
  280. except socket.gaierror:
  281. facts['network'][f_var] = metadata['ec2_compat'][ip_var]
  282. return facts
  283. def normalize_provider_facts(provider, metadata):
  284. """ Normalize provider facts
  285. Args:
  286. provider (str): host provider
  287. metadata (dict): provider metadata
  288. Returns:
  289. dict: the normalized provider facts
  290. """
  291. if provider is None or metadata is None:
  292. return {}
  293. # TODO: test for ipv6_enabled where possible (gce, aws do not support)
  294. # and configure ipv6 facts if available
  295. # TODO: add support for setting user_data if available
  296. facts = dict(name=provider, metadata=metadata,
  297. network=dict(interfaces=[], ipv6_enabled=False))
  298. if provider == 'gce':
  299. facts = normalize_gce_facts(metadata, facts)
  300. elif provider == 'aws':
  301. facts = normalize_aws_facts(metadata, facts)
  302. elif provider == 'openstack':
  303. facts = normalize_openstack_facts(metadata, facts)
  304. return facts
  305. def set_url_facts_if_unset(facts):
  306. """ Set url facts if not already present in facts dict
  307. Args:
  308. facts (dict): existing facts
  309. Returns:
  310. dict: the facts dict updated with the generated url facts if they
  311. were not already present
  312. """
  313. if 'master' in facts:
  314. hostname = facts['common']['hostname']
  315. cluster_hostname = facts['master'].get('cluster_hostname')
  316. cluster_public_hostname = facts['master'].get('cluster_public_hostname')
  317. public_hostname = facts['common']['public_hostname']
  318. api_hostname = cluster_hostname if cluster_hostname else hostname
  319. api_public_hostname = cluster_public_hostname if cluster_public_hostname else public_hostname
  320. console_path = facts['master']['console_path']
  321. use_ssl = dict(
  322. api=facts['master']['api_use_ssl'],
  323. public_api=facts['master']['api_use_ssl'],
  324. loopback_api=facts['master']['api_use_ssl'],
  325. console=facts['master']['console_use_ssl'],
  326. public_console=facts['master']['console_use_ssl'],
  327. )
  328. ports = dict(
  329. api=facts['master']['api_port'],
  330. public_api=facts['master']['api_port'],
  331. loopback_api=facts['master']['api_port'],
  332. console=facts['master']['console_port'],
  333. public_console=facts['master']['console_port'],
  334. )
  335. prefix_hosts = [('api', api_hostname),
  336. ('public_api', api_public_hostname),
  337. ('loopback_api', hostname)]
  338. for prefix, host in prefix_hosts:
  339. facts['master'].setdefault(prefix + '_url', format_url(use_ssl[prefix],
  340. host,
  341. ports[prefix]))
  342. r_lhn = "{0}:{1}".format(hostname, ports['api']).replace('.', '-')
  343. r_lhu = "system:openshift-master/{0}:{1}".format(api_hostname, ports['api']).replace('.', '-')
  344. facts['master'].setdefault('loopback_cluster_name', r_lhn)
  345. facts['master'].setdefault('loopback_context_name', "default/{0}/system:openshift-master".format(r_lhn))
  346. facts['master'].setdefault('loopback_user', r_lhu)
  347. prefix_hosts = [('console', api_hostname), ('public_console', api_public_hostname)]
  348. for prefix, host in prefix_hosts:
  349. facts['master'].setdefault(prefix + '_url', format_url(use_ssl[prefix],
  350. host,
  351. ports[prefix],
  352. console_path))
  353. return facts
  354. def set_aggregate_facts(facts):
  355. """ Set aggregate facts
  356. Args:
  357. facts (dict): existing facts
  358. Returns:
  359. dict: the facts dict updated with aggregated facts
  360. """
  361. all_hostnames = set()
  362. internal_hostnames = set()
  363. kube_svc_ip = first_ip(facts['common']['portal_net'])
  364. if 'common' in facts:
  365. all_hostnames.add(facts['common']['hostname'])
  366. all_hostnames.add(facts['common']['public_hostname'])
  367. all_hostnames.add(facts['common']['ip'])
  368. all_hostnames.add(facts['common']['public_ip'])
  369. facts['common']['kube_svc_ip'] = kube_svc_ip
  370. internal_hostnames.add(facts['common']['hostname'])
  371. internal_hostnames.add(facts['common']['ip'])
  372. cluster_domain = facts['common']['dns_domain']
  373. if 'master' in facts:
  374. if 'cluster_hostname' in facts['master']:
  375. all_hostnames.add(facts['master']['cluster_hostname'])
  376. if 'cluster_public_hostname' in facts['master']:
  377. all_hostnames.add(facts['master']['cluster_public_hostname'])
  378. svc_names = ['openshift', 'openshift.default', 'openshift.default.svc',
  379. 'openshift.default.svc.' + cluster_domain, 'kubernetes', 'kubernetes.default',
  380. 'kubernetes.default.svc', 'kubernetes.default.svc.' + cluster_domain]
  381. all_hostnames.update(svc_names)
  382. internal_hostnames.update(svc_names)
  383. all_hostnames.add(kube_svc_ip)
  384. internal_hostnames.add(kube_svc_ip)
  385. facts['common']['all_hostnames'] = list(all_hostnames)
  386. facts['common']['internal_hostnames'] = list(internal_hostnames)
  387. return facts
  388. def set_sdn_facts_if_unset(facts, system_facts):
  389. """ Set sdn facts if not already present in facts dict
  390. Args:
  391. facts (dict): existing facts
  392. system_facts (dict): ansible_facts
  393. Returns:
  394. dict: the facts dict updated with the generated sdn facts if they
  395. were not already present
  396. """
  397. if 'node' in facts and 'sdn_mtu' not in facts['node']:
  398. node_ip = facts['common']['ip']
  399. # default MTU if interface MTU cannot be detected
  400. facts['node']['sdn_mtu'] = '1450'
  401. for val in itervalues(system_facts):
  402. if isinstance(val, dict) and 'mtu' in val:
  403. mtu = val['mtu']
  404. if 'ipv4' in val and val['ipv4'].get('address') == node_ip:
  405. facts['node']['sdn_mtu'] = str(mtu - 50)
  406. return facts
  407. def set_nodename(facts):
  408. """ set nodename """
  409. if 'node' in facts and 'common' in facts:
  410. if 'cloudprovider' in facts and facts['cloudprovider']['kind'] == 'gce':
  411. facts['node']['nodename'] = facts['provider']['metadata']['instance']['hostname'].split('.')[0]
  412. # TODO: The openstack cloudprovider nodename setting was too opinionaed.
  413. # It needs to be generalized before it can be enabled again.
  414. # elif 'cloudprovider' in facts and facts['cloudprovider']['kind'] == 'openstack':
  415. # facts['node']['nodename'] = facts['provider']['metadata']['hostname'].replace('.novalocal', '')
  416. else:
  417. if 'bootstrapped' in facts['node'] and facts['node']['bootstrapped']:
  418. facts['node']['nodename'] = facts['common']['raw_hostname'].lower()
  419. else:
  420. facts['node']['nodename'] = facts['common']['hostname'].lower()
  421. return facts
  422. def format_url(use_ssl, hostname, port, path=''):
  423. """ Format url based on ssl flag, hostname, port and path
  424. Args:
  425. use_ssl (bool): is ssl enabled
  426. hostname (str): hostname
  427. port (str): port
  428. path (str): url path
  429. Returns:
  430. str: The generated url string
  431. """
  432. scheme = 'https' if use_ssl else 'http'
  433. netloc = hostname
  434. if (use_ssl and port != '443') or (not use_ssl and port != '80'):
  435. netloc += ":%s" % port
  436. try:
  437. url = urlparse.urlunparse((scheme, netloc, path, '', '', ''))
  438. except AttributeError:
  439. # pylint: disable=undefined-variable
  440. url = urlunparse((scheme, netloc, path, '', '', ''))
  441. return url
  442. def get_current_config(facts):
  443. """ Get current openshift config
  444. Args:
  445. facts (dict): existing facts
  446. Returns:
  447. dict: the facts dict updated with the current openshift config
  448. """
  449. current_config = dict()
  450. roles = [role for role in facts if role not in ['common', 'provider']]
  451. for role in roles:
  452. if 'roles' in current_config:
  453. current_config['roles'].append(role)
  454. else:
  455. current_config['roles'] = [role]
  456. # TODO: parse the /etc/sysconfig/openshift-{master,node} config to
  457. # determine the location of files.
  458. # TODO: I suspect this isn't working right now, but it doesn't prevent
  459. # anything from working properly as far as I can tell, perhaps because
  460. # we override the kubeconfig path everywhere we use it?
  461. # Query kubeconfig settings
  462. kubeconfig_dir = '/var/lib/origin/openshift.local.certificates'
  463. if role == 'node':
  464. kubeconfig_dir = os.path.join(
  465. kubeconfig_dir, "node-%s" % facts['common']['hostname']
  466. )
  467. kubeconfig_path = os.path.join(kubeconfig_dir, '.kubeconfig')
  468. if os.path.isfile('/usr/bin/openshift') and os.path.isfile(kubeconfig_path):
  469. try:
  470. _, output, _ = module.run_command( # noqa: F405
  471. ["/usr/bin/openshift", "ex", "config", "view", "-o",
  472. "json", "--kubeconfig=%s" % kubeconfig_path],
  473. check_rc=False
  474. )
  475. config = json.loads(output)
  476. cad = 'certificate-authority-data'
  477. try:
  478. for cluster in config['clusters']:
  479. config['clusters'][cluster][cad] = 'masked'
  480. except KeyError:
  481. pass
  482. try:
  483. for user in config['users']:
  484. config['users'][user][cad] = 'masked'
  485. config['users'][user]['client-key-data'] = 'masked'
  486. except KeyError:
  487. pass
  488. current_config['kubeconfig'] = config
  489. # override pylint broad-except warning, since we do not want
  490. # to bubble up any exceptions if oc config view
  491. # fails
  492. # pylint: disable=broad-except
  493. except Exception:
  494. pass
  495. return current_config
  496. def build_controller_args(facts):
  497. """ Build master controller_args """
  498. cloud_cfg_path = os.path.join(facts['common']['config_base'],
  499. 'cloudprovider')
  500. if 'master' in facts:
  501. controller_args = {}
  502. if 'cloudprovider' in facts:
  503. if 'kind' in facts['cloudprovider']:
  504. if facts['cloudprovider']['kind'] == 'aws':
  505. controller_args['cloud-provider'] = ['aws']
  506. controller_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  507. controller_args['disable-attach-detach-reconcile-sync'] = ['true']
  508. if facts['cloudprovider']['kind'] == 'azure':
  509. controller_args['cloud-provider'] = ['azure']
  510. controller_args['cloud-config'] = [cloud_cfg_path + '/azure.conf']
  511. if facts['cloudprovider']['kind'] == 'openstack':
  512. controller_args['cloud-provider'] = ['openstack']
  513. controller_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  514. if facts['cloudprovider']['kind'] == 'gce':
  515. controller_args['cloud-provider'] = ['gce']
  516. controller_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  517. if controller_args != {}:
  518. facts = merge_facts({'master': {'controller_args': controller_args}}, facts, [])
  519. return facts
  520. def build_api_server_args(facts):
  521. """ Build master api_server_args """
  522. cloud_cfg_path = os.path.join(facts['common']['config_base'],
  523. 'cloudprovider')
  524. if 'master' in facts:
  525. api_server_args = {}
  526. if 'cloudprovider' in facts:
  527. if 'kind' in facts['cloudprovider']:
  528. if facts['cloudprovider']['kind'] == 'aws':
  529. api_server_args['cloud-provider'] = ['aws']
  530. api_server_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  531. if facts['cloudprovider']['kind'] == 'azure':
  532. api_server_args['cloud-provider'] = ['azure']
  533. api_server_args['cloud-config'] = [cloud_cfg_path + '/azure.conf']
  534. if facts['cloudprovider']['kind'] == 'openstack':
  535. api_server_args['cloud-provider'] = ['openstack']
  536. api_server_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  537. if facts['cloudprovider']['kind'] == 'gce':
  538. api_server_args['cloud-provider'] = ['gce']
  539. api_server_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  540. if api_server_args != {}:
  541. facts = merge_facts({'master': {'api_server_args': api_server_args}}, facts, [])
  542. return facts
  543. def apply_provider_facts(facts, provider_facts):
  544. """ Apply provider facts to supplied facts dict
  545. Args:
  546. facts (dict): facts dict to update
  547. provider_facts (dict): provider facts to apply
  548. roles: host roles
  549. Returns:
  550. dict: the merged facts
  551. """
  552. if not provider_facts:
  553. return facts
  554. common_vars = [('hostname', 'ip'), ('public_hostname', 'public_ip')]
  555. for h_var, ip_var in common_vars:
  556. ip_value = provider_facts['network'].get(ip_var)
  557. if ip_value:
  558. facts['common'][ip_var] = ip_value
  559. facts['common'][h_var] = choose_hostname(
  560. [provider_facts['network'].get(h_var)],
  561. facts['common'][h_var]
  562. )
  563. facts['provider'] = provider_facts
  564. return facts
  565. # Disabling pylint too many branches. This function needs refactored
  566. # but is a very core part of openshift_facts.
  567. # pylint: disable=too-many-branches, too-many-nested-blocks
  568. def merge_facts(orig, new, additive_facts_to_overwrite):
  569. """ Recursively merge facts dicts
  570. Args:
  571. orig (dict): existing facts
  572. new (dict): facts to update
  573. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  574. '.' notation ex: ['master.named_certificates']
  575. Returns:
  576. dict: the merged facts
  577. """
  578. additive_facts = ['named_certificates']
  579. # Facts we do not ever want to merge. These originate in inventory variables
  580. # and contain JSON dicts. We don't ever want to trigger a merge
  581. # here, just completely overwrite with the new if they are present there.
  582. inventory_json_facts = ['admission_plugin_config',
  583. 'kube_admission_plugin_config',
  584. 'image_policy_config',
  585. "builddefaults",
  586. "buildoverrides"]
  587. facts = dict()
  588. for key, value in iteritems(orig):
  589. # Key exists in both old and new facts.
  590. if key in new:
  591. if key in inventory_json_facts:
  592. # Watchout for JSON facts that sometimes load as strings.
  593. # (can happen if the JSON contains a boolean)
  594. if isinstance(new[key], string_types):
  595. facts[key] = yaml.safe_load(new[key])
  596. else:
  597. facts[key] = copy.deepcopy(new[key])
  598. # Continue to recurse if old and new fact is a dictionary.
  599. elif isinstance(value, dict) and isinstance(new[key], dict):
  600. # Collect the subset of additive facts to overwrite if
  601. # key matches. These will be passed to the subsequent
  602. # merge_facts call.
  603. relevant_additive_facts = []
  604. for item in additive_facts_to_overwrite:
  605. if '.' in item and item.startswith(key + '.'):
  606. relevant_additive_facts.append(item)
  607. facts[key] = merge_facts(value, new[key], relevant_additive_facts)
  608. # Key matches an additive fact and we are not overwriting
  609. # it so we will append the new value to the existing value.
  610. elif key in additive_facts and key not in [x.split('.')[-1] for x in additive_facts_to_overwrite]:
  611. if isinstance(value, list) and isinstance(new[key], list):
  612. new_fact = []
  613. for item in copy.deepcopy(value) + copy.deepcopy(new[key]):
  614. if item not in new_fact:
  615. new_fact.append(item)
  616. facts[key] = new_fact
  617. # No other condition has been met. Overwrite the old fact
  618. # with the new value.
  619. else:
  620. facts[key] = copy.deepcopy(new[key])
  621. # Key isn't in new so add it to facts to keep it.
  622. else:
  623. facts[key] = copy.deepcopy(value)
  624. new_keys = set(new.keys()) - set(orig.keys())
  625. for key in new_keys:
  626. # Watchout for JSON facts that sometimes load as strings.
  627. # (can happen if the JSON contains a boolean)
  628. if key in inventory_json_facts and isinstance(new[key], string_types):
  629. facts[key] = yaml.safe_load(new[key])
  630. else:
  631. facts[key] = copy.deepcopy(new[key])
  632. return facts
  633. def save_local_facts(filename, facts):
  634. """ Save local facts
  635. Args:
  636. filename (str): local facts file
  637. facts (dict): facts to set
  638. """
  639. try:
  640. fact_dir = os.path.dirname(filename)
  641. try:
  642. os.makedirs(fact_dir) # try to make the directory
  643. except OSError as exception:
  644. if exception.errno != errno.EEXIST: # but it is okay if it is already there
  645. raise # pass any other exceptions up the chain
  646. with open(filename, 'w') as fact_file:
  647. fact_file.write(module.jsonify(facts)) # noqa: F405
  648. os.chmod(filename, 0o600)
  649. except (IOError, OSError) as ex:
  650. raise OpenShiftFactsFileWriteError(
  651. "Could not create fact file: %s, error: %s" % (filename, ex)
  652. )
  653. def get_local_facts_from_file(filename):
  654. """ Retrieve local facts from fact file
  655. Args:
  656. filename (str): local facts file
  657. Returns:
  658. dict: the retrieved facts
  659. """
  660. try:
  661. with open(filename, 'r') as facts_file:
  662. local_facts = json.load(facts_file)
  663. except (ValueError, IOError):
  664. local_facts = {}
  665. return local_facts
  666. def sort_unique(alist):
  667. """ Sorts and de-dupes a list
  668. Args:
  669. list: a list
  670. Returns:
  671. list: a sorted de-duped list
  672. """
  673. return sorted(list(set(alist)))
  674. def safe_get_bool(fact):
  675. """ Get a boolean fact safely.
  676. Args:
  677. facts: fact to convert
  678. Returns:
  679. bool: given fact as a bool
  680. """
  681. return bool(strtobool(str(fact)))
  682. def set_proxy_facts(facts):
  683. """ Set global proxy facts
  684. Args:
  685. facts(dict): existing facts
  686. Returns:
  687. facts(dict): Updated facts with missing values
  688. """
  689. if 'common' in facts:
  690. common = facts['common']
  691. if 'http_proxy' in common or 'https_proxy' in common or 'no_proxy' in common:
  692. if 'no_proxy' in common and isinstance(common['no_proxy'], string_types):
  693. common['no_proxy'] = common['no_proxy'].split(",")
  694. elif 'no_proxy' not in common:
  695. common['no_proxy'] = []
  696. # See https://bugzilla.redhat.com/show_bug.cgi?id=1466783
  697. # masters behind a proxy need to connect to etcd via IP
  698. if 'no_proxy_etcd_host_ips' in common:
  699. if isinstance(common['no_proxy_etcd_host_ips'], string_types):
  700. common['no_proxy'].extend(common['no_proxy_etcd_host_ips'].split(','))
  701. if 'generate_no_proxy_hosts' in common and safe_get_bool(common['generate_no_proxy_hosts']):
  702. if 'no_proxy_internal_hostnames' in common:
  703. common['no_proxy'].extend(common['no_proxy_internal_hostnames'].split(','))
  704. # TODO: This is Azure specific and should be scoped out to only Azure installs
  705. common['no_proxy'].append('169.254.169.254')
  706. # We always add local dns domain and ourselves no matter what
  707. kube_svc_ip = str(ipaddress.ip_network(text_type(common['portal_net']))[1])
  708. common['no_proxy'].append(kube_svc_ip)
  709. common['no_proxy'].append('.' + common['dns_domain'])
  710. common['no_proxy'].append('.svc')
  711. common['no_proxy'].append(common['hostname'])
  712. common['no_proxy'] = ','.join(sort_unique(common['no_proxy']))
  713. facts['common'] = common
  714. return facts
  715. def set_builddefaults_facts(facts):
  716. """ Set build defaults including setting proxy values from http_proxy, https_proxy,
  717. no_proxy to the more specific builddefaults and builddefaults_git vars.
  718. 1. http_proxy, https_proxy, no_proxy
  719. 2. builddefaults_*
  720. 3. builddefaults_git_*
  721. Args:
  722. facts(dict): existing facts
  723. Returns:
  724. facts(dict): Updated facts with missing values
  725. """
  726. if 'builddefaults' in facts:
  727. builddefaults = facts['builddefaults']
  728. common = facts['common']
  729. # Copy values from common to builddefaults
  730. if 'http_proxy' not in builddefaults and 'http_proxy' in common:
  731. builddefaults['http_proxy'] = common['http_proxy']
  732. if 'https_proxy' not in builddefaults and 'https_proxy' in common:
  733. builddefaults['https_proxy'] = common['https_proxy']
  734. if 'no_proxy' not in builddefaults and 'no_proxy' in common:
  735. builddefaults['no_proxy'] = common['no_proxy']
  736. # Create git specific facts from generic values, if git specific values are
  737. # not defined.
  738. if 'git_http_proxy' not in builddefaults and 'http_proxy' in builddefaults:
  739. builddefaults['git_http_proxy'] = builddefaults['http_proxy']
  740. if 'git_https_proxy' not in builddefaults and 'https_proxy' in builddefaults:
  741. builddefaults['git_https_proxy'] = builddefaults['https_proxy']
  742. if 'git_no_proxy' not in builddefaults and 'no_proxy' in builddefaults:
  743. builddefaults['git_no_proxy'] = builddefaults['no_proxy']
  744. # If we're actually defining a builddefaults config then create admission_plugin_config
  745. # then merge builddefaults[config] structure into admission_plugin_config
  746. # 'config' is the 'openshift_builddefaults_json' inventory variable
  747. if 'config' in builddefaults:
  748. if 'admission_plugin_config' not in facts['master']:
  749. # Scaffold out the full expected datastructure
  750. facts['master']['admission_plugin_config'] = {'BuildDefaults': {'configuration': {'env': {}}}}
  751. facts['master']['admission_plugin_config'].update(builddefaults['config'])
  752. if 'env' in facts['master']['admission_plugin_config']['BuildDefaults']['configuration']:
  753. delete_empty_keys(facts['master']['admission_plugin_config']['BuildDefaults']['configuration']['env'])
  754. return facts
  755. def delete_empty_keys(keylist):
  756. """ Delete dictionary elements from keylist where "value" is empty.
  757. Args:
  758. keylist(list): A list of builddefault configuration envs.
  759. Returns:
  760. none
  761. Example:
  762. keylist = [{'name': 'HTTP_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  763. {'name': 'HTTPS_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  764. {'name': 'NO_PROXY', 'value': ''}]
  765. After calling delete_empty_keys the provided list is modified to become:
  766. [{'name': 'HTTP_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  767. {'name': 'HTTPS_PROXY', 'value': 'http://file.rdu.redhat.com:3128'}]
  768. """
  769. count = 0
  770. for i in range(0, len(keylist)):
  771. if len(keylist[i - count]['value']) == 0:
  772. del keylist[i - count]
  773. count += 1
  774. def set_buildoverrides_facts(facts):
  775. """ Set build overrides
  776. Args:
  777. facts(dict): existing facts
  778. Returns:
  779. facts(dict): Updated facts with missing values
  780. """
  781. if 'buildoverrides' in facts:
  782. buildoverrides = facts['buildoverrides']
  783. # If we're actually defining a buildoverrides config then create admission_plugin_config
  784. # then merge buildoverrides[config] structure into admission_plugin_config
  785. if 'config' in buildoverrides:
  786. if 'admission_plugin_config' not in facts['master']:
  787. facts['master']['admission_plugin_config'] = dict()
  788. facts['master']['admission_plugin_config'].update(buildoverrides['config'])
  789. return facts
  790. def pop_obsolete_local_facts(local_facts):
  791. """Remove unused keys from local_facts"""
  792. keys_to_remove = {
  793. 'master': ('etcd_port', 'etcd_use_ssl', 'etcd_hosts')
  794. }
  795. for role in keys_to_remove:
  796. if role in local_facts:
  797. for key in keys_to_remove[role]:
  798. local_facts[role].pop(key, None)
  799. class OpenShiftFactsUnsupportedRoleError(Exception):
  800. """Origin Facts Unsupported Role Error"""
  801. pass
  802. class OpenShiftFactsFileWriteError(Exception):
  803. """Origin Facts File Write Error"""
  804. pass
  805. class OpenShiftFactsMetadataUnavailableError(Exception):
  806. """Origin Facts Metadata Unavailable Error"""
  807. pass
  808. class OpenShiftFacts(object):
  809. """ Origin Facts
  810. Attributes:
  811. facts (dict): facts for the host
  812. Args:
  813. module (AnsibleModule): an AnsibleModule object
  814. role (str): role for setting local facts
  815. filename (str): local facts file to use
  816. local_facts (dict): local facts to set
  817. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  818. '.' notation ex: ['master.named_certificates']
  819. Raises:
  820. OpenShiftFactsUnsupportedRoleError:
  821. """
  822. known_roles = ['builddefaults',
  823. 'buildoverrides',
  824. 'cloudprovider',
  825. 'common',
  826. 'etcd',
  827. 'master',
  828. 'node']
  829. # Disabling too-many-arguments, this should be cleaned up as a TODO item.
  830. # pylint: disable=too-many-arguments,no-value-for-parameter
  831. def __init__(self, role, filename, local_facts,
  832. additive_facts_to_overwrite=None):
  833. self.changed = False
  834. self.filename = filename
  835. if role not in self.known_roles:
  836. raise OpenShiftFactsUnsupportedRoleError(
  837. "Role %s is not supported by this module" % role
  838. )
  839. self.role = role
  840. # Collect system facts and preface each fact with 'ansible_'.
  841. try:
  842. # pylint: disable=too-many-function-args,invalid-name
  843. self.system_facts = ansible_facts(module, ['hardware', 'network', 'virtual', 'facter']) # noqa: F405
  844. additional_facts = {}
  845. for (k, v) in self.system_facts.items():
  846. additional_facts["ansible_%s" % k.replace('-', '_')] = v
  847. self.system_facts.update(additional_facts)
  848. except UnboundLocalError:
  849. # ansible-2.2,2.3
  850. self.system_facts = get_all_facts(module)['ansible_facts'] # noqa: F405
  851. self.facts = self.generate_facts(local_facts,
  852. additive_facts_to_overwrite)
  853. def generate_facts(self,
  854. local_facts,
  855. additive_facts_to_overwrite):
  856. """ Generate facts
  857. Args:
  858. local_facts (dict): local_facts for overriding generated defaults
  859. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  860. '.' notation ex: ['master.named_certificates']
  861. Returns:
  862. dict: The generated facts
  863. """
  864. local_facts = self.init_local_facts(local_facts,
  865. additive_facts_to_overwrite)
  866. roles = local_facts.keys()
  867. defaults = self.get_defaults(roles)
  868. provider_facts = self.init_provider_facts()
  869. facts = apply_provider_facts(defaults, provider_facts)
  870. facts = merge_facts(facts,
  871. local_facts,
  872. additive_facts_to_overwrite)
  873. facts['current_config'] = get_current_config(facts)
  874. facts = set_url_facts_if_unset(facts)
  875. facts = set_sdn_facts_if_unset(facts, self.system_facts)
  876. facts = build_controller_args(facts)
  877. facts = build_api_server_args(facts)
  878. facts = set_aggregate_facts(facts)
  879. facts = set_proxy_facts(facts)
  880. facts = set_builddefaults_facts(facts)
  881. facts = set_buildoverrides_facts(facts)
  882. facts = set_nodename(facts)
  883. return dict(openshift=facts)
  884. def get_defaults(self, roles):
  885. """ Get default fact values
  886. Args:
  887. roles (list): list of roles for this host
  888. Returns:
  889. dict: The generated default facts
  890. """
  891. defaults = {}
  892. ip_addr = self.system_facts['ansible_default_ipv4']['address']
  893. exit_code, output, _ = module.run_command(['hostname', '-f']) # noqa: F405
  894. hostname_f = output.strip() if exit_code == 0 else ''
  895. hostname_values = [hostname_f, self.system_facts['ansible_nodename'],
  896. self.system_facts['ansible_fqdn']]
  897. hostname = choose_hostname(hostname_values, ip_addr).lower()
  898. exit_code, output, _ = module.run_command(['hostname']) # noqa: F405
  899. raw_hostname = output.strip() if exit_code == 0 else hostname
  900. defaults['common'] = dict(ip=ip_addr,
  901. public_ip=ip_addr,
  902. raw_hostname=raw_hostname,
  903. hostname=hostname,
  904. public_hostname=hostname,
  905. portal_net='172.30.0.0/16',
  906. dns_domain='cluster.local',
  907. config_base='/etc/origin')
  908. if 'master' in roles:
  909. defaults['master'] = dict(api_use_ssl=True, api_port='8443',
  910. controllers_port='8444',
  911. console_use_ssl=True,
  912. console_path='/console',
  913. console_port='8443',
  914. portal_net='172.30.0.0/16',
  915. bind_addr='0.0.0.0',
  916. session_max_seconds=3600,
  917. session_name='ssn')
  918. if 'cloudprovider' in roles:
  919. defaults['cloudprovider'] = dict(kind=None)
  920. return defaults
  921. def guess_host_provider(self):
  922. """ Guess the host provider
  923. Returns:
  924. dict: The generated default facts for the detected provider
  925. """
  926. # TODO: cloud provider facts should probably be submitted upstream
  927. product_name = self.system_facts['ansible_product_name']
  928. product_version = self.system_facts['ansible_product_version']
  929. virt_type = self.system_facts['ansible_virtualization_type']
  930. virt_role = self.system_facts['ansible_virtualization_role']
  931. bios_vendor = self.system_facts['ansible_system_vendor']
  932. provider = None
  933. metadata = None
  934. if bios_vendor == 'Google':
  935. provider = 'gce'
  936. metadata_url = ('http://metadata.google.internal/'
  937. 'computeMetadata/v1/?recursive=true')
  938. headers = {'Metadata-Flavor': 'Google'}
  939. metadata = get_provider_metadata(metadata_url, True, headers,
  940. True)
  941. # Filter sshKeys and serviceAccounts from gce metadata
  942. if metadata:
  943. metadata['project']['attributes'].pop('sshKeys', None)
  944. metadata['instance'].pop('serviceAccounts', None)
  945. elif bios_vendor == 'Amazon EC2':
  946. # Adds support for Amazon EC2 C5 instance types
  947. provider = 'aws'
  948. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  949. metadata = get_provider_metadata(metadata_url)
  950. elif virt_type == 'xen' and virt_role == 'guest' and re.match(r'.*\.amazon$', product_version):
  951. provider = 'aws'
  952. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  953. metadata = get_provider_metadata(metadata_url)
  954. elif re.search(r'OpenStack', product_name):
  955. provider = 'openstack'
  956. metadata_url = ('http://169.254.169.254/openstack/latest/'
  957. 'meta_data.json')
  958. metadata = get_provider_metadata(metadata_url, True, None,
  959. True)
  960. if metadata:
  961. ec2_compat_url = 'http://169.254.169.254/latest/meta-data/'
  962. metadata['ec2_compat'] = get_provider_metadata(
  963. ec2_compat_url
  964. )
  965. # disable pylint maybe-no-member because overloaded use of
  966. # the module name causes pylint to not detect that results
  967. # is an array or hash
  968. # pylint: disable=maybe-no-member
  969. # Filter public_keys and random_seed from openstack metadata
  970. metadata.pop('public_keys', None)
  971. metadata.pop('random_seed', None)
  972. if not metadata['ec2_compat']:
  973. metadata = None
  974. return dict(name=provider, metadata=metadata)
  975. def init_provider_facts(self):
  976. """ Initialize the provider facts
  977. Returns:
  978. dict: The normalized provider facts
  979. """
  980. provider_info = self.guess_host_provider()
  981. provider_facts = normalize_provider_facts(
  982. provider_info.get('name'),
  983. provider_info.get('metadata')
  984. )
  985. return provider_facts
  986. # Disabling too-many-branches and too-many-locals.
  987. # This should be cleaned up as a TODO item.
  988. # pylint: disable=too-many-branches, too-many-locals
  989. def init_local_facts(self, facts=None,
  990. additive_facts_to_overwrite=None):
  991. """ Initialize the local facts
  992. Args:
  993. facts (dict): local facts to set
  994. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  995. '.' notation ex: ['master.named_certificates']
  996. Returns:
  997. dict: The result of merging the provided facts with existing
  998. local facts
  999. """
  1000. changed = False
  1001. facts_to_set = dict()
  1002. if facts is not None:
  1003. facts_to_set[self.role] = facts
  1004. local_facts = get_local_facts_from_file(self.filename)
  1005. migrated_facts = migrate_local_facts(local_facts)
  1006. new_local_facts = merge_facts(migrated_facts,
  1007. facts_to_set,
  1008. additive_facts_to_overwrite)
  1009. new_local_facts = self.remove_empty_facts(new_local_facts)
  1010. pop_obsolete_local_facts(new_local_facts)
  1011. if new_local_facts != local_facts:
  1012. changed = True
  1013. if not module.check_mode: # noqa: F405
  1014. save_local_facts(self.filename, new_local_facts)
  1015. self.changed = changed
  1016. return new_local_facts
  1017. def remove_empty_facts(self, facts=None):
  1018. """ Remove empty facts
  1019. Args:
  1020. facts (dict): facts to clean
  1021. """
  1022. facts_to_remove = []
  1023. for fact, value in iteritems(facts):
  1024. if isinstance(facts[fact], dict):
  1025. facts[fact] = self.remove_empty_facts(facts[fact])
  1026. else:
  1027. if value == "" or value == [""] or value is None:
  1028. facts_to_remove.append(fact)
  1029. for fact in facts_to_remove:
  1030. del facts[fact]
  1031. return facts
  1032. def main():
  1033. """ main """
  1034. # disabling pylint errors for global-variable-undefined and invalid-name
  1035. # for 'global module' usage, since it is required to use ansible_facts
  1036. # pylint: disable=global-variable-undefined, invalid-name
  1037. global module
  1038. module = AnsibleModule( # noqa: F405
  1039. argument_spec=dict(
  1040. role=dict(default='common', required=False,
  1041. choices=OpenShiftFacts.known_roles),
  1042. local_facts=dict(default=None, type='dict', required=False),
  1043. additive_facts_to_overwrite=dict(default=[], type='list', required=False),
  1044. ),
  1045. supports_check_mode=True,
  1046. add_file_common_args=True,
  1047. )
  1048. module.params['gather_subset'] = ['hardware', 'network', 'virtual', 'facter'] # noqa: F405
  1049. module.params['gather_timeout'] = 10 # noqa: F405
  1050. module.params['filter'] = '*' # noqa: F405
  1051. role = module.params['role'] # noqa: F405
  1052. local_facts = module.params['local_facts'] # noqa: F405
  1053. additive_facts_to_overwrite = module.params['additive_facts_to_overwrite'] # noqa: F405
  1054. fact_file = '/etc/ansible/facts.d/openshift.fact'
  1055. openshift_facts = OpenShiftFacts(role,
  1056. fact_file,
  1057. local_facts,
  1058. additive_facts_to_overwrite)
  1059. file_params = module.params.copy() # noqa: F405
  1060. file_params['path'] = fact_file
  1061. file_args = module.load_file_common_arguments(file_params) # noqa: F405
  1062. changed = module.set_fs_attributes_if_different(file_args, # noqa: F405
  1063. openshift_facts.changed)
  1064. return module.exit_json(changed=changed, # noqa: F405
  1065. ansible_facts=openshift_facts.facts)
  1066. if __name__ == '__main__':
  1067. main()