openshift_facts.py 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259
  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. # Default to no sdn for GCE deployments
  162. facts['use_openshift_sdn'] = False
  163. # GCE currently only supports a single interface
  164. facts['network']['ip'] = facts['network']['interfaces'][0]['ips'][0]
  165. pub_ip = facts['network']['interfaces'][0]['public_ips'][0]
  166. facts['network']['public_ip'] = pub_ip
  167. facts['network']['hostname'] = metadata['instance']['hostname']
  168. # TODO: attempt to resolve public_hostname
  169. facts['network']['public_hostname'] = facts['network']['public_ip']
  170. return facts
  171. def normalize_aws_facts(metadata, facts):
  172. """ Normalize aws facts
  173. Args:
  174. metadata (dict): provider metadata
  175. facts (dict): facts to update
  176. Returns:
  177. dict: the result of adding the normalized metadata to the provided
  178. facts dict
  179. """
  180. for interface in sorted(
  181. metadata['network']['interfaces']['macs'].values(),
  182. key=lambda x: x['device-number']
  183. ):
  184. int_info = dict()
  185. var_map = {'ips': 'local-ipv4s', 'public_ips': 'public-ipv4s'}
  186. for ips_var, int_var in var_map.iteritems():
  187. ips = interface.get(int_var)
  188. if isinstance(ips, basestring):
  189. int_info[ips_var] = [ips]
  190. else:
  191. int_info[ips_var] = ips
  192. if 'vpc-id' in interface:
  193. int_info['network_type'] = 'vpc'
  194. else:
  195. int_info['network_type'] = 'classic'
  196. if int_info['network_type'] == 'vpc':
  197. int_info['network_id'] = interface['subnet-id']
  198. else:
  199. int_info['network_id'] = None
  200. facts['network']['interfaces'].append(int_info)
  201. facts['zone'] = metadata['placement']['availability-zone']
  202. # TODO: actually attempt to determine default local and public ips
  203. # by using the ansible default ip fact and the ipv4-associations
  204. # from the ec2 metadata
  205. facts['network']['ip'] = metadata.get('local-ipv4')
  206. facts['network']['public_ip'] = metadata.get('public-ipv4')
  207. # TODO: verify that local hostname makes sense and is resolvable
  208. facts['network']['hostname'] = metadata.get('local-hostname')
  209. # TODO: verify that public hostname makes sense and is resolvable
  210. facts['network']['public_hostname'] = metadata.get('public-hostname')
  211. return facts
  212. def normalize_openstack_facts(metadata, facts):
  213. """ Normalize openstack facts
  214. Args:
  215. metadata (dict): provider metadata
  216. facts (dict): facts to update
  217. Returns:
  218. dict: the result of adding the normalized metadata to the provided
  219. facts dict
  220. """
  221. # openstack ec2 compat api does not support network interfaces and
  222. # the version tested on did not include the info in the openstack
  223. # metadata api, should be updated if neutron exposes this.
  224. facts['zone'] = metadata['availability_zone']
  225. local_ipv4 = metadata['ec2_compat']['local-ipv4'].split(',')[0]
  226. facts['network']['ip'] = local_ipv4
  227. facts['network']['public_ip'] = metadata['ec2_compat']['public-ipv4']
  228. # TODO: verify local hostname makes sense and is resolvable
  229. facts['network']['hostname'] = metadata['hostname']
  230. # TODO: verify that public hostname makes sense and is resolvable
  231. pub_h = metadata['ec2_compat']['public-hostname']
  232. facts['network']['public_hostname'] = pub_h
  233. return facts
  234. def normalize_provider_facts(provider, metadata):
  235. """ Normalize provider facts
  236. Args:
  237. provider (str): host provider
  238. metadata (dict): provider metadata
  239. Returns:
  240. dict: the normalized provider facts
  241. """
  242. if provider is None or metadata is None:
  243. return {}
  244. # TODO: test for ipv6_enabled where possible (gce, aws do not support)
  245. # and configure ipv6 facts if available
  246. # TODO: add support for setting user_data if available
  247. facts = dict(name=provider, metadata=metadata,
  248. network=dict(interfaces=[], ipv6_enabled=False))
  249. if provider == 'gce':
  250. facts = normalize_gce_facts(metadata, facts)
  251. elif provider == 'ec2':
  252. facts = normalize_aws_facts(metadata, facts)
  253. elif provider == 'openstack':
  254. facts = normalize_openstack_facts(metadata, facts)
  255. return facts
  256. def set_fluentd_facts_if_unset(facts):
  257. """ Set fluentd facts if not already present in facts dict
  258. dict: the facts dict updated with the generated fluentd facts if
  259. missing
  260. Args:
  261. facts (dict): existing facts
  262. Returns:
  263. dict: the facts dict updated with the generated fluentd
  264. facts if they were not already present
  265. """
  266. if 'common' in facts:
  267. if 'use_fluentd' not in facts['common']:
  268. use_fluentd = False
  269. facts['common']['use_fluentd'] = use_fluentd
  270. return facts
  271. def set_flannel_facts_if_unset(facts):
  272. """ Set flannel facts if not already present in facts dict
  273. dict: the facts dict updated with the flannel facts if
  274. missing
  275. Args:
  276. facts (dict): existing facts
  277. Returns:
  278. dict: the facts dict updated with the flannel
  279. facts if they were not already present
  280. """
  281. if 'common' in facts:
  282. if 'use_flannel' not in facts['common']:
  283. use_flannel = False
  284. facts['common']['use_flannel'] = use_flannel
  285. return facts
  286. def set_nuage_facts_if_unset(facts):
  287. """ Set nuage facts if not already present in facts dict
  288. dict: the facts dict updated with the nuage facts if
  289. missing
  290. Args:
  291. facts (dict): existing facts
  292. Returns:
  293. dict: the facts dict updated with the nuage
  294. facts if they were not already present
  295. """
  296. if 'common' in facts:
  297. if 'use_nuage' not in facts['common']:
  298. use_nuage = False
  299. facts['common']['use_nuage'] = use_nuage
  300. return facts
  301. def set_node_schedulability(facts):
  302. """ Set schedulable facts if not already present in facts dict
  303. Args:
  304. facts (dict): existing facts
  305. Returns:
  306. dict: the facts dict updated with the generated schedulable
  307. facts if they were not already present
  308. """
  309. if 'node' in facts:
  310. if 'schedulable' not in facts['node']:
  311. if 'master' in facts:
  312. facts['node']['schedulable'] = False
  313. else:
  314. facts['node']['schedulable'] = True
  315. return facts
  316. def set_master_selectors(facts):
  317. """ Set selectors facts if not already present in facts dict
  318. Args:
  319. facts (dict): existing facts
  320. Returns:
  321. dict: the facts dict updated with the generated selectors
  322. facts if they were not already present
  323. """
  324. if 'master' in facts:
  325. if 'infra_nodes' in facts['master']:
  326. deployment_type = facts['common']['deployment_type']
  327. if deployment_type == 'online':
  328. selector = "type=infra"
  329. else:
  330. selector = "region=infra"
  331. if 'router_selector' not in facts['master']:
  332. facts['master']['router_selector'] = selector
  333. if 'registry_selector' not in facts['master']:
  334. facts['master']['registry_selector'] = selector
  335. return facts
  336. def set_metrics_facts_if_unset(facts):
  337. """ Set cluster metrics facts if not already present in facts dict
  338. dict: the facts dict updated with the generated cluster metrics facts if
  339. missing
  340. Args:
  341. facts (dict): existing facts
  342. Returns:
  343. dict: the facts dict updated with the generated cluster metrics
  344. facts if they were not already present
  345. """
  346. if 'common' in facts:
  347. if 'use_cluster_metrics' not in facts['common']:
  348. use_cluster_metrics = False
  349. facts['common']['use_cluster_metrics'] = use_cluster_metrics
  350. return facts
  351. def set_project_cfg_facts_if_unset(facts):
  352. """ Set Project Configuration facts if not already present in facts dict
  353. dict:
  354. Args:
  355. facts (dict): existing facts
  356. Returns:
  357. dict: the facts dict updated with the generated Project Configuration
  358. facts if they were not already present
  359. """
  360. config = {
  361. 'default_node_selector': '',
  362. 'project_request_message': '',
  363. 'project_request_template': '',
  364. 'mcs_allocator_range': 's0:/2',
  365. 'mcs_labels_per_project': 5,
  366. 'uid_allocator_range': '1000000000-1999999999/10000'
  367. }
  368. if 'master' in facts:
  369. for key, value in config.items():
  370. if key not in facts['master']:
  371. facts['master'][key] = value
  372. return facts
  373. def set_identity_providers_if_unset(facts):
  374. """ Set identity_providers fact if not already present in facts dict
  375. Args:
  376. facts (dict): existing facts
  377. Returns:
  378. dict: the facts dict updated with the generated identity providers
  379. facts if they were not already present
  380. """
  381. if 'master' in facts:
  382. deployment_type = facts['common']['deployment_type']
  383. if 'identity_providers' not in facts['master']:
  384. identity_provider = dict(
  385. name='allow_all', challenge=True, login=True,
  386. kind='AllowAllPasswordIdentityProvider'
  387. )
  388. if deployment_type in ['enterprise', 'atomic-enterprise', 'openshift-enterprise']:
  389. identity_provider = dict(
  390. name='deny_all', challenge=True, login=True,
  391. kind='DenyAllPasswordIdentityProvider'
  392. )
  393. facts['master']['identity_providers'] = [identity_provider]
  394. return facts
  395. def set_url_facts_if_unset(facts):
  396. """ Set url facts if not already present in facts dict
  397. Args:
  398. facts (dict): existing facts
  399. Returns:
  400. dict: the facts dict updated with the generated url facts if they
  401. were not already present
  402. """
  403. if 'master' in facts:
  404. api_use_ssl = facts['master']['api_use_ssl']
  405. api_port = facts['master']['api_port']
  406. console_use_ssl = facts['master']['console_use_ssl']
  407. console_port = facts['master']['console_port']
  408. console_path = facts['master']['console_path']
  409. etcd_use_ssl = facts['master']['etcd_use_ssl']
  410. etcd_hosts = facts['master']['etcd_hosts']
  411. etcd_port = facts['master']['etcd_port']
  412. hostname = facts['common']['hostname']
  413. public_hostname = facts['common']['public_hostname']
  414. cluster_hostname = facts['master'].get('cluster_hostname')
  415. cluster_public_hostname = facts['master'].get('cluster_public_hostname')
  416. if 'etcd_urls' not in facts['master']:
  417. etcd_urls = []
  418. if etcd_hosts != '':
  419. facts['master']['etcd_port'] = etcd_port
  420. facts['master']['embedded_etcd'] = False
  421. for host in etcd_hosts:
  422. etcd_urls.append(format_url(etcd_use_ssl, host,
  423. etcd_port))
  424. else:
  425. etcd_urls = [format_url(etcd_use_ssl, hostname,
  426. etcd_port)]
  427. facts['master']['etcd_urls'] = etcd_urls
  428. if 'api_url' not in facts['master']:
  429. api_hostname = cluster_hostname if cluster_hostname else hostname
  430. facts['master']['api_url'] = format_url(api_use_ssl, api_hostname,
  431. api_port)
  432. if 'public_api_url' not in facts['master']:
  433. api_public_hostname = cluster_public_hostname if cluster_public_hostname else public_hostname
  434. facts['master']['public_api_url'] = format_url(api_use_ssl,
  435. api_public_hostname,
  436. api_port)
  437. if 'console_url' not in facts['master']:
  438. console_hostname = cluster_hostname if cluster_hostname else hostname
  439. facts['master']['console_url'] = format_url(console_use_ssl,
  440. console_hostname,
  441. console_port,
  442. console_path)
  443. if 'public_console_url' not in facts['master']:
  444. console_public_hostname = cluster_public_hostname if cluster_public_hostname else public_hostname
  445. facts['master']['public_console_url'] = format_url(console_use_ssl,
  446. console_public_hostname,
  447. console_port,
  448. console_path)
  449. return facts
  450. def set_aggregate_facts(facts):
  451. """ Set aggregate facts
  452. Args:
  453. facts (dict): existing facts
  454. Returns:
  455. dict: the facts dict updated with aggregated facts
  456. """
  457. all_hostnames = set()
  458. internal_hostnames = set()
  459. if 'common' in facts:
  460. all_hostnames.add(facts['common']['hostname'])
  461. all_hostnames.add(facts['common']['public_hostname'])
  462. all_hostnames.add(facts['common']['ip'])
  463. all_hostnames.add(facts['common']['public_ip'])
  464. internal_hostnames.add(facts['common']['hostname'])
  465. internal_hostnames.add(facts['common']['ip'])
  466. cluster_domain = facts['common']['dns_domain']
  467. if 'master' in facts:
  468. if 'cluster_hostname' in facts['master']:
  469. all_hostnames.add(facts['master']['cluster_hostname'])
  470. if 'cluster_public_hostname' in facts['master']:
  471. all_hostnames.add(facts['master']['cluster_public_hostname'])
  472. svc_names = ['openshift', 'openshift.default', 'openshift.default.svc',
  473. 'openshift.default.svc.' + cluster_domain, 'kubernetes', 'kubernetes.default',
  474. 'kubernetes.default.svc', 'kubernetes.default.svc.' + cluster_domain]
  475. all_hostnames.update(svc_names)
  476. internal_hostnames.update(svc_names)
  477. first_svc_ip = first_ip(facts['master']['portal_net'])
  478. all_hostnames.add(first_svc_ip)
  479. internal_hostnames.add(first_svc_ip)
  480. facts['common']['all_hostnames'] = list(all_hostnames)
  481. facts['common']['internal_hostnames'] = list(internal_hostnames)
  482. return facts
  483. def set_etcd_facts_if_unset(facts):
  484. """
  485. If using embedded etcd, loads the data directory from master-config.yaml.
  486. If using standalone etcd, loads ETCD_DATA_DIR from etcd.conf.
  487. If anything goes wrong parsing these, the fact will not be set.
  488. """
  489. if 'master' in facts and facts['master']['embedded_etcd']:
  490. etcd_facts = facts['etcd'] if 'etcd' in facts else dict()
  491. if 'etcd_data_dir' not in etcd_facts:
  492. try:
  493. # Parse master config to find actual etcd data dir:
  494. master_cfg_path = os.path.join(facts['common']['config_base'],
  495. 'master/master-config.yaml')
  496. master_cfg_f = open(master_cfg_path, 'r')
  497. config = yaml.safe_load(master_cfg_f.read())
  498. master_cfg_f.close()
  499. etcd_facts['etcd_data_dir'] = \
  500. config['etcdConfig']['storageDirectory']
  501. facts['etcd'] = etcd_facts
  502. # We don't want exceptions bubbling up here:
  503. # pylint: disable=broad-except
  504. except Exception:
  505. pass
  506. else:
  507. etcd_facts = facts['etcd'] if 'etcd' in facts else dict()
  508. # Read ETCD_DATA_DIR from /etc/etcd/etcd.conf:
  509. try:
  510. # Add a fake section for parsing:
  511. ini_str = '[root]\n' + open('/etc/etcd/etcd.conf', 'r').read()
  512. ini_fp = StringIO.StringIO(ini_str)
  513. config = ConfigParser.RawConfigParser()
  514. config.readfp(ini_fp)
  515. etcd_data_dir = config.get('root', 'ETCD_DATA_DIR')
  516. if etcd_data_dir.startswith('"') and etcd_data_dir.endswith('"'):
  517. etcd_data_dir = etcd_data_dir[1:-1]
  518. etcd_facts['etcd_data_dir'] = etcd_data_dir
  519. facts['etcd'] = etcd_facts
  520. # We don't want exceptions bubbling up here:
  521. # pylint: disable=broad-except
  522. except Exception:
  523. pass
  524. return facts
  525. def set_deployment_facts_if_unset(facts):
  526. """ Set Facts that vary based on deployment_type. This currently
  527. includes common.service_type, common.config_base, master.registry_url,
  528. node.registry_url, node.storage_plugin_deps
  529. Args:
  530. facts (dict): existing facts
  531. Returns:
  532. dict: the facts dict updated with the generated deployment_type
  533. facts
  534. """
  535. # disabled to avoid breaking up facts related to deployment type into
  536. # multiple methods for now.
  537. # pylint: disable=too-many-statements, too-many-branches
  538. if 'common' in facts:
  539. deployment_type = facts['common']['deployment_type']
  540. if 'service_type' not in facts['common']:
  541. service_type = 'atomic-openshift'
  542. if deployment_type == 'origin':
  543. service_type = 'origin'
  544. elif deployment_type in ['enterprise']:
  545. service_type = 'openshift'
  546. facts['common']['service_type'] = service_type
  547. if 'config_base' not in facts['common']:
  548. config_base = '/etc/origin'
  549. if deployment_type in ['enterprise', 'online']:
  550. config_base = '/etc/openshift'
  551. # Handle upgrade scenarios when symlinks don't yet exist:
  552. if not os.path.exists(config_base) and os.path.exists('/etc/openshift'):
  553. config_base = '/etc/openshift'
  554. facts['common']['config_base'] = config_base
  555. if 'data_dir' not in facts['common']:
  556. data_dir = '/var/lib/origin'
  557. if deployment_type in ['enterprise', 'online']:
  558. data_dir = '/var/lib/openshift'
  559. # Handle upgrade scenarios when symlinks don't yet exist:
  560. if not os.path.exists(data_dir) and os.path.exists('/var/lib/openshift'):
  561. data_dir = '/var/lib/openshift'
  562. facts['common']['data_dir'] = data_dir
  563. for role in ('master', 'node'):
  564. if role in facts:
  565. deployment_type = facts['common']['deployment_type']
  566. if 'registry_url' not in facts[role]:
  567. registry_url = 'openshift/origin-${component}:${version}'
  568. if deployment_type in ['enterprise', 'online', 'openshift-enterprise']:
  569. registry_url = 'openshift3/ose-${component}:${version}'
  570. elif deployment_type == 'atomic-enterprise':
  571. registry_url = 'aep3_beta/aep-${component}:${version}'
  572. facts[role]['registry_url'] = registry_url
  573. if 'master' in facts:
  574. deployment_type = facts['common']['deployment_type']
  575. openshift_features = ['Builder', 'S2IBuilder', 'WebConsole']
  576. if 'disabled_features' in facts['master']:
  577. if deployment_type == 'atomic-enterprise':
  578. curr_disabled_features = set(facts['master']['disabled_features'])
  579. facts['master']['disabled_features'] = list(curr_disabled_features.union(openshift_features))
  580. else:
  581. if deployment_type == 'atomic-enterprise':
  582. facts['master']['disabled_features'] = openshift_features
  583. if 'node' in facts:
  584. deployment_type = facts['common']['deployment_type']
  585. if 'storage_plugin_deps' not in facts['node']:
  586. if deployment_type in ['openshift-enterprise', 'atomic-enterprise']:
  587. facts['node']['storage_plugin_deps'] = ['ceph', 'glusterfs']
  588. else:
  589. facts['node']['storage_plugin_deps'] = []
  590. return facts
  591. def set_version_facts_if_unset(facts):
  592. """ Set version facts. This currently includes common.version and
  593. common.version_greater_than_3_1_or_1_1.
  594. Args:
  595. facts (dict): existing facts
  596. Returns:
  597. dict: the facts dict updated with version facts.
  598. """
  599. if 'common' in facts:
  600. deployment_type = facts['common']['deployment_type']
  601. facts['common']['version'] = version = get_openshift_version()
  602. if version is not None:
  603. if deployment_type == 'origin':
  604. version_gt_3_1_or_1_1 = LooseVersion(version) > LooseVersion('1.0.6')
  605. else:
  606. version_gt_3_1_or_1_1 = LooseVersion(version) > LooseVersion('3.0.2.900')
  607. else:
  608. version_gt_3_1_or_1_1 = True
  609. facts['common']['version_greater_than_3_1_or_1_1'] = version_gt_3_1_or_1_1
  610. return facts
  611. def set_sdn_facts_if_unset(facts, system_facts):
  612. """ Set sdn facts if not already present in facts dict
  613. Args:
  614. facts (dict): existing facts
  615. system_facts (dict): ansible_facts
  616. Returns:
  617. dict: the facts dict updated with the generated sdn facts if they
  618. were not already present
  619. """
  620. if 'common' in facts:
  621. use_sdn = facts['common']['use_openshift_sdn']
  622. if not (use_sdn == '' or isinstance(use_sdn, bool)):
  623. facts['common']['use_openshift_sdn'] = bool(strtobool(str(use_sdn)))
  624. if 'sdn_network_plugin_name' not in facts['common']:
  625. plugin = 'redhat/openshift-ovs-subnet' if use_sdn else ''
  626. facts['common']['sdn_network_plugin_name'] = plugin
  627. if 'master' in facts:
  628. if 'sdn_cluster_network_cidr' not in facts['master']:
  629. facts['master']['sdn_cluster_network_cidr'] = '10.1.0.0/16'
  630. if 'sdn_host_subnet_length' not in facts['master']:
  631. facts['master']['sdn_host_subnet_length'] = '8'
  632. if 'node' in facts and 'sdn_mtu' not in facts['node']:
  633. node_ip = facts['common']['ip']
  634. # default MTU if interface MTU cannot be detected
  635. facts['node']['sdn_mtu'] = '1450'
  636. for val in system_facts.itervalues():
  637. if isinstance(val, dict) and 'mtu' in val:
  638. mtu = val['mtu']
  639. if 'ipv4' in val and val['ipv4'].get('address') == node_ip:
  640. facts['node']['sdn_mtu'] = str(mtu - 50)
  641. return facts
  642. def format_url(use_ssl, hostname, port, path=''):
  643. """ Format url based on ssl flag, hostname, port and path
  644. Args:
  645. use_ssl (bool): is ssl enabled
  646. hostname (str): hostname
  647. port (str): port
  648. path (str): url path
  649. Returns:
  650. str: The generated url string
  651. """
  652. scheme = 'https' if use_ssl else 'http'
  653. netloc = hostname
  654. if (use_ssl and port != '443') or (not use_ssl and port != '80'):
  655. netloc += ":%s" % port
  656. return urlparse.urlunparse((scheme, netloc, path, '', '', ''))
  657. def get_current_config(facts):
  658. """ Get current openshift config
  659. Args:
  660. facts (dict): existing facts
  661. Returns:
  662. dict: the facts dict updated with the current openshift config
  663. """
  664. current_config = dict()
  665. roles = [role for role in facts if role not in ['common', 'provider']]
  666. for role in roles:
  667. if 'roles' in current_config:
  668. current_config['roles'].append(role)
  669. else:
  670. current_config['roles'] = [role]
  671. # TODO: parse the /etc/sysconfig/openshift-{master,node} config to
  672. # determine the location of files.
  673. # TODO: I suspect this isn't working right now, but it doesn't prevent
  674. # anything from working properly as far as I can tell, perhaps because
  675. # we override the kubeconfig path everywhere we use it?
  676. # Query kubeconfig settings
  677. kubeconfig_dir = '/var/lib/origin/openshift.local.certificates'
  678. if role == 'node':
  679. kubeconfig_dir = os.path.join(
  680. kubeconfig_dir, "node-%s" % facts['common']['hostname']
  681. )
  682. kubeconfig_path = os.path.join(kubeconfig_dir, '.kubeconfig')
  683. if (os.path.isfile('/usr/bin/openshift')
  684. and os.path.isfile(kubeconfig_path)):
  685. try:
  686. _, output, _ = module.run_command(
  687. ["/usr/bin/openshift", "ex", "config", "view", "-o",
  688. "json", "--kubeconfig=%s" % kubeconfig_path],
  689. check_rc=False
  690. )
  691. config = json.loads(output)
  692. cad = 'certificate-authority-data'
  693. try:
  694. for cluster in config['clusters']:
  695. config['clusters'][cluster][cad] = 'masked'
  696. except KeyError:
  697. pass
  698. try:
  699. for user in config['users']:
  700. config['users'][user][cad] = 'masked'
  701. config['users'][user]['client-key-data'] = 'masked'
  702. except KeyError:
  703. pass
  704. current_config['kubeconfig'] = config
  705. # override pylint broad-except warning, since we do not want
  706. # to bubble up any exceptions if oc config view
  707. # fails
  708. # pylint: disable=broad-except
  709. except Exception:
  710. pass
  711. return current_config
  712. def get_openshift_version():
  713. """ Get current version of openshift on the host
  714. Returns:
  715. version: the current openshift version
  716. """
  717. version = None
  718. if os.path.isfile('/usr/bin/openshift'):
  719. _, output, _ = module.run_command(['/usr/bin/openshift', 'version'])
  720. versions = dict(e.split(' v') for e in output.splitlines() if ' v' in e)
  721. version = versions.get('openshift', '')
  722. #TODO: acknowledge the possility of a containerized install
  723. return version
  724. def apply_provider_facts(facts, provider_facts):
  725. """ Apply provider facts to supplied facts dict
  726. Args:
  727. facts (dict): facts dict to update
  728. provider_facts (dict): provider facts to apply
  729. roles: host roles
  730. Returns:
  731. dict: the merged facts
  732. """
  733. if not provider_facts:
  734. return facts
  735. use_openshift_sdn = provider_facts.get('use_openshift_sdn')
  736. if isinstance(use_openshift_sdn, bool):
  737. facts['common']['use_openshift_sdn'] = use_openshift_sdn
  738. common_vars = [('hostname', 'ip'), ('public_hostname', 'public_ip')]
  739. for h_var, ip_var in common_vars:
  740. ip_value = provider_facts['network'].get(ip_var)
  741. if ip_value:
  742. facts['common'][ip_var] = ip_value
  743. facts['common'][h_var] = choose_hostname(
  744. [provider_facts['network'].get(h_var)],
  745. facts['common'][ip_var]
  746. )
  747. facts['provider'] = provider_facts
  748. return facts
  749. def merge_facts(orig, new, additive_facts_to_overwrite):
  750. """ Recursively merge facts dicts
  751. Args:
  752. orig (dict): existing facts
  753. new (dict): facts to update
  754. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  755. '.' notation ex: ['master.named_certificates']
  756. Returns:
  757. dict: the merged facts
  758. """
  759. additive_facts = ['named_certificates']
  760. facts = dict()
  761. for key, value in orig.iteritems():
  762. if key in new:
  763. if isinstance(value, dict) and isinstance(new[key], dict):
  764. relevant_additive_facts = []
  765. # Keep additive_facts_to_overwrite if key matches
  766. for item in additive_facts_to_overwrite:
  767. if '.' in item and item.startswith(key + '.'):
  768. relevant_additive_facts.append(item)
  769. facts[key] = merge_facts(value, new[key], relevant_additive_facts)
  770. elif key in additive_facts and key not in [x.split('.')[-1] for x in additive_facts_to_overwrite]:
  771. # Fact is additive so we'll combine orig and new.
  772. if isinstance(value, list) and isinstance(new[key], list):
  773. new_fact = []
  774. for item in copy.deepcopy(value) + copy.copy(new[key]):
  775. if item not in new_fact:
  776. new_fact.append(item)
  777. facts[key] = new_fact
  778. else:
  779. facts[key] = copy.copy(new[key])
  780. else:
  781. facts[key] = copy.deepcopy(value)
  782. new_keys = set(new.keys()) - set(orig.keys())
  783. for key in new_keys:
  784. facts[key] = copy.deepcopy(new[key])
  785. return facts
  786. def save_local_facts(filename, facts):
  787. """ Save local facts
  788. Args:
  789. filename (str): local facts file
  790. facts (dict): facts to set
  791. """
  792. try:
  793. fact_dir = os.path.dirname(filename)
  794. if not os.path.exists(fact_dir):
  795. os.makedirs(fact_dir)
  796. with open(filename, 'w') as fact_file:
  797. fact_file.write(module.jsonify(facts))
  798. except (IOError, OSError) as ex:
  799. raise OpenShiftFactsFileWriteError(
  800. "Could not create fact file: %s, error: %s" % (filename, ex)
  801. )
  802. def get_local_facts_from_file(filename):
  803. """ Retrieve local facts from fact file
  804. Args:
  805. filename (str): local facts file
  806. Returns:
  807. dict: the retrieved facts
  808. """
  809. local_facts = dict()
  810. try:
  811. # Handle conversion of INI style facts file to json style
  812. ini_facts = ConfigParser.SafeConfigParser()
  813. ini_facts.read(filename)
  814. for section in ini_facts.sections():
  815. local_facts[section] = dict()
  816. for key, value in ini_facts.items(section):
  817. local_facts[section][key] = value
  818. except (ConfigParser.MissingSectionHeaderError,
  819. ConfigParser.ParsingError):
  820. try:
  821. with open(filename, 'r') as facts_file:
  822. local_facts = json.load(facts_file)
  823. except (ValueError, IOError):
  824. pass
  825. return local_facts
  826. class OpenShiftFactsUnsupportedRoleError(Exception):
  827. """Origin Facts Unsupported Role Error"""
  828. pass
  829. class OpenShiftFactsFileWriteError(Exception):
  830. """Origin Facts File Write Error"""
  831. pass
  832. class OpenShiftFactsMetadataUnavailableError(Exception):
  833. """Origin Facts Metadata Unavailable Error"""
  834. pass
  835. class OpenShiftFacts(object):
  836. """ Origin Facts
  837. Attributes:
  838. facts (dict): facts for the host
  839. Args:
  840. role (str): role for setting local facts
  841. filename (str): local facts file to use
  842. local_facts (dict): local facts to set
  843. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  844. '.' notation ex: ['master.named_certificates']
  845. Raises:
  846. OpenShiftFactsUnsupportedRoleError:
  847. """
  848. known_roles = ['common', 'master', 'node', 'master_sdn', 'node_sdn', 'etcd']
  849. def __init__(self, role, filename, local_facts, additive_facts_to_overwrite=False):
  850. self.changed = False
  851. self.filename = filename
  852. if role not in self.known_roles:
  853. raise OpenShiftFactsUnsupportedRoleError(
  854. "Role %s is not supported by this module" % role
  855. )
  856. self.role = role
  857. self.system_facts = ansible_facts(module)
  858. self.facts = self.generate_facts(local_facts, additive_facts_to_overwrite)
  859. def generate_facts(self, local_facts, additive_facts_to_overwrite):
  860. """ Generate facts
  861. Args:
  862. local_facts (dict): local_facts for overriding generated
  863. defaults
  864. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  865. '.' notation ex: ['master.named_certificates']
  866. Returns:
  867. dict: The generated facts
  868. """
  869. local_facts = self.init_local_facts(local_facts, additive_facts_to_overwrite)
  870. roles = local_facts.keys()
  871. defaults = self.get_defaults(roles)
  872. provider_facts = self.init_provider_facts()
  873. facts = apply_provider_facts(defaults, provider_facts)
  874. facts = merge_facts(facts, local_facts, additive_facts_to_overwrite)
  875. facts['current_config'] = get_current_config(facts)
  876. facts = set_url_facts_if_unset(facts)
  877. facts = set_project_cfg_facts_if_unset(facts)
  878. facts = set_fluentd_facts_if_unset(facts)
  879. facts = set_flannel_facts_if_unset(facts)
  880. facts = set_nuage_facts_if_unset(facts)
  881. facts = set_node_schedulability(facts)
  882. facts = set_master_selectors(facts)
  883. facts = set_metrics_facts_if_unset(facts)
  884. facts = set_identity_providers_if_unset(facts)
  885. facts = set_sdn_facts_if_unset(facts, self.system_facts)
  886. facts = set_deployment_facts_if_unset(facts)
  887. facts = set_version_facts_if_unset(facts)
  888. facts = set_aggregate_facts(facts)
  889. facts = set_etcd_facts_if_unset(facts)
  890. return dict(openshift=facts)
  891. def get_defaults(self, roles):
  892. """ Get default fact values
  893. Args:
  894. roles (list): list of roles for this host
  895. Returns:
  896. dict: The generated default facts
  897. """
  898. defaults = dict()
  899. ip_addr = self.system_facts['default_ipv4']['address']
  900. exit_code, output, _ = module.run_command(['hostname', '-f'])
  901. hostname_f = output.strip() if exit_code == 0 else ''
  902. hostname_values = [hostname_f, self.system_facts['nodename'],
  903. self.system_facts['fqdn']]
  904. hostname = choose_hostname(hostname_values, ip_addr)
  905. common = dict(use_openshift_sdn=True, ip=ip_addr, public_ip=ip_addr,
  906. deployment_type='origin', hostname=hostname,
  907. public_hostname=hostname, use_manageiq=False)
  908. common['client_binary'] = 'oc' if os.path.isfile('/usr/bin/oc') else 'osc'
  909. common['admin_binary'] = 'oadm' if os.path.isfile('/usr/bin/oadm') else 'osadm'
  910. common['dns_domain'] = 'cluster.local'
  911. defaults['common'] = common
  912. if 'master' in roles:
  913. master = dict(api_use_ssl=True, api_port='8443',
  914. console_use_ssl=True, console_path='/console',
  915. console_port='8443', etcd_use_ssl=True, etcd_hosts='',
  916. etcd_port='4001', portal_net='172.30.0.0/16',
  917. embedded_etcd=True, embedded_kube=True,
  918. embedded_dns=True, dns_port='53',
  919. bind_addr='0.0.0.0', session_max_seconds=3600,
  920. session_name='ssn', session_secrets_file='',
  921. access_token_max_seconds=86400,
  922. auth_token_max_seconds=500,
  923. oauth_grant_method='auto')
  924. defaults['master'] = master
  925. if 'node' in roles:
  926. node = dict(labels={}, annotations={}, portal_net='172.30.0.0/16',
  927. iptables_sync_period='5s', set_node_ip=False)
  928. defaults['node'] = node
  929. return defaults
  930. def guess_host_provider(self):
  931. """ Guess the host provider
  932. Returns:
  933. dict: The generated default facts for the detected provider
  934. """
  935. # TODO: cloud provider facts should probably be submitted upstream
  936. product_name = self.system_facts['product_name']
  937. product_version = self.system_facts['product_version']
  938. virt_type = self.system_facts['virtualization_type']
  939. virt_role = self.system_facts['virtualization_role']
  940. provider = None
  941. metadata = None
  942. # TODO: this is not exposed through module_utils/facts.py in ansible,
  943. # need to create PR for ansible to expose it
  944. bios_vendor = get_file_content(
  945. '/sys/devices/virtual/dmi/id/bios_vendor'
  946. )
  947. if bios_vendor == 'Google':
  948. provider = 'gce'
  949. metadata_url = ('http://metadata.google.internal/'
  950. 'computeMetadata/v1/?recursive=true')
  951. headers = {'Metadata-Flavor': 'Google'}
  952. metadata = get_provider_metadata(metadata_url, True, headers,
  953. True)
  954. # Filter sshKeys and serviceAccounts from gce metadata
  955. if metadata:
  956. metadata['project']['attributes'].pop('sshKeys', None)
  957. metadata['instance'].pop('serviceAccounts', None)
  958. elif (virt_type == 'xen' and virt_role == 'guest'
  959. and re.match(r'.*\.amazon$', product_version)):
  960. provider = 'ec2'
  961. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  962. metadata = get_provider_metadata(metadata_url)
  963. elif re.search(r'OpenStack', product_name):
  964. provider = 'openstack'
  965. metadata_url = ('http://169.254.169.254/openstack/latest/'
  966. 'meta_data.json')
  967. metadata = get_provider_metadata(metadata_url, True, None,
  968. True)
  969. if metadata:
  970. ec2_compat_url = 'http://169.254.169.254/latest/meta-data/'
  971. metadata['ec2_compat'] = get_provider_metadata(
  972. ec2_compat_url
  973. )
  974. # disable pylint maybe-no-member because overloaded use of
  975. # the module name causes pylint to not detect that results
  976. # is an array or hash
  977. # pylint: disable=maybe-no-member
  978. # Filter public_keys and random_seed from openstack metadata
  979. metadata.pop('public_keys', None)
  980. metadata.pop('random_seed', None)
  981. if not metadata['ec2_compat']:
  982. metadata = None
  983. return dict(name=provider, metadata=metadata)
  984. def init_provider_facts(self):
  985. """ Initialize the provider facts
  986. Returns:
  987. dict: The normalized provider facts
  988. """
  989. provider_info = self.guess_host_provider()
  990. provider_facts = normalize_provider_facts(
  991. provider_info.get('name'),
  992. provider_info.get('metadata')
  993. )
  994. return provider_facts
  995. def init_local_facts(self, facts=None, additive_facts_to_overwrite=False):
  996. """ Initialize the provider facts
  997. Args:
  998. facts (dict): local facts to set
  999. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  1000. '.' notation ex: ['master.named_certificates']
  1001. Returns:
  1002. dict: The result of merging the provided facts with existing
  1003. local facts
  1004. """
  1005. changed = False
  1006. facts_to_set = {self.role: dict()}
  1007. if facts is not None:
  1008. facts_to_set[self.role] = facts
  1009. local_facts = get_local_facts_from_file(self.filename)
  1010. for arg in ['labels', 'annotations']:
  1011. if arg in facts_to_set and isinstance(facts_to_set[arg],
  1012. basestring):
  1013. facts_to_set[arg] = module.from_json(facts_to_set[arg])
  1014. new_local_facts = merge_facts(local_facts, facts_to_set, additive_facts_to_overwrite)
  1015. for facts in new_local_facts.values():
  1016. keys_to_delete = []
  1017. for fact, value in facts.iteritems():
  1018. if value == "" or value is None:
  1019. keys_to_delete.append(fact)
  1020. for key in keys_to_delete:
  1021. del facts[key]
  1022. if new_local_facts != local_facts:
  1023. changed = True
  1024. if not module.check_mode:
  1025. save_local_facts(self.filename, new_local_facts)
  1026. self.changed = changed
  1027. return new_local_facts
  1028. def main():
  1029. """ main """
  1030. # disabling pylint errors for global-variable-undefined and invalid-name
  1031. # for 'global module' usage, since it is required to use ansible_facts
  1032. # pylint: disable=global-variable-undefined, invalid-name
  1033. global module
  1034. module = AnsibleModule(
  1035. argument_spec=dict(
  1036. role=dict(default='common', required=False,
  1037. choices=OpenShiftFacts.known_roles),
  1038. local_facts=dict(default=None, type='dict', required=False),
  1039. additive_facts_to_overwrite=dict(default=[], type='list', required=False),
  1040. ),
  1041. supports_check_mode=True,
  1042. add_file_common_args=True,
  1043. )
  1044. role = module.params['role']
  1045. local_facts = module.params['local_facts']
  1046. additive_facts_to_overwrite = module.params['additive_facts_to_overwrite']
  1047. fact_file = '/etc/ansible/facts.d/openshift.fact'
  1048. openshift_facts = OpenShiftFacts(role, fact_file, local_facts, additive_facts_to_overwrite)
  1049. file_params = module.params.copy()
  1050. file_params['path'] = fact_file
  1051. file_args = module.load_file_common_arguments(file_params)
  1052. changed = module.set_fs_attributes_if_different(file_args,
  1053. openshift_facts.changed)
  1054. return module.exit_json(changed=changed,
  1055. ansible_facts=openshift_facts.facts)
  1056. # ignore pylint errors related to the module_utils import
  1057. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import
  1058. # import module snippets
  1059. from ansible.module_utils.basic import *
  1060. from ansible.module_utils.facts import *
  1061. from ansible.module_utils.urls import *
  1062. if __name__ == '__main__':
  1063. main()