openshift_facts.py 55 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438
  1. #!/usr/bin/python
  2. # pylint: disable=too-many-lines
  3. # -*- coding: utf-8 -*-
  4. # vim: expandtab:tabstop=4:shiftwidth=4
  5. # Reason: Disable pylint too-many-lines because we don't want to split up this file.
  6. # Status: Permanently disabled to keep this module as self-contained as possible.
  7. """Ansible module for retrieving and setting openshift related facts"""
  8. DOCUMENTATION = '''
  9. ---
  10. module: openshift_facts
  11. short_description: Cluster Facts
  12. author: Jason DeTiberus
  13. requirements: [ ]
  14. '''
  15. EXAMPLES = '''
  16. '''
  17. import ConfigParser
  18. import copy
  19. import os
  20. import StringIO
  21. import yaml
  22. from distutils.util import strtobool
  23. from distutils.version import LooseVersion
  24. import struct
  25. import socket
  26. def first_ip(network):
  27. """ Return the first IPv4 address in network
  28. Args:
  29. network (str): network in CIDR format
  30. Returns:
  31. str: first IPv4 address
  32. """
  33. atoi = lambda addr: struct.unpack("!I", socket.inet_aton(addr))[0]
  34. itoa = lambda addr: socket.inet_ntoa(struct.pack("!I", addr))
  35. (address, netmask) = network.split('/')
  36. netmask_i = (0xffffffff << (32 - atoi(netmask))) & 0xffffffff
  37. return itoa((atoi(address) & netmask_i) + 1)
  38. def hostname_valid(hostname):
  39. """ Test if specified hostname should be considered valid
  40. Args:
  41. hostname (str): hostname to test
  42. Returns:
  43. bool: True if valid, otherwise False
  44. """
  45. if (not hostname or
  46. hostname.startswith('localhost') or
  47. hostname.endswith('localdomain') or
  48. len(hostname.split('.')) < 2):
  49. return False
  50. return True
  51. def choose_hostname(hostnames=None, fallback=''):
  52. """ Choose a hostname from the provided hostnames
  53. Given a list of hostnames and a fallback value, choose a hostname to
  54. use. This function will prefer fqdns if they exist (excluding any that
  55. begin with localhost or end with localdomain) over ip addresses.
  56. Args:
  57. hostnames (list): list of hostnames
  58. fallback (str): default value to set if hostnames does not contain
  59. a valid hostname
  60. Returns:
  61. str: chosen hostname
  62. """
  63. hostname = fallback
  64. if hostnames is None:
  65. return hostname
  66. ip_regex = r'\A\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\Z'
  67. ips = [i for i in hostnames
  68. if (i is not None and isinstance(i, basestring)
  69. and re.match(ip_regex, i))]
  70. hosts = [i for i in hostnames
  71. if i is not None and i != '' and i not in ips]
  72. for host_list in (hosts, ips):
  73. for host in host_list:
  74. if hostname_valid(host):
  75. return host
  76. return hostname
  77. def query_metadata(metadata_url, headers=None, expect_json=False):
  78. """ Return metadata from the provided metadata_url
  79. Args:
  80. metadata_url (str): metadata url
  81. headers (dict): headers to set for metadata request
  82. expect_json (bool): does the metadata_url return json
  83. Returns:
  84. dict or list: metadata request result
  85. """
  86. result, info = fetch_url(module, metadata_url, headers=headers)
  87. if info['status'] != 200:
  88. raise OpenShiftFactsMetadataUnavailableError("Metadata unavailable")
  89. if expect_json:
  90. return module.from_json(result.read())
  91. else:
  92. return [line.strip() for line in result.readlines()]
  93. def walk_metadata(metadata_url, headers=None, expect_json=False):
  94. """ Walk the metadata tree and return a dictionary of the entire tree
  95. Args:
  96. metadata_url (str): metadata url
  97. headers (dict): headers to set for metadata request
  98. expect_json (bool): does the metadata_url return json
  99. Returns:
  100. dict: the result of walking the metadata tree
  101. """
  102. metadata = dict()
  103. for line in query_metadata(metadata_url, headers, expect_json):
  104. if line.endswith('/') and not line == 'public-keys/':
  105. key = line[:-1]
  106. metadata[key] = walk_metadata(metadata_url + line,
  107. headers, expect_json)
  108. else:
  109. results = query_metadata(metadata_url + line, headers,
  110. expect_json)
  111. if len(results) == 1:
  112. # disable pylint maybe-no-member because overloaded use of
  113. # the module name causes pylint to not detect that results
  114. # is an array or hash
  115. # pylint: disable=maybe-no-member
  116. metadata[line] = results.pop()
  117. else:
  118. metadata[line] = results
  119. return metadata
  120. def get_provider_metadata(metadata_url, supports_recursive=False,
  121. headers=None, expect_json=False):
  122. """ Retrieve the provider metadata
  123. Args:
  124. metadata_url (str): metadata url
  125. supports_recursive (bool): does the provider metadata api support
  126. recursion
  127. headers (dict): headers to set for metadata request
  128. expect_json (bool): does the metadata_url return json
  129. Returns:
  130. dict: the provider metadata
  131. """
  132. try:
  133. if supports_recursive:
  134. metadata = query_metadata(metadata_url, headers,
  135. expect_json)
  136. else:
  137. metadata = walk_metadata(metadata_url, headers,
  138. expect_json)
  139. except OpenShiftFactsMetadataUnavailableError:
  140. metadata = None
  141. return metadata
  142. def normalize_gce_facts(metadata, facts):
  143. """ Normalize gce facts
  144. Args:
  145. metadata (dict): provider metadata
  146. facts (dict): facts to update
  147. Returns:
  148. dict: the result of adding the normalized metadata to the provided
  149. facts dict
  150. """
  151. for interface in metadata['instance']['networkInterfaces']:
  152. int_info = dict(ips=[interface['ip']], network_type='gce')
  153. int_info['public_ips'] = [ac['externalIp'] for ac
  154. in interface['accessConfigs']]
  155. int_info['public_ips'].extend(interface['forwardedIps'])
  156. _, _, network_id = interface['network'].rpartition('/')
  157. int_info['network_id'] = network_id
  158. facts['network']['interfaces'].append(int_info)
  159. _, _, zone = metadata['instance']['zone'].rpartition('/')
  160. facts['zone'] = zone
  161. # GCE currently only supports a single interface
  162. facts['network']['ip'] = facts['network']['interfaces'][0]['ips'][0]
  163. pub_ip = facts['network']['interfaces'][0]['public_ips'][0]
  164. facts['network']['public_ip'] = pub_ip
  165. facts['network']['hostname'] = metadata['instance']['hostname']
  166. # TODO: attempt to resolve public_hostname
  167. facts['network']['public_hostname'] = facts['network']['public_ip']
  168. return facts
  169. def normalize_aws_facts(metadata, facts):
  170. """ Normalize aws facts
  171. Args:
  172. metadata (dict): provider metadata
  173. facts (dict): facts to update
  174. Returns:
  175. dict: the result of adding the normalized metadata to the provided
  176. facts dict
  177. """
  178. for interface in sorted(
  179. metadata['network']['interfaces']['macs'].values(),
  180. key=lambda x: x['device-number']
  181. ):
  182. int_info = dict()
  183. var_map = {'ips': 'local-ipv4s', 'public_ips': 'public-ipv4s'}
  184. for ips_var, int_var in var_map.iteritems():
  185. ips = interface.get(int_var)
  186. if isinstance(ips, basestring):
  187. int_info[ips_var] = [ips]
  188. else:
  189. int_info[ips_var] = ips
  190. if 'vpc-id' in interface:
  191. int_info['network_type'] = 'vpc'
  192. else:
  193. int_info['network_type'] = 'classic'
  194. if int_info['network_type'] == 'vpc':
  195. int_info['network_id'] = interface['subnet-id']
  196. else:
  197. int_info['network_id'] = None
  198. facts['network']['interfaces'].append(int_info)
  199. facts['zone'] = metadata['placement']['availability-zone']
  200. # TODO: actually attempt to determine default local and public ips
  201. # by using the ansible default ip fact and the ipv4-associations
  202. # from the ec2 metadata
  203. facts['network']['ip'] = metadata.get('local-ipv4')
  204. facts['network']['public_ip'] = metadata.get('public-ipv4')
  205. # TODO: verify that local hostname makes sense and is resolvable
  206. facts['network']['hostname'] = metadata.get('local-hostname')
  207. # TODO: verify that public hostname makes sense and is resolvable
  208. facts['network']['public_hostname'] = metadata.get('public-hostname')
  209. return facts
  210. def normalize_openstack_facts(metadata, facts):
  211. """ Normalize openstack facts
  212. Args:
  213. metadata (dict): provider metadata
  214. facts (dict): facts to update
  215. Returns:
  216. dict: the result of adding the normalized metadata to the provided
  217. facts dict
  218. """
  219. # openstack ec2 compat api does not support network interfaces and
  220. # the version tested on did not include the info in the openstack
  221. # metadata api, should be updated if neutron exposes this.
  222. facts['zone'] = metadata['availability_zone']
  223. local_ipv4 = metadata['ec2_compat']['local-ipv4'].split(',')[0]
  224. facts['network']['ip'] = local_ipv4
  225. facts['network']['public_ip'] = metadata['ec2_compat']['public-ipv4']
  226. # TODO: verify local hostname makes sense and is resolvable
  227. facts['network']['hostname'] = metadata['hostname']
  228. # TODO: verify that public hostname makes sense and is resolvable
  229. pub_h = metadata['ec2_compat']['public-hostname']
  230. facts['network']['public_hostname'] = pub_h
  231. return facts
  232. def normalize_provider_facts(provider, metadata):
  233. """ Normalize provider facts
  234. Args:
  235. provider (str): host provider
  236. metadata (dict): provider metadata
  237. Returns:
  238. dict: the normalized provider facts
  239. """
  240. if provider is None or metadata is None:
  241. return {}
  242. # TODO: test for ipv6_enabled where possible (gce, aws do not support)
  243. # and configure ipv6 facts if available
  244. # TODO: add support for setting user_data if available
  245. facts = dict(name=provider, metadata=metadata,
  246. network=dict(interfaces=[], ipv6_enabled=False))
  247. if provider == 'gce':
  248. facts = normalize_gce_facts(metadata, facts)
  249. elif provider == 'ec2':
  250. facts = normalize_aws_facts(metadata, facts)
  251. elif provider == 'openstack':
  252. facts = normalize_openstack_facts(metadata, facts)
  253. return facts
  254. def set_fluentd_facts_if_unset(facts):
  255. """ Set fluentd facts if not already present in facts dict
  256. dict: the facts dict updated with the generated fluentd facts if
  257. missing
  258. Args:
  259. facts (dict): existing facts
  260. Returns:
  261. dict: the facts dict updated with the generated fluentd
  262. facts if they were not already present
  263. """
  264. if 'common' in facts:
  265. if 'use_fluentd' not in facts['common']:
  266. use_fluentd = False
  267. facts['common']['use_fluentd'] = use_fluentd
  268. return facts
  269. def set_flannel_facts_if_unset(facts):
  270. """ Set flannel facts if not already present in facts dict
  271. dict: the facts dict updated with the flannel facts if
  272. missing
  273. Args:
  274. facts (dict): existing facts
  275. Returns:
  276. dict: the facts dict updated with the flannel
  277. facts if they were not already present
  278. """
  279. if 'common' in facts:
  280. if 'use_flannel' not in facts['common']:
  281. use_flannel = False
  282. facts['common']['use_flannel'] = use_flannel
  283. return facts
  284. def set_nuage_facts_if_unset(facts):
  285. """ Set nuage facts if not already present in facts dict
  286. dict: the facts dict updated with the nuage facts if
  287. missing
  288. Args:
  289. facts (dict): existing facts
  290. Returns:
  291. dict: the facts dict updated with the nuage
  292. facts if they were not already present
  293. """
  294. if 'common' in facts:
  295. if 'use_nuage' not in facts['common']:
  296. use_nuage = False
  297. facts['common']['use_nuage'] = use_nuage
  298. return facts
  299. def set_node_schedulability(facts):
  300. """ Set schedulable facts if not already present in facts dict
  301. Args:
  302. facts (dict): existing facts
  303. Returns:
  304. dict: the facts dict updated with the generated schedulable
  305. facts if they were not already present
  306. """
  307. if 'node' in facts:
  308. if 'schedulable' not in facts['node']:
  309. if 'master' in facts:
  310. facts['node']['schedulable'] = False
  311. else:
  312. facts['node']['schedulable'] = True
  313. return facts
  314. def set_master_selectors(facts):
  315. """ Set selectors facts if not already present in facts dict
  316. Args:
  317. facts (dict): existing facts
  318. Returns:
  319. dict: the facts dict updated with the generated selectors
  320. facts if they were not already present
  321. """
  322. if 'master' in facts:
  323. if 'infra_nodes' in facts['master']:
  324. deployment_type = facts['common']['deployment_type']
  325. if deployment_type == 'online':
  326. selector = "type=infra"
  327. else:
  328. selector = "region=infra"
  329. if 'router_selector' not in facts['master']:
  330. facts['master']['router_selector'] = selector
  331. if 'registry_selector' not in facts['master']:
  332. facts['master']['registry_selector'] = selector
  333. return facts
  334. def set_metrics_facts_if_unset(facts):
  335. """ Set cluster metrics facts if not already present in facts dict
  336. dict: the facts dict updated with the generated cluster metrics facts if
  337. missing
  338. Args:
  339. facts (dict): existing facts
  340. Returns:
  341. dict: the facts dict updated with the generated cluster metrics
  342. facts if they were not already present
  343. """
  344. if 'common' in facts:
  345. if 'use_cluster_metrics' not in facts['common']:
  346. use_cluster_metrics = False
  347. facts['common']['use_cluster_metrics'] = use_cluster_metrics
  348. return facts
  349. def set_project_cfg_facts_if_unset(facts):
  350. """ Set Project Configuration facts if not already present in facts dict
  351. dict:
  352. Args:
  353. facts (dict): existing facts
  354. Returns:
  355. dict: the facts dict updated with the generated Project Configuration
  356. facts if they were not already present
  357. """
  358. config = {
  359. 'default_node_selector': '',
  360. 'project_request_message': '',
  361. 'project_request_template': '',
  362. 'mcs_allocator_range': 's0:/2',
  363. 'mcs_labels_per_project': 5,
  364. 'uid_allocator_range': '1000000000-1999999999/10000'
  365. }
  366. if 'master' in facts:
  367. for key, value in config.items():
  368. if key not in facts['master']:
  369. facts['master'][key] = value
  370. return facts
  371. def set_identity_providers_if_unset(facts):
  372. """ Set identity_providers fact if not already present in facts dict
  373. Args:
  374. facts (dict): existing facts
  375. Returns:
  376. dict: the facts dict updated with the generated identity providers
  377. facts if they were not already present
  378. """
  379. if 'master' in facts:
  380. deployment_type = facts['common']['deployment_type']
  381. if 'identity_providers' not in facts['master']:
  382. identity_provider = dict(
  383. name='allow_all', challenge=True, login=True,
  384. kind='AllowAllPasswordIdentityProvider'
  385. )
  386. if deployment_type in ['enterprise', 'atomic-enterprise', 'openshift-enterprise']:
  387. identity_provider = dict(
  388. name='deny_all', challenge=True, login=True,
  389. kind='DenyAllPasswordIdentityProvider'
  390. )
  391. facts['master']['identity_providers'] = [identity_provider]
  392. return facts
  393. def set_url_facts_if_unset(facts):
  394. """ Set url facts if not already present in facts dict
  395. Args:
  396. facts (dict): existing facts
  397. Returns:
  398. dict: the facts dict updated with the generated url facts if they
  399. were not already present
  400. """
  401. if 'master' in facts:
  402. hostname = facts['common']['hostname']
  403. cluster_hostname = facts['master'].get('cluster_hostname')
  404. cluster_public_hostname = facts['master'].get('cluster_public_hostname')
  405. public_hostname = facts['common']['public_hostname']
  406. api_hostname = cluster_hostname if cluster_hostname else hostname
  407. api_public_hostname = cluster_public_hostname if cluster_public_hostname else public_hostname
  408. console_path = facts['master']['console_path']
  409. etcd_hosts = facts['master']['etcd_hosts']
  410. use_ssl = dict(
  411. api=facts['master']['api_use_ssl'],
  412. public_api=facts['master']['api_use_ssl'],
  413. loopback_api=facts['master']['api_use_ssl'],
  414. console=facts['master']['console_use_ssl'],
  415. public_console=facts['master']['console_use_ssl'],
  416. etcd=facts['master']['etcd_use_ssl']
  417. )
  418. ports = dict(
  419. api=facts['master']['api_port'],
  420. public_api=facts['master']['api_port'],
  421. loopback_api=facts['master']['api_port'],
  422. console=facts['master']['console_port'],
  423. public_console=facts['master']['console_port'],
  424. etcd=facts['master']['etcd_port'],
  425. )
  426. etcd_urls = []
  427. if etcd_hosts != '':
  428. facts['master']['etcd_port'] = ports['etcd']
  429. facts['master']['embedded_etcd'] = False
  430. for host in etcd_hosts:
  431. etcd_urls.append(format_url(use_ssl['etcd'], host,
  432. ports['etcd']))
  433. else:
  434. etcd_urls = [format_url(use_ssl['etcd'], hostname,
  435. ports['etcd'])]
  436. facts['master'].setdefault('etcd_urls', etcd_urls)
  437. prefix_hosts = [('api', api_hostname),
  438. ('public_api', api_public_hostname),
  439. ('loopback_api', hostname)]
  440. for prefix, host in prefix_hosts:
  441. facts['master'].setdefault(prefix + '_url', format_url(use_ssl[prefix],
  442. host,
  443. ports[prefix]))
  444. r_lhn = "{0}:{1}".format(api_hostname, ports['api']).replace('.', '-')
  445. facts['master'].setdefault('loopback_cluster_name', r_lhn)
  446. facts['master'].setdefault('loopback_context_name', "default/{0}/system:openshift-master".format(r_lhn))
  447. facts['master'].setdefault('loopback_user', "system:openshift-master/{0}".format(r_lhn))
  448. prefix_hosts = [('console', api_hostname), ('public_console', api_public_hostname)]
  449. for prefix, host in prefix_hosts:
  450. facts['master'].setdefault(prefix + '_url', format_url(use_ssl[prefix],
  451. host,
  452. ports[prefix],
  453. console_path))
  454. return facts
  455. def set_aggregate_facts(facts):
  456. """ Set aggregate facts
  457. Args:
  458. facts (dict): existing facts
  459. Returns:
  460. dict: the facts dict updated with aggregated facts
  461. """
  462. all_hostnames = set()
  463. internal_hostnames = set()
  464. if 'common' in facts:
  465. all_hostnames.add(facts['common']['hostname'])
  466. all_hostnames.add(facts['common']['public_hostname'])
  467. all_hostnames.add(facts['common']['ip'])
  468. all_hostnames.add(facts['common']['public_ip'])
  469. internal_hostnames.add(facts['common']['hostname'])
  470. internal_hostnames.add(facts['common']['ip'])
  471. cluster_domain = facts['common']['dns_domain']
  472. if 'master' in facts:
  473. if 'cluster_hostname' in facts['master']:
  474. all_hostnames.add(facts['master']['cluster_hostname'])
  475. if 'cluster_public_hostname' in facts['master']:
  476. all_hostnames.add(facts['master']['cluster_public_hostname'])
  477. svc_names = ['openshift', 'openshift.default', 'openshift.default.svc',
  478. 'openshift.default.svc.' + cluster_domain, 'kubernetes', 'kubernetes.default',
  479. 'kubernetes.default.svc', 'kubernetes.default.svc.' + cluster_domain]
  480. all_hostnames.update(svc_names)
  481. internal_hostnames.update(svc_names)
  482. first_svc_ip = first_ip(facts['master']['portal_net'])
  483. all_hostnames.add(first_svc_ip)
  484. internal_hostnames.add(first_svc_ip)
  485. facts['common']['all_hostnames'] = list(all_hostnames)
  486. facts['common']['internal_hostnames'] = list(internal_hostnames)
  487. return facts
  488. def set_etcd_facts_if_unset(facts):
  489. """
  490. If using embedded etcd, loads the data directory from master-config.yaml.
  491. If using standalone etcd, loads ETCD_DATA_DIR from etcd.conf.
  492. If anything goes wrong parsing these, the fact will not be set.
  493. """
  494. if 'master' in facts and facts['master']['embedded_etcd']:
  495. etcd_facts = facts['etcd'] if 'etcd' in facts else dict()
  496. if 'etcd_data_dir' not in etcd_facts:
  497. try:
  498. # Parse master config to find actual etcd data dir:
  499. master_cfg_path = os.path.join(facts['common']['config_base'],
  500. 'master/master-config.yaml')
  501. master_cfg_f = open(master_cfg_path, 'r')
  502. config = yaml.safe_load(master_cfg_f.read())
  503. master_cfg_f.close()
  504. etcd_facts['etcd_data_dir'] = \
  505. config['etcdConfig']['storageDirectory']
  506. facts['etcd'] = etcd_facts
  507. # We don't want exceptions bubbling up here:
  508. # pylint: disable=broad-except
  509. except Exception:
  510. pass
  511. else:
  512. etcd_facts = facts['etcd'] if 'etcd' in facts else dict()
  513. # Read ETCD_DATA_DIR from /etc/etcd/etcd.conf:
  514. try:
  515. # Add a fake section for parsing:
  516. ini_str = '[root]\n' + open('/etc/etcd/etcd.conf', 'r').read()
  517. ini_fp = StringIO.StringIO(ini_str)
  518. config = ConfigParser.RawConfigParser()
  519. config.readfp(ini_fp)
  520. etcd_data_dir = config.get('root', 'ETCD_DATA_DIR')
  521. if etcd_data_dir.startswith('"') and etcd_data_dir.endswith('"'):
  522. etcd_data_dir = etcd_data_dir[1:-1]
  523. etcd_facts['etcd_data_dir'] = etcd_data_dir
  524. facts['etcd'] = etcd_facts
  525. # We don't want exceptions bubbling up here:
  526. # pylint: disable=broad-except
  527. except Exception:
  528. pass
  529. return facts
  530. def set_deployment_facts_if_unset(facts):
  531. """ Set Facts that vary based on deployment_type. This currently
  532. includes common.service_type, common.config_base, master.registry_url,
  533. node.registry_url, node.storage_plugin_deps
  534. Args:
  535. facts (dict): existing facts
  536. Returns:
  537. dict: the facts dict updated with the generated deployment_type
  538. facts
  539. """
  540. # disabled to avoid breaking up facts related to deployment type into
  541. # multiple methods for now.
  542. # pylint: disable=too-many-statements, too-many-branches
  543. if 'common' in facts:
  544. deployment_type = facts['common']['deployment_type']
  545. if 'service_type' not in facts['common']:
  546. service_type = 'atomic-openshift'
  547. if deployment_type == 'origin':
  548. service_type = 'origin'
  549. elif deployment_type in ['enterprise']:
  550. service_type = 'openshift'
  551. facts['common']['service_type'] = service_type
  552. if 'config_base' not in facts['common']:
  553. config_base = '/etc/origin'
  554. if deployment_type in ['enterprise']:
  555. config_base = '/etc/openshift'
  556. # Handle upgrade scenarios when symlinks don't yet exist:
  557. if not os.path.exists(config_base) and os.path.exists('/etc/openshift'):
  558. config_base = '/etc/openshift'
  559. facts['common']['config_base'] = config_base
  560. if 'data_dir' not in facts['common']:
  561. data_dir = '/var/lib/origin'
  562. if deployment_type in ['enterprise']:
  563. data_dir = '/var/lib/openshift'
  564. # Handle upgrade scenarios when symlinks don't yet exist:
  565. if not os.path.exists(data_dir) and os.path.exists('/var/lib/openshift'):
  566. data_dir = '/var/lib/openshift'
  567. facts['common']['data_dir'] = data_dir
  568. # remove duplicate and empty strings from registry lists
  569. for cat in ['additional', 'blocked', 'insecure']:
  570. key = 'docker_{0}_registries'.format(cat)
  571. if key in facts['common']:
  572. facts['common'][key] = list(set(facts['common'][key]) - set(['']))
  573. if deployment_type in ['enterprise', 'atomic-enterprise', 'openshift-enterprise']:
  574. addtl_regs = facts['common'].get('docker_additional_registries', [])
  575. ent_reg = 'registry.access.redhat.com'
  576. if ent_reg not in addtl_regs:
  577. facts['common']['docker_additional_registries'] = addtl_regs + [ent_reg]
  578. for role in ('master', 'node'):
  579. if role in facts:
  580. deployment_type = facts['common']['deployment_type']
  581. if 'registry_url' not in facts[role]:
  582. registry_url = 'openshift/origin-${component}:${version}'
  583. if deployment_type in ['enterprise', 'online', 'openshift-enterprise']:
  584. registry_url = 'openshift3/ose-${component}:${version}'
  585. elif deployment_type == 'atomic-enterprise':
  586. registry_url = 'aep3_beta/aep-${component}:${version}'
  587. facts[role]['registry_url'] = registry_url
  588. if 'master' in facts:
  589. deployment_type = facts['common']['deployment_type']
  590. openshift_features = ['Builder', 'S2IBuilder', 'WebConsole']
  591. if 'disabled_features' in facts['master']:
  592. if deployment_type == 'atomic-enterprise':
  593. curr_disabled_features = set(facts['master']['disabled_features'])
  594. facts['master']['disabled_features'] = list(curr_disabled_features.union(openshift_features))
  595. else:
  596. if deployment_type == 'atomic-enterprise':
  597. facts['master']['disabled_features'] = openshift_features
  598. if 'node' in facts:
  599. deployment_type = facts['common']['deployment_type']
  600. if 'storage_plugin_deps' not in facts['node']:
  601. if deployment_type in ['openshift-enterprise', 'atomic-enterprise']:
  602. facts['node']['storage_plugin_deps'] = ['ceph', 'glusterfs']
  603. else:
  604. facts['node']['storage_plugin_deps'] = []
  605. return facts
  606. def set_version_facts_if_unset(facts):
  607. """ Set version facts. This currently includes common.version and
  608. common.version_greater_than_3_1_or_1_1.
  609. Args:
  610. facts (dict): existing facts
  611. Returns:
  612. dict: the facts dict updated with version facts.
  613. """
  614. if 'common' in facts:
  615. deployment_type = facts['common']['deployment_type']
  616. facts['common']['version'] = version = get_openshift_version()
  617. if version is not None:
  618. if deployment_type == 'origin':
  619. version_gt_3_1_or_1_1 = LooseVersion(version) > LooseVersion('1.0.6')
  620. version_gt_3_1_1_or_1_1_1 = LooseVersion(version) > LooseVersion('1.1.1')
  621. else:
  622. version_gt_3_1_or_1_1 = LooseVersion(version) > LooseVersion('3.0.2.900')
  623. version_gt_3_1_1_or_1_1_1 = LooseVersion(version) > LooseVersion('3.1.1')
  624. else:
  625. version_gt_3_1_or_1_1 = True
  626. version_gt_3_1_1_or_1_1_1 = True
  627. facts['common']['version_greater_than_3_1_or_1_1'] = version_gt_3_1_or_1_1
  628. facts['common']['version_greater_than_3_1_1_or_1_1_1'] = version_gt_3_1_1_or_1_1_1
  629. return facts
  630. def set_manageiq_facts_if_unset(facts):
  631. """ Set manageiq facts. This currently includes common.use_manageiq.
  632. Args:
  633. facts (dict): existing facts
  634. Returns:
  635. dict: the facts dict updated with version facts.
  636. Raises:
  637. OpenShiftFactsInternalError:
  638. """
  639. if 'common' not in facts:
  640. if 'version_greater_than_3_1_or_1_1' not in facts['common']:
  641. raise OpenShiftFactsInternalError(
  642. "Invalid invocation: The required facts are not set"
  643. )
  644. if 'use_manageiq' not in facts['common']:
  645. facts['common']['use_manageiq'] = facts['common']['version_greater_than_3_1_or_1_1']
  646. return facts
  647. def set_sdn_facts_if_unset(facts, system_facts):
  648. """ Set sdn facts if not already present in facts dict
  649. Args:
  650. facts (dict): existing facts
  651. system_facts (dict): ansible_facts
  652. Returns:
  653. dict: the facts dict updated with the generated sdn facts if they
  654. were not already present
  655. """
  656. if 'common' in facts:
  657. use_sdn = facts['common']['use_openshift_sdn']
  658. if not (use_sdn == '' or isinstance(use_sdn, bool)):
  659. use_sdn = bool(strtobool(str(use_sdn)))
  660. facts['common']['use_openshift_sdn'] = use_sdn
  661. if 'sdn_network_plugin_name' not in facts['common']:
  662. plugin = 'redhat/openshift-ovs-subnet' if use_sdn else ''
  663. facts['common']['sdn_network_plugin_name'] = plugin
  664. if 'master' in facts:
  665. if 'sdn_cluster_network_cidr' not in facts['master']:
  666. facts['master']['sdn_cluster_network_cidr'] = '10.1.0.0/16'
  667. if 'sdn_host_subnet_length' not in facts['master']:
  668. facts['master']['sdn_host_subnet_length'] = '8'
  669. if 'node' in facts and 'sdn_mtu' not in facts['node']:
  670. node_ip = facts['common']['ip']
  671. # default MTU if interface MTU cannot be detected
  672. facts['node']['sdn_mtu'] = '1450'
  673. for val in system_facts.itervalues():
  674. if isinstance(val, dict) and 'mtu' in val:
  675. mtu = val['mtu']
  676. if 'ipv4' in val and val['ipv4'].get('address') == node_ip:
  677. facts['node']['sdn_mtu'] = str(mtu - 50)
  678. return facts
  679. def format_url(use_ssl, hostname, port, path=''):
  680. """ Format url based on ssl flag, hostname, port and path
  681. Args:
  682. use_ssl (bool): is ssl enabled
  683. hostname (str): hostname
  684. port (str): port
  685. path (str): url path
  686. Returns:
  687. str: The generated url string
  688. """
  689. scheme = 'https' if use_ssl else 'http'
  690. netloc = hostname
  691. if (use_ssl and port != '443') or (not use_ssl and port != '80'):
  692. netloc += ":%s" % port
  693. return urlparse.urlunparse((scheme, netloc, path, '', '', ''))
  694. def get_current_config(facts):
  695. """ Get current openshift config
  696. Args:
  697. facts (dict): existing facts
  698. Returns:
  699. dict: the facts dict updated with the current openshift config
  700. """
  701. current_config = dict()
  702. roles = [role for role in facts if role not in ['common', 'provider']]
  703. for role in roles:
  704. if 'roles' in current_config:
  705. current_config['roles'].append(role)
  706. else:
  707. current_config['roles'] = [role]
  708. # TODO: parse the /etc/sysconfig/openshift-{master,node} config to
  709. # determine the location of files.
  710. # TODO: I suspect this isn't working right now, but it doesn't prevent
  711. # anything from working properly as far as I can tell, perhaps because
  712. # we override the kubeconfig path everywhere we use it?
  713. # Query kubeconfig settings
  714. kubeconfig_dir = '/var/lib/origin/openshift.local.certificates'
  715. if role == 'node':
  716. kubeconfig_dir = os.path.join(
  717. kubeconfig_dir, "node-%s" % facts['common']['hostname']
  718. )
  719. kubeconfig_path = os.path.join(kubeconfig_dir, '.kubeconfig')
  720. if (os.path.isfile('/usr/bin/openshift')
  721. and os.path.isfile(kubeconfig_path)):
  722. try:
  723. _, output, _ = module.run_command(
  724. ["/usr/bin/openshift", "ex", "config", "view", "-o",
  725. "json", "--kubeconfig=%s" % kubeconfig_path],
  726. check_rc=False
  727. )
  728. config = json.loads(output)
  729. cad = 'certificate-authority-data'
  730. try:
  731. for cluster in config['clusters']:
  732. config['clusters'][cluster][cad] = 'masked'
  733. except KeyError:
  734. pass
  735. try:
  736. for user in config['users']:
  737. config['users'][user][cad] = 'masked'
  738. config['users'][user]['client-key-data'] = 'masked'
  739. except KeyError:
  740. pass
  741. current_config['kubeconfig'] = config
  742. # override pylint broad-except warning, since we do not want
  743. # to bubble up any exceptions if oc config view
  744. # fails
  745. # pylint: disable=broad-except
  746. except Exception:
  747. pass
  748. return current_config
  749. def get_openshift_version():
  750. """ Get current version of openshift on the host
  751. Returns:
  752. version: the current openshift version
  753. """
  754. version = None
  755. if os.path.isfile('/usr/bin/openshift'):
  756. _, output, _ = module.run_command(['/usr/bin/openshift', 'version'])
  757. versions = dict(e.split(' v') for e in output.splitlines() if ' v' in e)
  758. version = versions.get('openshift', '')
  759. #TODO: acknowledge the possility of a containerized install
  760. return version
  761. def apply_provider_facts(facts, provider_facts):
  762. """ Apply provider facts to supplied facts dict
  763. Args:
  764. facts (dict): facts dict to update
  765. provider_facts (dict): provider facts to apply
  766. roles: host roles
  767. Returns:
  768. dict: the merged facts
  769. """
  770. if not provider_facts:
  771. return facts
  772. common_vars = [('hostname', 'ip'), ('public_hostname', 'public_ip')]
  773. for h_var, ip_var in common_vars:
  774. ip_value = provider_facts['network'].get(ip_var)
  775. if ip_value:
  776. facts['common'][ip_var] = ip_value
  777. facts['common'][h_var] = choose_hostname(
  778. [provider_facts['network'].get(h_var)],
  779. facts['common'][ip_var]
  780. )
  781. facts['provider'] = provider_facts
  782. return facts
  783. def merge_facts(orig, new, additive_facts_to_overwrite):
  784. """ Recursively merge facts dicts
  785. Args:
  786. orig (dict): existing facts
  787. new (dict): facts to update
  788. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  789. '.' notation ex: ['master.named_certificates']
  790. Returns:
  791. dict: the merged facts
  792. """
  793. additive_facts = ['named_certificates']
  794. facts = dict()
  795. for key, value in orig.iteritems():
  796. if key in new:
  797. if isinstance(value, dict) and isinstance(new[key], dict):
  798. relevant_additive_facts = []
  799. # Keep additive_facts_to_overwrite if key matches
  800. for item in additive_facts_to_overwrite:
  801. if '.' in item and item.startswith(key + '.'):
  802. relevant_additive_facts.append(item)
  803. facts[key] = merge_facts(value, new[key], relevant_additive_facts)
  804. elif key in additive_facts and key not in [x.split('.')[-1] for x in additive_facts_to_overwrite]:
  805. # Fact is additive so we'll combine orig and new.
  806. if isinstance(value, list) and isinstance(new[key], list):
  807. new_fact = []
  808. for item in copy.deepcopy(value) + copy.copy(new[key]):
  809. if item not in new_fact:
  810. new_fact.append(item)
  811. facts[key] = new_fact
  812. else:
  813. facts[key] = copy.copy(new[key])
  814. else:
  815. facts[key] = copy.deepcopy(value)
  816. new_keys = set(new.keys()) - set(orig.keys())
  817. for key in new_keys:
  818. facts[key] = copy.deepcopy(new[key])
  819. return facts
  820. def save_local_facts(filename, facts):
  821. """ Save local facts
  822. Args:
  823. filename (str): local facts file
  824. facts (dict): facts to set
  825. """
  826. try:
  827. fact_dir = os.path.dirname(filename)
  828. if not os.path.exists(fact_dir):
  829. os.makedirs(fact_dir)
  830. with open(filename, 'w') as fact_file:
  831. fact_file.write(module.jsonify(facts))
  832. os.chmod(filename, 0o600)
  833. except (IOError, OSError) as ex:
  834. raise OpenShiftFactsFileWriteError(
  835. "Could not create fact file: %s, error: %s" % (filename, ex)
  836. )
  837. def get_local_facts_from_file(filename):
  838. """ Retrieve local facts from fact file
  839. Args:
  840. filename (str): local facts file
  841. Returns:
  842. dict: the retrieved facts
  843. """
  844. local_facts = dict()
  845. try:
  846. # Handle conversion of INI style facts file to json style
  847. ini_facts = ConfigParser.SafeConfigParser()
  848. ini_facts.read(filename)
  849. for section in ini_facts.sections():
  850. local_facts[section] = dict()
  851. for key, value in ini_facts.items(section):
  852. local_facts[section][key] = value
  853. except (ConfigParser.MissingSectionHeaderError,
  854. ConfigParser.ParsingError):
  855. try:
  856. with open(filename, 'r') as facts_file:
  857. local_facts = json.load(facts_file)
  858. except (ValueError, IOError):
  859. pass
  860. return local_facts
  861. def set_container_facts_if_unset(facts):
  862. """ Set containerized facts.
  863. Args:
  864. facts (dict): existing facts
  865. Returns:
  866. dict: the facts dict updated with the generated containerization
  867. facts
  868. """
  869. deployment_type = facts['common']['deployment_type']
  870. if deployment_type in ['enterprise', 'openshift-enterprise']:
  871. master_image = 'openshift3/ose'
  872. cli_image = master_image
  873. node_image = 'openshift3/node'
  874. ovs_image = 'openshift3/openvswitch'
  875. etcd_image = 'registry.access.redhat.com/rhel7/etcd'
  876. elif deployment_type == 'atomic-enterprise':
  877. master_image = 'aep3_beta/aep'
  878. cli_image = master_image
  879. node_image = 'aep3_beta/node'
  880. ovs_image = 'aep3_beta/openvswitch'
  881. etcd_image = 'registry.access.redhat.com/rhel7/etcd'
  882. else:
  883. master_image = 'openshift/origin'
  884. cli_image = master_image
  885. node_image = 'openshift/node'
  886. ovs_image = 'openshift/openvswitch'
  887. etcd_image = 'registry.access.redhat.com/rhel7/etcd'
  888. facts['common']['is_atomic'] = os.path.isfile('/run/ostree-booted')
  889. if 'is_containerized' not in facts['common']:
  890. facts['common']['is_containerized'] = facts['common']['is_atomic']
  891. if 'cli_image' not in facts['common']:
  892. facts['common']['cli_image'] = cli_image
  893. if 'etcd' in facts and 'etcd_image' not in facts['etcd']:
  894. facts['etcd']['etcd_image'] = etcd_image
  895. if 'master' in facts and 'master_image' not in facts['master']:
  896. facts['master']['master_image'] = master_image
  897. if 'node' in facts:
  898. if 'node_image' not in facts['node']:
  899. facts['node']['node_image'] = node_image
  900. if 'ovs_image' not in facts['node']:
  901. facts['node']['ovs_image'] = ovs_image
  902. if facts['common']['is_containerized']:
  903. facts['common']['admin_binary'] = '/usr/local/bin/oadm'
  904. facts['common']['client_binary'] = '/usr/local/bin/oc'
  905. return facts
  906. class OpenShiftFactsInternalError(Exception):
  907. """Origin Facts Error"""
  908. pass
  909. class OpenShiftFactsUnsupportedRoleError(Exception):
  910. """Origin Facts Unsupported Role Error"""
  911. pass
  912. class OpenShiftFactsFileWriteError(Exception):
  913. """Origin Facts File Write Error"""
  914. pass
  915. class OpenShiftFactsMetadataUnavailableError(Exception):
  916. """Origin Facts Metadata Unavailable Error"""
  917. pass
  918. class OpenShiftFacts(object):
  919. """ Origin Facts
  920. Attributes:
  921. facts (dict): facts for the host
  922. Args:
  923. module (AnsibleModule): an AnsibleModule object
  924. role (str): role for setting local facts
  925. filename (str): local facts file to use
  926. local_facts (dict): local facts to set
  927. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  928. '.' notation ex: ['master.named_certificates']
  929. Raises:
  930. OpenShiftFactsUnsupportedRoleError:
  931. """
  932. known_roles = ['common', 'master', 'node', 'etcd', 'nfs']
  933. def __init__(self, role, filename, local_facts, additive_facts_to_overwrite=False):
  934. self.changed = False
  935. self.filename = filename
  936. if role not in self.known_roles:
  937. raise OpenShiftFactsUnsupportedRoleError(
  938. "Role %s is not supported by this module" % role
  939. )
  940. self.role = role
  941. self.system_facts = ansible_facts(module)
  942. self.facts = self.generate_facts(local_facts, additive_facts_to_overwrite)
  943. def generate_facts(self, local_facts, additive_facts_to_overwrite):
  944. """ Generate facts
  945. Args:
  946. local_facts (dict): local_facts for overriding generated
  947. defaults
  948. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  949. '.' notation ex: ['master.named_certificates']
  950. Returns:
  951. dict: The generated facts
  952. """
  953. local_facts = self.init_local_facts(local_facts, additive_facts_to_overwrite)
  954. roles = local_facts.keys()
  955. defaults = self.get_defaults(roles)
  956. provider_facts = self.init_provider_facts()
  957. facts = apply_provider_facts(defaults, provider_facts)
  958. facts = merge_facts(facts, local_facts, additive_facts_to_overwrite)
  959. facts['current_config'] = get_current_config(facts)
  960. facts = set_url_facts_if_unset(facts)
  961. facts = set_project_cfg_facts_if_unset(facts)
  962. facts = set_fluentd_facts_if_unset(facts)
  963. facts = set_flannel_facts_if_unset(facts)
  964. facts = set_nuage_facts_if_unset(facts)
  965. facts = set_node_schedulability(facts)
  966. facts = set_master_selectors(facts)
  967. facts = set_metrics_facts_if_unset(facts)
  968. facts = set_identity_providers_if_unset(facts)
  969. facts = set_sdn_facts_if_unset(facts, self.system_facts)
  970. facts = set_deployment_facts_if_unset(facts)
  971. facts = set_version_facts_if_unset(facts)
  972. facts = set_manageiq_facts_if_unset(facts)
  973. facts = set_aggregate_facts(facts)
  974. facts = set_etcd_facts_if_unset(facts)
  975. facts = set_container_facts_if_unset(facts)
  976. return dict(openshift=facts)
  977. def get_defaults(self, roles):
  978. """ Get default fact values
  979. Args:
  980. roles (list): list of roles for this host
  981. Returns:
  982. dict: The generated default facts
  983. """
  984. defaults = dict()
  985. ip_addr = self.system_facts['default_ipv4']['address']
  986. exit_code, output, _ = module.run_command(['hostname', '-f'])
  987. hostname_f = output.strip() if exit_code == 0 else ''
  988. hostname_values = [hostname_f, self.system_facts['nodename'],
  989. self.system_facts['fqdn']]
  990. hostname = choose_hostname(hostname_values, ip_addr)
  991. common = dict(use_openshift_sdn=True, ip=ip_addr, public_ip=ip_addr,
  992. deployment_type='origin', hostname=hostname,
  993. public_hostname=hostname)
  994. common['client_binary'] = 'oc'
  995. common['admin_binary'] = 'oadm'
  996. common['dns_domain'] = 'cluster.local'
  997. common['install_examples'] = True
  998. defaults['common'] = common
  999. if 'master' in roles:
  1000. master = dict(api_use_ssl=True, api_port='8443', controllers_port='8444',
  1001. console_use_ssl=True, console_path='/console',
  1002. console_port='8443', etcd_use_ssl=True, etcd_hosts='',
  1003. etcd_port='4001', portal_net='172.30.0.0/16',
  1004. embedded_etcd=True, embedded_kube=True,
  1005. embedded_dns=True, dns_port='53',
  1006. bind_addr='0.0.0.0', session_max_seconds=3600,
  1007. session_name='ssn', session_secrets_file='',
  1008. access_token_max_seconds=86400,
  1009. auth_token_max_seconds=500,
  1010. oauth_grant_method='auto')
  1011. defaults['master'] = master
  1012. if 'node' in roles:
  1013. node = dict(labels={}, annotations={}, portal_net='172.30.0.0/16',
  1014. iptables_sync_period='5s', set_node_ip=False)
  1015. defaults['node'] = node
  1016. if 'nfs' in roles:
  1017. nfs = dict(exports_dir='/var/export', registry_volume='regvol',
  1018. export_options='*(rw,sync,all_squash)')
  1019. defaults['nfs'] = nfs
  1020. return defaults
  1021. def guess_host_provider(self):
  1022. """ Guess the host provider
  1023. Returns:
  1024. dict: The generated default facts for the detected provider
  1025. """
  1026. # TODO: cloud provider facts should probably be submitted upstream
  1027. product_name = self.system_facts['product_name']
  1028. product_version = self.system_facts['product_version']
  1029. virt_type = self.system_facts['virtualization_type']
  1030. virt_role = self.system_facts['virtualization_role']
  1031. provider = None
  1032. metadata = None
  1033. # TODO: this is not exposed through module_utils/facts.py in ansible,
  1034. # need to create PR for ansible to expose it
  1035. bios_vendor = get_file_content(
  1036. '/sys/devices/virtual/dmi/id/bios_vendor'
  1037. )
  1038. if bios_vendor == 'Google':
  1039. provider = 'gce'
  1040. metadata_url = ('http://metadata.google.internal/'
  1041. 'computeMetadata/v1/?recursive=true')
  1042. headers = {'Metadata-Flavor': 'Google'}
  1043. metadata = get_provider_metadata(metadata_url, True, headers,
  1044. True)
  1045. # Filter sshKeys and serviceAccounts from gce metadata
  1046. if metadata:
  1047. metadata['project']['attributes'].pop('sshKeys', None)
  1048. metadata['instance'].pop('serviceAccounts', None)
  1049. elif (virt_type == 'xen' and virt_role == 'guest'
  1050. and re.match(r'.*\.amazon$', product_version)):
  1051. provider = 'ec2'
  1052. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  1053. metadata = get_provider_metadata(metadata_url)
  1054. elif re.search(r'OpenStack', product_name):
  1055. provider = 'openstack'
  1056. metadata_url = ('http://169.254.169.254/openstack/latest/'
  1057. 'meta_data.json')
  1058. metadata = get_provider_metadata(metadata_url, True, None,
  1059. True)
  1060. if metadata:
  1061. ec2_compat_url = 'http://169.254.169.254/latest/meta-data/'
  1062. metadata['ec2_compat'] = get_provider_metadata(
  1063. ec2_compat_url
  1064. )
  1065. # disable pylint maybe-no-member because overloaded use of
  1066. # the module name causes pylint to not detect that results
  1067. # is an array or hash
  1068. # pylint: disable=maybe-no-member
  1069. # Filter public_keys and random_seed from openstack metadata
  1070. metadata.pop('public_keys', None)
  1071. metadata.pop('random_seed', None)
  1072. if not metadata['ec2_compat']:
  1073. metadata = None
  1074. return dict(name=provider, metadata=metadata)
  1075. def init_provider_facts(self):
  1076. """ Initialize the provider facts
  1077. Returns:
  1078. dict: The normalized provider facts
  1079. """
  1080. provider_info = self.guess_host_provider()
  1081. provider_facts = normalize_provider_facts(
  1082. provider_info.get('name'),
  1083. provider_info.get('metadata')
  1084. )
  1085. return provider_facts
  1086. def init_local_facts(self, facts=None, additive_facts_to_overwrite=False):
  1087. """ Initialize the provider facts
  1088. Args:
  1089. facts (dict): local facts to set
  1090. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  1091. '.' notation ex: ['master.named_certificates']
  1092. Returns:
  1093. dict: The result of merging the provided facts with existing
  1094. local facts
  1095. """
  1096. changed = False
  1097. facts_to_set = {self.role: dict()}
  1098. if facts is not None:
  1099. facts_to_set[self.role] = facts
  1100. local_facts = get_local_facts_from_file(self.filename)
  1101. for arg in ['labels', 'annotations']:
  1102. if arg in facts_to_set and isinstance(facts_to_set[arg],
  1103. basestring):
  1104. facts_to_set[arg] = module.from_json(facts_to_set[arg])
  1105. new_local_facts = merge_facts(local_facts, facts_to_set, additive_facts_to_overwrite)
  1106. for facts in new_local_facts.values():
  1107. keys_to_delete = []
  1108. for fact, value in facts.iteritems():
  1109. if value == "" or value is None:
  1110. keys_to_delete.append(fact)
  1111. for key in keys_to_delete:
  1112. del facts[key]
  1113. if new_local_facts != local_facts:
  1114. self.validate_local_facts(new_local_facts)
  1115. changed = True
  1116. if not module.check_mode:
  1117. save_local_facts(self.filename, new_local_facts)
  1118. self.changed = changed
  1119. return new_local_facts
  1120. def validate_local_facts(self, facts=None):
  1121. """ Validate local facts
  1122. Args:
  1123. facts (dict): local facts to validate
  1124. """
  1125. invalid_facts = dict()
  1126. invalid_facts = self.validate_master_facts(facts, invalid_facts)
  1127. if invalid_facts:
  1128. msg = 'Invalid facts detected:\n'
  1129. for key in invalid_facts.keys():
  1130. msg += '{0}: {1}\n'.format(key, invalid_facts[key])
  1131. module.fail_json(msg=msg,
  1132. changed=self.changed)
  1133. # disabling pylint errors for line-too-long since we're dealing
  1134. # with best effort reduction of error messages here.
  1135. # disabling errors for too-many-branches since we require checking
  1136. # many conditions.
  1137. # pylint: disable=line-too-long, too-many-branches
  1138. @staticmethod
  1139. def validate_master_facts(facts, invalid_facts):
  1140. """ Validate master facts
  1141. Args:
  1142. facts (dict): local facts to validate
  1143. invalid_facts (dict): collected invalid_facts
  1144. Returns:
  1145. dict: Invalid facts
  1146. """
  1147. if 'master' in facts:
  1148. # openshift.master.session_auth_secrets
  1149. if 'session_auth_secrets' in facts['master']:
  1150. session_auth_secrets = facts['master']['session_auth_secrets']
  1151. if not issubclass(type(session_auth_secrets), list):
  1152. invalid_facts['session_auth_secrets'] = 'Expects session_auth_secrets is a list.'
  1153. elif 'session_encryption_secrets' not in facts['master']:
  1154. invalid_facts['session_auth_secrets'] = ('openshift_master_session_encryption secrets must be set '
  1155. 'if openshift_master_session_auth_secrets is provided.')
  1156. elif len(session_auth_secrets) != len(facts['master']['session_encryption_secrets']):
  1157. invalid_facts['session_auth_secrets'] = ('openshift_master_session_auth_secrets and '
  1158. 'openshift_master_session_encryption_secrets must be '
  1159. 'equal length.')
  1160. else:
  1161. for secret in session_auth_secrets:
  1162. if len(secret) < 32:
  1163. invalid_facts['session_auth_secrets'] = ('Invalid secret in session_auth_secrets. '
  1164. 'Secrets must be at least 32 characters in length.')
  1165. # openshift.master.session_encryption_secrets
  1166. if 'session_encryption_secrets' in facts['master']:
  1167. session_encryption_secrets = facts['master']['session_encryption_secrets']
  1168. if not issubclass(type(session_encryption_secrets), list):
  1169. invalid_facts['session_encryption_secrets'] = 'Expects session_encryption_secrets is a list.'
  1170. elif 'session_auth_secrets' not in facts['master']:
  1171. invalid_facts['session_encryption_secrets'] = ('openshift_master_session_auth_secrets must be '
  1172. 'set if openshift_master_session_encryption_secrets '
  1173. 'is provided.')
  1174. else:
  1175. for secret in session_encryption_secrets:
  1176. if len(secret) not in [16, 24, 32]:
  1177. invalid_facts['session_encryption_secrets'] = ('Invalid secret in session_encryption_secrets. '
  1178. 'Secrets must be 16, 24, or 32 characters in length.')
  1179. return invalid_facts
  1180. def main():
  1181. """ main """
  1182. # disabling pylint errors for global-variable-undefined and invalid-name
  1183. # for 'global module' usage, since it is required to use ansible_facts
  1184. # pylint: disable=global-variable-undefined, invalid-name
  1185. global module
  1186. module = AnsibleModule(
  1187. argument_spec=dict(
  1188. role=dict(default='common', required=False,
  1189. choices=OpenShiftFacts.known_roles),
  1190. local_facts=dict(default=None, type='dict', required=False),
  1191. additive_facts_to_overwrite=dict(default=[], type='list', required=False),
  1192. ),
  1193. supports_check_mode=True,
  1194. add_file_common_args=True,
  1195. )
  1196. role = module.params['role']
  1197. local_facts = module.params['local_facts']
  1198. additive_facts_to_overwrite = module.params['additive_facts_to_overwrite']
  1199. fact_file = '/etc/ansible/facts.d/openshift.fact'
  1200. openshift_facts = OpenShiftFacts(role, fact_file, local_facts, additive_facts_to_overwrite)
  1201. file_params = module.params.copy()
  1202. file_params['path'] = fact_file
  1203. file_args = module.load_file_common_arguments(file_params)
  1204. changed = module.set_fs_attributes_if_different(file_args,
  1205. openshift_facts.changed)
  1206. return module.exit_json(changed=changed,
  1207. ansible_facts=openshift_facts.facts)
  1208. # ignore pylint errors related to the module_utils import
  1209. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import
  1210. # import module snippets
  1211. from ansible.module_utils.basic import *
  1212. from ansible.module_utils.facts import *
  1213. from ansible.module_utils.urls import *
  1214. if __name__ == '__main__':
  1215. main()