openshift_facts.py 47 KB

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