openshift_facts.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. """Ansible module for retrieving and setting openshift related facts"""
  5. DOCUMENTATION = '''
  6. ---
  7. module: openshift_facts
  8. short_description: OpenShift Facts
  9. author: Jason DeTiberus
  10. requirements: [ ]
  11. '''
  12. EXAMPLES = '''
  13. '''
  14. import ConfigParser
  15. import copy
  16. import os
  17. def hostname_valid(hostname):
  18. """ Test if specified hostname should be considered valid
  19. Args:
  20. hostname (str): hostname to test
  21. Returns:
  22. bool: True if valid, otherwise False
  23. """
  24. if (not hostname or
  25. hostname.startswith('localhost') or
  26. hostname.endswith('localdomain') or
  27. len(hostname.split('.')) < 2):
  28. return False
  29. return True
  30. def choose_hostname(hostnames=None, fallback=''):
  31. """ Choose a hostname from the provided hostnames
  32. Given a list of hostnames and a fallback value, choose a hostname to
  33. use. This function will prefer fqdns if they exist (excluding any that
  34. begin with localhost or end with localdomain) over ip addresses.
  35. Args:
  36. hostnames (list): list of hostnames
  37. fallback (str): default value to set if hostnames does not contain
  38. a valid hostname
  39. Returns:
  40. str: chosen hostname
  41. """
  42. hostname = fallback
  43. if hostnames is None:
  44. return hostname
  45. ip_regex = r'\A\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\Z'
  46. ips = [i for i in hostnames
  47. if (i is not None and isinstance(i, basestring)
  48. and re.match(ip_regex, i))]
  49. hosts = [i for i in hostnames
  50. if i is not None and i != '' and i not in ips]
  51. for host_list in (hosts, ips):
  52. for host in host_list:
  53. if hostname_valid(host):
  54. return host
  55. return hostname
  56. def query_metadata(metadata_url, headers=None, expect_json=False):
  57. """ Return metadata from the provided metadata_url
  58. Args:
  59. metadata_url (str): metadata url
  60. headers (dict): headers to set for metadata request
  61. expect_json (bool): does the metadata_url return json
  62. Returns:
  63. dict or list: metadata request result
  64. """
  65. result, info = fetch_url(module, metadata_url, headers=headers)
  66. if info['status'] != 200:
  67. raise OpenShiftFactsMetadataUnavailableError("Metadata unavailable")
  68. if expect_json:
  69. return module.from_json(result.read())
  70. else:
  71. return [line.strip() for line in result.readlines()]
  72. def walk_metadata(metadata_url, headers=None, expect_json=False):
  73. """ Walk the metadata tree and return a dictionary of the entire tree
  74. Args:
  75. metadata_url (str): metadata url
  76. headers (dict): headers to set for metadata request
  77. expect_json (bool): does the metadata_url return json
  78. Returns:
  79. dict: the result of walking the metadata tree
  80. """
  81. metadata = dict()
  82. for line in query_metadata(metadata_url, headers, expect_json):
  83. if line.endswith('/') and not line == 'public-keys/':
  84. key = line[:-1]
  85. metadata[key] = walk_metadata(metadata_url + line,
  86. headers, expect_json)
  87. else:
  88. results = query_metadata(metadata_url + line, headers,
  89. expect_json)
  90. if len(results) == 1:
  91. # disable pylint maybe-no-member because overloaded use of
  92. # the module name causes pylint to not detect that results
  93. # is an array or hash
  94. # pylint: disable=maybe-no-member
  95. metadata[line] = results.pop()
  96. else:
  97. metadata[line] = results
  98. return metadata
  99. def get_provider_metadata(metadata_url, supports_recursive=False,
  100. headers=None, expect_json=False):
  101. """ Retrieve the provider metadata
  102. Args:
  103. metadata_url (str): metadata url
  104. supports_recursive (bool): does the provider metadata api support
  105. recursion
  106. headers (dict): headers to set for metadata request
  107. expect_json (bool): does the metadata_url return json
  108. Returns:
  109. dict: the provider metadata
  110. """
  111. try:
  112. if supports_recursive:
  113. metadata = query_metadata(metadata_url, headers,
  114. expect_json)
  115. else:
  116. metadata = walk_metadata(metadata_url, headers,
  117. expect_json)
  118. except OpenShiftFactsMetadataUnavailableError:
  119. metadata = None
  120. return metadata
  121. def normalize_gce_facts(metadata, facts):
  122. """ Normalize gce facts
  123. Args:
  124. metadata (dict): provider metadata
  125. facts (dict): facts to update
  126. Returns:
  127. dict: the result of adding the normalized metadata to the provided
  128. facts dict
  129. """
  130. for interface in metadata['instance']['networkInterfaces']:
  131. int_info = dict(ips=[interface['ip']], network_type='gce')
  132. int_info['public_ips'] = [ac['externalIp'] for ac
  133. in interface['accessConfigs']]
  134. int_info['public_ips'].extend(interface['forwardedIps'])
  135. _, _, network_id = interface['network'].rpartition('/')
  136. int_info['network_id'] = network_id
  137. facts['network']['interfaces'].append(int_info)
  138. _, _, zone = metadata['instance']['zone'].rpartition('/')
  139. facts['zone'] = zone
  140. # Default to no sdn for GCE deployments
  141. facts['use_openshift_sdn'] = False
  142. # GCE currently only supports a single interface
  143. facts['network']['ip'] = facts['network']['interfaces'][0]['ips'][0]
  144. pub_ip = facts['network']['interfaces'][0]['public_ips'][0]
  145. facts['network']['public_ip'] = pub_ip
  146. facts['network']['hostname'] = metadata['instance']['hostname']
  147. # TODO: attempt to resolve public_hostname
  148. facts['network']['public_hostname'] = facts['network']['public_ip']
  149. return facts
  150. def normalize_aws_facts(metadata, facts):
  151. """ Normalize aws facts
  152. Args:
  153. metadata (dict): provider metadata
  154. facts (dict): facts to update
  155. Returns:
  156. dict: the result of adding the normalized metadata to the provided
  157. facts dict
  158. """
  159. for interface in sorted(
  160. metadata['network']['interfaces']['macs'].values(),
  161. key=lambda x: x['device-number']
  162. ):
  163. int_info = dict()
  164. var_map = {'ips': 'local-ipv4s', 'public_ips': 'public-ipv4s'}
  165. for ips_var, int_var in var_map.iteritems():
  166. ips = interface.get(int_var)
  167. if isinstance(ips, basestring):
  168. int_info[ips_var] = [ips]
  169. else:
  170. int_info[ips_var] = ips
  171. if 'vpc-id' in interface:
  172. int_info['network_type'] = 'vpc'
  173. else:
  174. int_info['network_type'] = 'classic'
  175. if int_info['network_type'] == 'vpc':
  176. int_info['network_id'] = interface['subnet-id']
  177. else:
  178. int_info['network_id'] = None
  179. facts['network']['interfaces'].append(int_info)
  180. facts['zone'] = metadata['placement']['availability-zone']
  181. # TODO: actually attempt to determine default local and public ips
  182. # by using the ansible default ip fact and the ipv4-associations
  183. # from the ec2 metadata
  184. facts['network']['ip'] = metadata.get('local-ipv4')
  185. facts['network']['public_ip'] = metadata.get('public-ipv4')
  186. # TODO: verify that local hostname makes sense and is resolvable
  187. facts['network']['hostname'] = metadata.get('local-hostname')
  188. # TODO: verify that public hostname makes sense and is resolvable
  189. facts['network']['public_hostname'] = metadata.get('public-hostname')
  190. return facts
  191. def normalize_openstack_facts(metadata, facts):
  192. """ Normalize openstack facts
  193. Args:
  194. metadata (dict): provider metadata
  195. facts (dict): facts to update
  196. Returns:
  197. dict: the result of adding the normalized metadata to the provided
  198. facts dict
  199. """
  200. # openstack ec2 compat api does not support network interfaces and
  201. # the version tested on did not include the info in the openstack
  202. # metadata api, should be updated if neutron exposes this.
  203. facts['zone'] = metadata['availability_zone']
  204. facts['network']['ip'] = metadata['ec2_compat']['local-ipv4']
  205. facts['network']['public_ip'] = metadata['ec2_compat']['public-ipv4']
  206. # TODO: verify local hostname makes sense and is resolvable
  207. facts['network']['hostname'] = metadata['hostname']
  208. # TODO: verify that public hostname makes sense and is resolvable
  209. pub_h = metadata['ec2_compat']['public-hostname']
  210. facts['network']['public_hostname'] = pub_h
  211. return facts
  212. def normalize_provider_facts(provider, metadata):
  213. """ Normalize provider facts
  214. Args:
  215. provider (str): host provider
  216. metadata (dict): provider metadata
  217. Returns:
  218. dict: the normalized provider facts
  219. """
  220. if provider is None or metadata is None:
  221. return {}
  222. # TODO: test for ipv6_enabled where possible (gce, aws do not support)
  223. # and configure ipv6 facts if available
  224. # TODO: add support for setting user_data if available
  225. facts = dict(name=provider, metadata=metadata,
  226. network=dict(interfaces=[], ipv6_enabled=False))
  227. if provider == 'gce':
  228. facts = normalize_gce_facts(metadata, facts)
  229. elif provider == 'ec2':
  230. facts = normalize_aws_facts(metadata, facts)
  231. elif provider == 'openstack':
  232. facts = normalize_openstack_facts(metadata, facts)
  233. return facts
  234. def set_registry_url_if_unset(facts):
  235. """ Set registry_url fact if not already present in facts dict
  236. Args:
  237. facts (dict): existing facts
  238. Returns:
  239. dict: the facts dict updated with the generated identity providers
  240. facts if they were not already present
  241. """
  242. for role in ('master', 'node'):
  243. if role in facts:
  244. deployment_type = facts['common']['deployment_type']
  245. if 'registry_url' not in facts[role]:
  246. registry_url = "openshift/origin-${component}:${version}"
  247. if deployment_type == 'enterprise':
  248. registry_url = "openshift3_beta/ose-${component}:${version}"
  249. elif deployment_type == 'online':
  250. registry_url = ("docker-registry.ops.rhcloud.com/"
  251. "openshift3_beta/ose-${component}:${version}")
  252. facts[role]['registry_url'] = registry_url
  253. return facts
  254. def set_fluentd_facts_if_unset(facts):
  255. """ Set fluentd facts if not already present in facts dict
  256. dict: the facts dict updated with the generated fluentd facts if
  257. missing
  258. Args:
  259. facts (dict): existing facts
  260. Returns:
  261. dict: the facts dict updated with the generated fluentd
  262. facts if they were not already present
  263. """
  264. if 'common' in facts:
  265. deployment_type = facts['common']['deployment_type']
  266. if 'use_fluentd' not in facts['common']:
  267. use_fluentd = True if deployment_type == 'online' else False
  268. facts['common']['use_fluentd'] = use_fluentd
  269. return facts
  270. def set_identity_providers_if_unset(facts):
  271. """ Set identity_providers fact if not already present in facts dict
  272. Args:
  273. facts (dict): existing facts
  274. Returns:
  275. dict: the facts dict updated with the generated identity providers
  276. facts if they were not already present
  277. """
  278. if 'master' in facts:
  279. deployment_type = facts['common']['deployment_type']
  280. if 'identity_providers' not in facts['master']:
  281. identity_provider = dict(
  282. name='allow_all', challenge=True, login=True,
  283. kind='AllowAllPasswordIdentityProvider'
  284. )
  285. if deployment_type == 'enterprise':
  286. identity_provider = dict(
  287. name='deny_all', challenge=True, login=True,
  288. kind='DenyAllPasswordIdentityProvider'
  289. )
  290. facts['master']['identity_providers'] = [identity_provider]
  291. return facts
  292. def set_url_facts_if_unset(facts):
  293. """ Set url facts if not already present in facts dict
  294. Args:
  295. facts (dict): existing facts
  296. Returns:
  297. dict: the facts dict updated with the generated url facts if they
  298. were not already present
  299. """
  300. if 'master' in facts:
  301. api_use_ssl = facts['master']['api_use_ssl']
  302. api_port = facts['master']['api_port']
  303. console_use_ssl = facts['master']['console_use_ssl']
  304. console_port = facts['master']['console_port']
  305. console_path = facts['master']['console_path']
  306. etcd_use_ssl = facts['master']['etcd_use_ssl']
  307. etcd_port = facts['master']['etcd_port'],
  308. hostname = facts['common']['hostname']
  309. public_hostname = facts['common']['public_hostname']
  310. if 'etcd_urls' not in facts['master']:
  311. facts['master']['etcd_urls'] = [format_url(etcd_use_ssl, hostname,
  312. etcd_port)]
  313. if 'api_url' not in facts['master']:
  314. facts['master']['api_url'] = format_url(api_use_ssl, hostname,
  315. api_port)
  316. if 'public_api_url' not in facts['master']:
  317. facts['master']['public_api_url'] = format_url(api_use_ssl,
  318. public_hostname,
  319. api_port)
  320. if 'console_url' not in facts['master']:
  321. facts['master']['console_url'] = format_url(console_use_ssl,
  322. hostname,
  323. console_port,
  324. console_path)
  325. if 'public_console_url' not in facts['master']:
  326. facts['master']['public_console_url'] = format_url(console_use_ssl,
  327. public_hostname,
  328. console_port,
  329. console_path)
  330. return facts
  331. def set_sdn_facts_if_unset(facts):
  332. """ Set sdn facts if not already present in facts dict
  333. Args:
  334. facts (dict): existing facts
  335. Returns:
  336. dict: the facts dict updated with the generated sdn facts if they
  337. were not already present
  338. """
  339. if 'common' in facts:
  340. if 'sdn_network_plugin_name' not in facts['common']:
  341. use_sdn = facts['common']['use_openshift_sdn']
  342. plugin = 'redhat/openshift-ovs-subnet' if use_sdn else ''
  343. facts['common']['sdn_network_plugin_name'] = plugin
  344. if 'master' in facts:
  345. if 'sdn_cluster_network_cidr' not in facts['master']:
  346. facts['master']['sdn_cluster_network_cidr'] = '10.1.0.0/16'
  347. if 'sdn_host_subnet_length' not in facts['master']:
  348. facts['master']['sdn_host_subnet_length'] = '8'
  349. return facts
  350. def format_url(use_ssl, hostname, port, path=''):
  351. """ Format url based on ssl flag, hostname, port and path
  352. Args:
  353. use_ssl (bool): is ssl enabled
  354. hostname (str): hostname
  355. port (str): port
  356. path (str): url path
  357. Returns:
  358. str: The generated url string
  359. """
  360. scheme = 'https' if use_ssl else 'http'
  361. netloc = hostname
  362. if (use_ssl and port != '443') or (not use_ssl and port != '80'):
  363. netloc += ":%s" % port
  364. return urlparse.urlunparse((scheme, netloc, path, '', '', ''))
  365. def get_current_config(facts):
  366. """ Get current openshift config
  367. Args:
  368. facts (dict): existing facts
  369. Returns:
  370. dict: the facts dict updated with the current openshift config
  371. """
  372. current_config = dict()
  373. roles = [role for role in facts if role not in ['common', 'provider']]
  374. for role in roles:
  375. if 'roles' in current_config:
  376. current_config['roles'].append(role)
  377. else:
  378. current_config['roles'] = [role]
  379. # TODO: parse the /etc/sysconfig/openshift-{master,node} config to
  380. # determine the location of files.
  381. # Query kubeconfig settings
  382. kubeconfig_dir = '/var/lib/openshift/openshift.local.certificates'
  383. if role == 'node':
  384. kubeconfig_dir = os.path.join(
  385. kubeconfig_dir, "node-%s" % facts['common']['hostname']
  386. )
  387. kubeconfig_path = os.path.join(kubeconfig_dir, '.kubeconfig')
  388. if (os.path.isfile('/usr/bin/openshift')
  389. and os.path.isfile(kubeconfig_path)):
  390. try:
  391. _, output, _ = module.run_command(
  392. ["/usr/bin/openshift", "ex", "config", "view", "-o",
  393. "json", "--kubeconfig=%s" % kubeconfig_path],
  394. check_rc=False
  395. )
  396. config = json.loads(output)
  397. cad = 'certificate-authority-data'
  398. try:
  399. for cluster in config['clusters']:
  400. config['clusters'][cluster][cad] = 'masked'
  401. except KeyError:
  402. pass
  403. try:
  404. for user in config['users']:
  405. config['users'][user][cad] = 'masked'
  406. config['users'][user]['client-key-data'] = 'masked'
  407. except KeyError:
  408. pass
  409. current_config['kubeconfig'] = config
  410. # override pylint broad-except warning, since we do not want
  411. # to bubble up any exceptions if openshift ex config view
  412. # fails
  413. # pylint: disable=broad-except
  414. except Exception:
  415. pass
  416. return current_config
  417. def apply_provider_facts(facts, provider_facts):
  418. """ Apply provider facts to supplied facts dict
  419. Args:
  420. facts (dict): facts dict to update
  421. provider_facts (dict): provider facts to apply
  422. roles: host roles
  423. Returns:
  424. dict: the merged facts
  425. """
  426. if not provider_facts:
  427. return facts
  428. use_openshift_sdn = provider_facts.get('use_openshift_sdn')
  429. if isinstance(use_openshift_sdn, bool):
  430. facts['common']['use_openshift_sdn'] = use_openshift_sdn
  431. common_vars = [('hostname', 'ip'), ('public_hostname', 'public_ip')]
  432. for h_var, ip_var in common_vars:
  433. ip_value = provider_facts['network'].get(ip_var)
  434. if ip_value:
  435. facts['common'][ip_var] = ip_value
  436. facts['common'][h_var] = choose_hostname(
  437. [provider_facts['network'].get(h_var)],
  438. facts['common'][ip_var]
  439. )
  440. facts['provider'] = provider_facts
  441. return facts
  442. def merge_facts(orig, new):
  443. """ Recursively merge facts dicts
  444. Args:
  445. orig (dict): existing facts
  446. new (dict): facts to update
  447. Returns:
  448. dict: the merged facts
  449. """
  450. facts = dict()
  451. for key, value in orig.iteritems():
  452. if key in new:
  453. if isinstance(value, dict):
  454. facts[key] = merge_facts(value, new[key])
  455. else:
  456. facts[key] = copy.copy(new[key])
  457. else:
  458. facts[key] = copy.deepcopy(value)
  459. new_keys = set(new.keys()) - set(orig.keys())
  460. for key in new_keys:
  461. facts[key] = copy.deepcopy(new[key])
  462. return facts
  463. def save_local_facts(filename, facts):
  464. """ Save local facts
  465. Args:
  466. filename (str): local facts file
  467. facts (dict): facts to set
  468. """
  469. try:
  470. fact_dir = os.path.dirname(filename)
  471. if not os.path.exists(fact_dir):
  472. os.makedirs(fact_dir)
  473. with open(filename, 'w') as fact_file:
  474. fact_file.write(module.jsonify(facts))
  475. except (IOError, OSError) as ex:
  476. raise OpenShiftFactsFileWriteError(
  477. "Could not create fact file: %s, error: %s" % (filename, ex)
  478. )
  479. def get_local_facts_from_file(filename):
  480. """ Retrieve local facts from fact file
  481. Args:
  482. filename (str): local facts file
  483. Returns:
  484. dict: the retrieved facts
  485. """
  486. local_facts = dict()
  487. try:
  488. # Handle conversion of INI style facts file to json style
  489. ini_facts = ConfigParser.SafeConfigParser()
  490. ini_facts.read(filename)
  491. for section in ini_facts.sections():
  492. local_facts[section] = dict()
  493. for key, value in ini_facts.items(section):
  494. local_facts[section][key] = value
  495. except (ConfigParser.MissingSectionHeaderError,
  496. ConfigParser.ParsingError):
  497. try:
  498. with open(filename, 'r') as facts_file:
  499. local_facts = json.load(facts_file)
  500. except (ValueError, IOError):
  501. pass
  502. return local_facts
  503. class OpenShiftFactsUnsupportedRoleError(Exception):
  504. """OpenShift Facts Unsupported Role Error"""
  505. pass
  506. class OpenShiftFactsFileWriteError(Exception):
  507. """OpenShift Facts File Write Error"""
  508. pass
  509. class OpenShiftFactsMetadataUnavailableError(Exception):
  510. """OpenShift Facts Metadata Unavailable Error"""
  511. pass
  512. class OpenShiftFacts(object):
  513. """ OpenShift Facts
  514. Attributes:
  515. facts (dict): OpenShift facts for the host
  516. Args:
  517. role (str): role for setting local facts
  518. filename (str): local facts file to use
  519. local_facts (dict): local facts to set
  520. Raises:
  521. OpenShiftFactsUnsupportedRoleError:
  522. """
  523. known_roles = ['common', 'master', 'node', 'master_sdn', 'node_sdn', 'dns']
  524. def __init__(self, role, filename, local_facts):
  525. self.changed = False
  526. self.filename = filename
  527. if role not in self.known_roles:
  528. raise OpenShiftFactsUnsupportedRoleError(
  529. "Role %s is not supported by this module" % role
  530. )
  531. self.role = role
  532. self.system_facts = ansible_facts(module)
  533. self.facts = self.generate_facts(local_facts)
  534. def generate_facts(self, local_facts):
  535. """ Generate facts
  536. Args:
  537. local_facts (dict): local_facts for overriding generated
  538. defaults
  539. Returns:
  540. dict: The generated facts
  541. """
  542. local_facts = self.init_local_facts(local_facts)
  543. roles = local_facts.keys()
  544. defaults = self.get_defaults(roles)
  545. provider_facts = self.init_provider_facts()
  546. facts = apply_provider_facts(defaults, provider_facts)
  547. facts = merge_facts(facts, local_facts)
  548. facts['current_config'] = get_current_config(facts)
  549. facts = set_url_facts_if_unset(facts)
  550. facts = set_fluentd_facts_if_unset(facts)
  551. facts = set_identity_providers_if_unset(facts)
  552. facts = set_registry_url_if_unset(facts)
  553. facts = set_sdn_facts_if_unset(facts)
  554. return dict(openshift=facts)
  555. def get_defaults(self, roles):
  556. """ Get default fact values
  557. Args:
  558. roles (list): list of roles for this host
  559. Returns:
  560. dict: The generated default facts
  561. """
  562. defaults = dict()
  563. ip_addr = self.system_facts['default_ipv4']['address']
  564. exit_code, output, _ = module.run_command(['hostname', '-f'])
  565. hostname_f = output.strip() if exit_code == 0 else ''
  566. hostname_values = [hostname_f, self.system_facts['nodename'],
  567. self.system_facts['fqdn']]
  568. hostname = choose_hostname(hostname_values)
  569. common = dict(use_openshift_sdn=True, ip=ip_addr, public_ip=ip_addr,
  570. deployment_type='origin', hostname=hostname,
  571. public_hostname=hostname)
  572. common['client_binary'] = 'oc' if os.path.isfile('/usr/bin/oc') else 'osc'
  573. common['admin_binary'] = 'oadm' if os.path.isfile('/usr/bin/oadm') else 'osadm'
  574. defaults['common'] = common
  575. if 'master' in roles:
  576. master = dict(api_use_ssl=True, api_port='8443',
  577. console_use_ssl=True, console_path='/console',
  578. console_port='8443', etcd_use_ssl=True,
  579. etcd_port='4001', portal_net='172.30.0.0/16',
  580. embedded_etcd=True, embedded_kube=True,
  581. embedded_dns=True, dns_port='53',
  582. bind_addr='0.0.0.0', session_max_seconds=3600,
  583. session_name='ssn', session_secrets_file='',
  584. access_token_max_seconds=86400,
  585. auth_token_max_seconds=500,
  586. oauth_grant_method='auto')
  587. defaults['master'] = master
  588. if 'node' in roles:
  589. node = dict(pod_cidr='', labels={}, annotations={})
  590. node['resources_cpu'] = self.system_facts['processor_cores']
  591. node['resources_memory'] = int(
  592. int(self.system_facts['memtotal_mb']) * 1024 * 1024 * 0.75
  593. )
  594. defaults['node'] = node
  595. return defaults
  596. def guess_host_provider(self):
  597. """ Guess the host provider
  598. Returns:
  599. dict: The generated default facts for the detected provider
  600. """
  601. # TODO: cloud provider facts should probably be submitted upstream
  602. product_name = self.system_facts['product_name']
  603. product_version = self.system_facts['product_version']
  604. virt_type = self.system_facts['virtualization_type']
  605. virt_role = self.system_facts['virtualization_role']
  606. provider = None
  607. metadata = None
  608. # TODO: this is not exposed through module_utils/facts.py in ansible,
  609. # need to create PR for ansible to expose it
  610. bios_vendor = get_file_content(
  611. '/sys/devices/virtual/dmi/id/bios_vendor'
  612. )
  613. if bios_vendor == 'Google':
  614. provider = 'gce'
  615. metadata_url = ('http://metadata.google.internal/'
  616. 'computeMetadata/v1/?recursive=true')
  617. headers = {'Metadata-Flavor': 'Google'}
  618. metadata = get_provider_metadata(metadata_url, True, headers,
  619. True)
  620. # Filter sshKeys and serviceAccounts from gce metadata
  621. if metadata:
  622. metadata['project']['attributes'].pop('sshKeys', None)
  623. metadata['instance'].pop('serviceAccounts', None)
  624. elif (virt_type == 'xen' and virt_role == 'guest'
  625. and re.match(r'.*\.amazon$', product_version)):
  626. provider = 'ec2'
  627. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  628. metadata = get_provider_metadata(metadata_url)
  629. elif re.search(r'OpenStack', product_name):
  630. provider = 'openstack'
  631. metadata_url = ('http://169.254.169.254/openstack/latest/'
  632. 'meta_data.json')
  633. metadata = get_provider_metadata(metadata_url, True, None,
  634. True)
  635. if metadata:
  636. ec2_compat_url = 'http://169.254.169.254/latest/meta-data/'
  637. metadata['ec2_compat'] = get_provider_metadata(
  638. ec2_compat_url
  639. )
  640. # disable pylint maybe-no-member because overloaded use of
  641. # the module name causes pylint to not detect that results
  642. # is an array or hash
  643. # pylint: disable=maybe-no-member
  644. # Filter public_keys and random_seed from openstack metadata
  645. metadata.pop('public_keys', None)
  646. metadata.pop('random_seed', None)
  647. if not metadata['ec2_compat']:
  648. metadata = None
  649. return dict(name=provider, metadata=metadata)
  650. def init_provider_facts(self):
  651. """ Initialize the provider facts
  652. Returns:
  653. dict: The normalized provider facts
  654. """
  655. provider_info = self.guess_host_provider()
  656. provider_facts = normalize_provider_facts(
  657. provider_info.get('name'),
  658. provider_info.get('metadata')
  659. )
  660. return provider_facts
  661. def init_local_facts(self, facts=None):
  662. """ Initialize the provider facts
  663. Args:
  664. facts (dict): local facts to set
  665. Returns:
  666. dict: The result of merging the provided facts with existing
  667. local facts
  668. """
  669. changed = False
  670. facts_to_set = {self.role: dict()}
  671. if facts is not None:
  672. facts_to_set[self.role] = facts
  673. local_facts = get_local_facts_from_file(self.filename)
  674. for arg in ['labels', 'annotations']:
  675. if arg in facts_to_set and isinstance(facts_to_set[arg],
  676. basestring):
  677. facts_to_set[arg] = module.from_json(facts_to_set[arg])
  678. new_local_facts = merge_facts(local_facts, facts_to_set)
  679. for facts in new_local_facts.values():
  680. keys_to_delete = []
  681. for fact, value in facts.iteritems():
  682. if value == "" or value is None:
  683. keys_to_delete.append(fact)
  684. for key in keys_to_delete:
  685. del facts[key]
  686. if new_local_facts != local_facts:
  687. changed = True
  688. if not module.check_mode:
  689. save_local_facts(self.filename, new_local_facts)
  690. self.changed = changed
  691. return new_local_facts
  692. def main():
  693. """ main """
  694. # disabling pylint errors for global-variable-undefined and invalid-name
  695. # for 'global module' usage, since it is required to use ansible_facts
  696. # pylint: disable=global-variable-undefined, invalid-name
  697. global module
  698. module = AnsibleModule(
  699. argument_spec=dict(
  700. role=dict(default='common', required=False,
  701. choices=OpenShiftFacts.known_roles),
  702. local_facts=dict(default=None, type='dict', required=False),
  703. ),
  704. supports_check_mode=True,
  705. add_file_common_args=True,
  706. )
  707. role = module.params['role']
  708. local_facts = module.params['local_facts']
  709. fact_file = '/etc/ansible/facts.d/openshift.fact'
  710. openshift_facts = OpenShiftFacts(role, fact_file, local_facts)
  711. file_params = module.params.copy()
  712. file_params['path'] = fact_file
  713. file_args = module.load_file_common_arguments(file_params)
  714. changed = module.set_fs_attributes_if_different(file_args,
  715. openshift_facts.changed)
  716. return module.exit_json(changed=changed,
  717. ansible_facts=openshift_facts.facts)
  718. # ignore pylint errors related to the module_utils import
  719. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import
  720. # import module snippets
  721. from ansible.module_utils.basic import *
  722. from ansible.module_utils.facts import *
  723. from ansible.module_utils.urls import *
  724. if __name__ == '__main__':
  725. main()