openshift_facts.py 67 KB

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