openshift_facts.py 66 KB

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