openshift_facts.py 50 KB

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