openshift_facts.py 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  1. #!/usr/bin/python
  2. # pylint: disable=too-many-lines
  3. # -*- coding: utf-8 -*-
  4. # Reason: Disable pylint too-many-lines because we don't want to split up this file.
  5. # Status: Permanently disabled to keep this module as self-contained as possible.
  6. """Ansible module for retrieving and setting openshift related facts"""
  7. # pylint: disable=no-name-in-module, import-error, wrong-import-order
  8. import copy
  9. import errno
  10. import json
  11. import re
  12. import os
  13. import yaml
  14. import struct
  15. import socket
  16. from distutils.util import strtobool
  17. from distutils.version import LooseVersion
  18. from ansible.module_utils.six import string_types
  19. from ansible.module_utils.six.moves import configparser
  20. # ignore pylint errors related to the module_utils import
  21. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import
  22. # import module snippets
  23. from ansible.module_utils.basic import * # noqa: F403
  24. from ansible.module_utils.facts import * # noqa: F403
  25. from ansible.module_utils.urls import * # noqa: F403
  26. from ansible.module_utils.six import iteritems, itervalues
  27. from ansible.module_utils.six.moves.urllib.parse import urlparse, urlunparse
  28. from ansible.module_utils._text import to_native
  29. HAVE_DBUS = False
  30. try:
  31. from dbus import SystemBus, Interface
  32. from dbus.exceptions import DBusException
  33. HAVE_DBUS = True
  34. except ImportError:
  35. pass
  36. DOCUMENTATION = '''
  37. ---
  38. module: openshift_facts
  39. short_description: Cluster Facts
  40. author: Jason DeTiberus
  41. requirements: [ ]
  42. '''
  43. EXAMPLES = '''
  44. '''
  45. # TODO: We should add a generic migration function that takes source and destination
  46. # paths and does the right thing rather than one function for common, one for node, etc.
  47. def migrate_common_facts(facts):
  48. """ Migrate facts from various roles into common """
  49. params = {
  50. 'node': ('portal_net'),
  51. 'master': ('portal_net')
  52. }
  53. if 'common' not in facts:
  54. facts['common'] = {}
  55. # pylint: disable=consider-iterating-dictionary
  56. for role in params.keys():
  57. if role in facts:
  58. for param in params[role]:
  59. if param in facts[role]:
  60. facts['common'][param] = facts[role].pop(param)
  61. return facts
  62. def migrate_node_facts(facts):
  63. """ Migrate facts from various roles into node """
  64. params = {
  65. 'common': ('dns_ip'),
  66. }
  67. if 'node' not in facts:
  68. facts['node'] = {}
  69. # pylint: disable=consider-iterating-dictionary
  70. for role in params.keys():
  71. if role in facts:
  72. for param in params[role]:
  73. if param in facts[role]:
  74. facts['node'][param] = facts[role].pop(param)
  75. return facts
  76. def migrate_admission_plugin_facts(facts):
  77. """ Apply migrations for admission plugin facts """
  78. if 'master' in facts:
  79. if 'kube_admission_plugin_config' in facts['master']:
  80. if 'admission_plugin_config' not in facts['master']:
  81. facts['master']['admission_plugin_config'] = dict()
  82. # Merge existing kube_admission_plugin_config with admission_plugin_config.
  83. facts['master']['admission_plugin_config'] = merge_facts(facts['master']['admission_plugin_config'],
  84. facts['master']['kube_admission_plugin_config'],
  85. additive_facts_to_overwrite=[])
  86. # Remove kube_admission_plugin_config fact
  87. facts['master'].pop('kube_admission_plugin_config', None)
  88. return facts
  89. def migrate_local_facts(facts):
  90. """ Apply migrations of local facts """
  91. migrated_facts = copy.deepcopy(facts)
  92. migrated_facts = migrate_common_facts(migrated_facts)
  93. migrated_facts = migrate_node_facts(migrated_facts)
  94. migrated_facts = migrate_admission_plugin_facts(migrated_facts)
  95. return migrated_facts
  96. def first_ip(network):
  97. """ Return the first IPv4 address in network
  98. Args:
  99. network (str): network in CIDR format
  100. Returns:
  101. str: first IPv4 address
  102. """
  103. atoi = lambda addr: struct.unpack("!I", socket.inet_aton(addr))[0] # noqa: E731
  104. itoa = lambda addr: socket.inet_ntoa(struct.pack("!I", addr)) # noqa: E731
  105. (address, netmask) = network.split('/')
  106. netmask_i = (0xffffffff << (32 - atoi(netmask))) & 0xffffffff
  107. return itoa((atoi(address) & netmask_i) + 1)
  108. def hostname_valid(hostname):
  109. """ Test if specified hostname should be considered valid
  110. Args:
  111. hostname (str): hostname to test
  112. Returns:
  113. bool: True if valid, otherwise False
  114. """
  115. if (not hostname or
  116. hostname.startswith('localhost') or
  117. hostname.endswith('localdomain') or
  118. # OpenShift will not allow a node with more than 63 chars in name.
  119. len(hostname) > 63):
  120. return False
  121. return True
  122. def choose_hostname(hostnames=None, fallback=''):
  123. """ Choose a hostname from the provided hostnames
  124. Given a list of hostnames and a fallback value, choose a hostname to
  125. use. This function will prefer fqdns if they exist (excluding any that
  126. begin with localhost or end with localdomain) over ip addresses.
  127. Args:
  128. hostnames (list): list of hostnames
  129. fallback (str): default value to set if hostnames does not contain
  130. a valid hostname
  131. Returns:
  132. str: chosen hostname
  133. """
  134. hostname = fallback
  135. if hostnames is None:
  136. return hostname
  137. ip_regex = r'\A\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\Z'
  138. ips = [i for i in hostnames if i is not None and isinstance(i, string_types) and re.match(ip_regex, i)]
  139. hosts = [i for i in hostnames if i is not None and i != '' and i not in ips]
  140. for host_list in (hosts, ips):
  141. for host in host_list:
  142. if hostname_valid(host):
  143. return host
  144. return hostname
  145. def query_metadata(metadata_url, headers=None, expect_json=False):
  146. """ Return metadata from the provided metadata_url
  147. Args:
  148. metadata_url (str): metadata url
  149. headers (dict): headers to set for metadata request
  150. expect_json (bool): does the metadata_url return json
  151. Returns:
  152. dict or list: metadata request result
  153. """
  154. result, info = fetch_url(module, metadata_url, headers=headers) # noqa: F405
  155. if info['status'] != 200:
  156. raise OpenShiftFactsMetadataUnavailableError("Metadata unavailable")
  157. if expect_json:
  158. return module.from_json(to_native(result.read())) # noqa: F405
  159. else:
  160. return [to_native(line.strip()) for line in result.readlines()]
  161. def walk_metadata(metadata_url, headers=None, expect_json=False):
  162. """ Walk the metadata tree and return a dictionary of the entire tree
  163. Args:
  164. metadata_url (str): metadata url
  165. headers (dict): headers to set for metadata request
  166. expect_json (bool): does the metadata_url return json
  167. Returns:
  168. dict: the result of walking the metadata tree
  169. """
  170. metadata = dict()
  171. for line in query_metadata(metadata_url, headers, expect_json):
  172. if line.endswith('/') and not line == 'public-keys/':
  173. key = line[:-1]
  174. metadata[key] = walk_metadata(metadata_url + line,
  175. headers, expect_json)
  176. else:
  177. results = query_metadata(metadata_url + line, headers,
  178. expect_json)
  179. if len(results) == 1:
  180. # disable pylint maybe-no-member because overloaded use of
  181. # the module name causes pylint to not detect that results
  182. # is an array or hash
  183. # pylint: disable=maybe-no-member
  184. metadata[line] = results.pop()
  185. else:
  186. metadata[line] = results
  187. return metadata
  188. def get_provider_metadata(metadata_url, supports_recursive=False,
  189. headers=None, expect_json=False):
  190. """ Retrieve the provider metadata
  191. Args:
  192. metadata_url (str): metadata url
  193. supports_recursive (bool): does the provider metadata api support
  194. recursion
  195. headers (dict): headers to set for metadata request
  196. expect_json (bool): does the metadata_url return json
  197. Returns:
  198. dict: the provider metadata
  199. """
  200. try:
  201. if supports_recursive:
  202. metadata = query_metadata(metadata_url, headers,
  203. expect_json)
  204. else:
  205. metadata = walk_metadata(metadata_url, headers,
  206. expect_json)
  207. except OpenShiftFactsMetadataUnavailableError:
  208. metadata = None
  209. return metadata
  210. def normalize_gce_facts(metadata, facts):
  211. """ Normalize gce facts
  212. Args:
  213. metadata (dict): provider metadata
  214. facts (dict): facts to update
  215. Returns:
  216. dict: the result of adding the normalized metadata to the provided
  217. facts dict
  218. """
  219. for interface in metadata['instance']['networkInterfaces']:
  220. int_info = dict(ips=[interface['ip']], network_type='gce')
  221. int_info['public_ips'] = [ac['externalIp'] for ac
  222. in interface['accessConfigs']]
  223. int_info['public_ips'].extend(interface['forwardedIps'])
  224. _, _, network_id = interface['network'].rpartition('/')
  225. int_info['network_id'] = network_id
  226. facts['network']['interfaces'].append(int_info)
  227. _, _, zone = metadata['instance']['zone'].rpartition('/')
  228. facts['zone'] = zone
  229. # GCE currently only supports a single interface
  230. facts['network']['ip'] = facts['network']['interfaces'][0]['ips'][0]
  231. pub_ip = facts['network']['interfaces'][0]['public_ips'][0]
  232. facts['network']['public_ip'] = pub_ip
  233. # Split instance hostname from GCE metadata to use the short instance name
  234. facts['network']['hostname'] = metadata['instance']['hostname'].split('.')[0]
  235. # TODO: attempt to resolve public_hostname
  236. facts['network']['public_hostname'] = facts['network']['public_ip']
  237. return facts
  238. def normalize_aws_facts(metadata, facts):
  239. """ Normalize aws facts
  240. Args:
  241. metadata (dict): provider metadata
  242. facts (dict): facts to update
  243. Returns:
  244. dict: the result of adding the normalized metadata to the provided
  245. facts dict
  246. """
  247. for interface in sorted(
  248. metadata['network']['interfaces']['macs'].values(),
  249. key=lambda x: x['device-number']
  250. ):
  251. int_info = dict()
  252. var_map = {'ips': 'local-ipv4s', 'public_ips': 'public-ipv4s'}
  253. for ips_var, int_var in iteritems(var_map):
  254. ips = interface.get(int_var)
  255. if isinstance(ips, string_types):
  256. int_info[ips_var] = [ips]
  257. else:
  258. int_info[ips_var] = ips
  259. if 'vpc-id' in interface:
  260. int_info['network_type'] = 'vpc'
  261. else:
  262. int_info['network_type'] = 'classic'
  263. if int_info['network_type'] == 'vpc':
  264. int_info['network_id'] = interface['subnet-id']
  265. else:
  266. int_info['network_id'] = None
  267. facts['network']['interfaces'].append(int_info)
  268. facts['zone'] = metadata['placement']['availability-zone']
  269. # TODO: actually attempt to determine default local and public ips
  270. # by using the ansible default ip fact and the ipv4-associations
  271. # from the ec2 metadata
  272. facts['network']['ip'] = metadata.get('local-ipv4')
  273. facts['network']['public_ip'] = metadata.get('public-ipv4')
  274. # TODO: verify that local hostname makes sense and is resolvable
  275. facts['network']['hostname'] = metadata.get('local-hostname')
  276. # TODO: verify that public hostname makes sense and is resolvable
  277. facts['network']['public_hostname'] = metadata.get('public-hostname')
  278. return facts
  279. def normalize_openstack_facts(metadata, facts):
  280. """ Normalize openstack facts
  281. Args:
  282. metadata (dict): provider metadata
  283. facts (dict): facts to update
  284. Returns:
  285. dict: the result of adding the normalized metadata to the provided
  286. facts dict
  287. """
  288. # openstack ec2 compat api does not support network interfaces and
  289. # the version tested on did not include the info in the openstack
  290. # metadata api, should be updated if neutron exposes this.
  291. facts['zone'] = metadata['availability_zone']
  292. local_ipv4 = metadata['ec2_compat']['local-ipv4'].split(',')[0]
  293. facts['network']['ip'] = local_ipv4
  294. facts['network']['public_ip'] = metadata['ec2_compat']['public-ipv4']
  295. for f_var, h_var, ip_var in [('hostname', 'hostname', 'local-ipv4'),
  296. ('public_hostname', 'public-hostname', 'public-ipv4')]:
  297. try:
  298. if socket.gethostbyname(metadata['ec2_compat'][h_var]) == metadata['ec2_compat'][ip_var]:
  299. facts['network'][f_var] = metadata['ec2_compat'][h_var]
  300. else:
  301. facts['network'][f_var] = metadata['ec2_compat'][ip_var]
  302. except socket.gaierror:
  303. facts['network'][f_var] = metadata['ec2_compat'][ip_var]
  304. return facts
  305. def normalize_provider_facts(provider, metadata):
  306. """ Normalize provider facts
  307. Args:
  308. provider (str): host provider
  309. metadata (dict): provider metadata
  310. Returns:
  311. dict: the normalized provider facts
  312. """
  313. if provider is None or metadata is None:
  314. return {}
  315. # TODO: test for ipv6_enabled where possible (gce, aws do not support)
  316. # and configure ipv6 facts if available
  317. # TODO: add support for setting user_data if available
  318. facts = dict(name=provider, metadata=metadata,
  319. network=dict(interfaces=[], ipv6_enabled=False))
  320. if provider == 'gce':
  321. facts = normalize_gce_facts(metadata, facts)
  322. elif provider == 'aws':
  323. facts = normalize_aws_facts(metadata, facts)
  324. elif provider == 'openstack':
  325. facts = normalize_openstack_facts(metadata, facts)
  326. return facts
  327. def set_identity_providers_if_unset(facts):
  328. """ Set identity_providers fact if not already present in facts dict
  329. Args:
  330. facts (dict): existing facts
  331. Returns:
  332. dict: the facts dict updated with the generated identity providers
  333. facts if they were not already present
  334. """
  335. if 'master' in facts:
  336. deployment_type = facts['common']['deployment_type']
  337. if 'identity_providers' not in facts['master']:
  338. identity_provider = dict(
  339. name='allow_all', challenge=True, login=True,
  340. kind='AllowAllPasswordIdentityProvider'
  341. )
  342. if deployment_type == 'openshift-enterprise':
  343. identity_provider = dict(
  344. name='deny_all', challenge=True, login=True,
  345. kind='DenyAllPasswordIdentityProvider'
  346. )
  347. facts['master']['identity_providers'] = [identity_provider]
  348. return facts
  349. def set_url_facts_if_unset(facts):
  350. """ Set url facts if not already present in facts dict
  351. Args:
  352. facts (dict): existing facts
  353. Returns:
  354. dict: the facts dict updated with the generated url facts if they
  355. were not already present
  356. """
  357. if 'master' in facts:
  358. hostname = facts['common']['hostname']
  359. cluster_hostname = facts['master'].get('cluster_hostname')
  360. cluster_public_hostname = facts['master'].get('cluster_public_hostname')
  361. public_hostname = facts['common']['public_hostname']
  362. api_hostname = cluster_hostname if cluster_hostname else hostname
  363. api_public_hostname = cluster_public_hostname if cluster_public_hostname else public_hostname
  364. console_path = facts['master']['console_path']
  365. etcd_hosts = facts['master']['etcd_hosts']
  366. use_ssl = dict(
  367. api=facts['master']['api_use_ssl'],
  368. public_api=facts['master']['api_use_ssl'],
  369. loopback_api=facts['master']['api_use_ssl'],
  370. console=facts['master']['console_use_ssl'],
  371. public_console=facts['master']['console_use_ssl'],
  372. etcd=facts['master']['etcd_use_ssl']
  373. )
  374. ports = dict(
  375. api=facts['master']['api_port'],
  376. public_api=facts['master']['api_port'],
  377. loopback_api=facts['master']['api_port'],
  378. console=facts['master']['console_port'],
  379. public_console=facts['master']['console_port'],
  380. etcd=facts['master']['etcd_port'],
  381. )
  382. etcd_urls = []
  383. if etcd_hosts != '':
  384. facts['master']['etcd_port'] = ports['etcd']
  385. facts['master']['embedded_etcd'] = False
  386. for host in etcd_hosts:
  387. etcd_urls.append(format_url(use_ssl['etcd'], host,
  388. ports['etcd']))
  389. else:
  390. etcd_urls = [format_url(use_ssl['etcd'], hostname,
  391. ports['etcd'])]
  392. facts['master'].setdefault('etcd_urls', etcd_urls)
  393. prefix_hosts = [('api', api_hostname),
  394. ('public_api', api_public_hostname),
  395. ('loopback_api', hostname)]
  396. for prefix, host in prefix_hosts:
  397. facts['master'].setdefault(prefix + '_url', format_url(use_ssl[prefix],
  398. host,
  399. ports[prefix]))
  400. r_lhn = "{0}:{1}".format(hostname, ports['api']).replace('.', '-')
  401. r_lhu = "system:openshift-master/{0}:{1}".format(api_hostname, ports['api']).replace('.', '-')
  402. facts['master'].setdefault('loopback_cluster_name', r_lhn)
  403. facts['master'].setdefault('loopback_context_name', "default/{0}/system:openshift-master".format(r_lhn))
  404. facts['master'].setdefault('loopback_user', r_lhu)
  405. prefix_hosts = [('console', api_hostname), ('public_console', api_public_hostname)]
  406. for prefix, host in prefix_hosts:
  407. facts['master'].setdefault(prefix + '_url', format_url(use_ssl[prefix],
  408. host,
  409. ports[prefix],
  410. console_path))
  411. return facts
  412. def set_aggregate_facts(facts):
  413. """ Set aggregate facts
  414. Args:
  415. facts (dict): existing facts
  416. Returns:
  417. dict: the facts dict updated with aggregated facts
  418. """
  419. all_hostnames = set()
  420. internal_hostnames = set()
  421. kube_svc_ip = first_ip(facts['common']['portal_net'])
  422. if 'common' in facts:
  423. all_hostnames.add(facts['common']['hostname'])
  424. all_hostnames.add(facts['common']['public_hostname'])
  425. all_hostnames.add(facts['common']['ip'])
  426. all_hostnames.add(facts['common']['public_ip'])
  427. facts['common']['kube_svc_ip'] = kube_svc_ip
  428. internal_hostnames.add(facts['common']['hostname'])
  429. internal_hostnames.add(facts['common']['ip'])
  430. cluster_domain = facts['common']['dns_domain']
  431. if 'master' in facts:
  432. if 'cluster_hostname' in facts['master']:
  433. all_hostnames.add(facts['master']['cluster_hostname'])
  434. if 'cluster_public_hostname' in facts['master']:
  435. all_hostnames.add(facts['master']['cluster_public_hostname'])
  436. svc_names = ['openshift', 'openshift.default', 'openshift.default.svc',
  437. 'openshift.default.svc.' + cluster_domain, 'kubernetes', 'kubernetes.default',
  438. 'kubernetes.default.svc', 'kubernetes.default.svc.' + cluster_domain]
  439. all_hostnames.update(svc_names)
  440. internal_hostnames.update(svc_names)
  441. all_hostnames.add(kube_svc_ip)
  442. internal_hostnames.add(kube_svc_ip)
  443. facts['common']['all_hostnames'] = list(all_hostnames)
  444. facts['common']['internal_hostnames'] = list(internal_hostnames)
  445. return facts
  446. def set_deployment_facts_if_unset(facts):
  447. """ Set Facts that vary based on deployment_type. This currently
  448. includes master.registry_url, node.registry_url,
  449. node.storage_plugin_deps
  450. Args:
  451. facts (dict): existing facts
  452. Returns:
  453. dict: the facts dict updated with the generated deployment_type
  454. facts
  455. """
  456. # disabled to avoid breaking up facts related to deployment type into
  457. # multiple methods for now.
  458. # pylint: disable=too-many-statements, too-many-branches
  459. for role in ('master', 'node'):
  460. if role in facts:
  461. deployment_type = facts['common']['deployment_type']
  462. if 'registry_url' not in facts[role]:
  463. registry_url = 'openshift/origin-${component}:${version}'
  464. if deployment_type == 'openshift-enterprise':
  465. registry_url = 'openshift3/ose-${component}:${version}'
  466. facts[role]['registry_url'] = registry_url
  467. if 'master' in facts:
  468. deployment_type = facts['common']['deployment_type']
  469. openshift_features = ['Builder', 'S2IBuilder', 'WebConsole']
  470. if 'disabled_features' not in facts['master']:
  471. if facts['common']['deployment_subtype'] == 'registry':
  472. facts['master']['disabled_features'] = openshift_features
  473. if 'node' in facts:
  474. deployment_type = facts['common']['deployment_type']
  475. if 'storage_plugin_deps' not in facts['node']:
  476. facts['node']['storage_plugin_deps'] = ['ceph', 'glusterfs', 'iscsi']
  477. return facts
  478. # pylint: disable=too-many-statements
  479. def set_version_facts_if_unset(facts):
  480. """ Set version facts. This currently includes common.version and
  481. common.version_gte_3_x
  482. Args:
  483. facts (dict): existing facts
  484. Returns:
  485. dict: the facts dict updated with version facts.
  486. """
  487. if 'common' in facts:
  488. openshift_version = get_openshift_version(facts)
  489. if openshift_version and openshift_version != "latest":
  490. version = LooseVersion(openshift_version)
  491. facts['common']['version'] = openshift_version
  492. facts['common']['short_version'] = '.'.join([str(x) for x in version.version[0:2]])
  493. version_gte_3_6 = version >= LooseVersion('3.6')
  494. version_gte_3_7 = version >= LooseVersion('3.7')
  495. version_gte_3_8 = version >= LooseVersion('3.8')
  496. version_gte_3_9 = version >= LooseVersion('3.9')
  497. else:
  498. # 'Latest' version is set to True, 'Next' versions set to False
  499. version_gte_3_6 = True
  500. version_gte_3_7 = True
  501. version_gte_3_8 = False
  502. version_gte_3_9 = False
  503. facts['common']['version_gte_3_6'] = version_gte_3_6
  504. facts['common']['version_gte_3_7'] = version_gte_3_7
  505. facts['common']['version_gte_3_8'] = version_gte_3_8
  506. facts['common']['version_gte_3_9'] = version_gte_3_9
  507. if version_gte_3_9:
  508. examples_content_version = 'v3.9'
  509. elif version_gte_3_8:
  510. examples_content_version = 'v3.8'
  511. elif version_gte_3_7:
  512. examples_content_version = 'v3.7'
  513. elif version_gte_3_6:
  514. examples_content_version = 'v3.6'
  515. else:
  516. examples_content_version = 'v1.5'
  517. facts['common']['examples_content_version'] = examples_content_version
  518. return facts
  519. def set_sdn_facts_if_unset(facts, system_facts):
  520. """ Set sdn facts if not already present in facts dict
  521. Args:
  522. facts (dict): existing facts
  523. system_facts (dict): ansible_facts
  524. Returns:
  525. dict: the facts dict updated with the generated sdn facts if they
  526. were not already present
  527. """
  528. if 'master' in facts:
  529. # set defaults for sdn_cluster_network_cidr and sdn_host_subnet_length
  530. # these might be overridden if they exist in the master config file
  531. sdn_cluster_network_cidr = '10.128.0.0/14'
  532. sdn_host_subnet_length = '9'
  533. master_cfg_path = os.path.join(facts['common']['config_base'],
  534. 'master/master-config.yaml')
  535. if os.path.isfile(master_cfg_path):
  536. with open(master_cfg_path, 'r') as master_cfg_f:
  537. config = yaml.safe_load(master_cfg_f.read())
  538. if 'networkConfig' in config:
  539. if 'clusterNetworkCIDR' in config['networkConfig']:
  540. sdn_cluster_network_cidr = \
  541. config['networkConfig']['clusterNetworkCIDR']
  542. if 'hostSubnetLength' in config['networkConfig']:
  543. sdn_host_subnet_length = \
  544. config['networkConfig']['hostSubnetLength']
  545. if 'sdn_cluster_network_cidr' not in facts['master']:
  546. facts['master']['sdn_cluster_network_cidr'] = sdn_cluster_network_cidr
  547. if 'sdn_host_subnet_length' not in facts['master']:
  548. facts['master']['sdn_host_subnet_length'] = sdn_host_subnet_length
  549. if 'node' in facts and 'sdn_mtu' not in facts['node']:
  550. node_ip = facts['common']['ip']
  551. # default MTU if interface MTU cannot be detected
  552. facts['node']['sdn_mtu'] = '1450'
  553. for val in itervalues(system_facts):
  554. if isinstance(val, dict) and 'mtu' in val:
  555. mtu = val['mtu']
  556. if 'ipv4' in val and val['ipv4'].get('address') == node_ip:
  557. facts['node']['sdn_mtu'] = str(mtu - 50)
  558. return facts
  559. def set_nodename(facts):
  560. """ set nodename """
  561. if 'node' in facts and 'common' in facts:
  562. if 'cloudprovider' in facts and facts['cloudprovider']['kind'] == 'gce':
  563. facts['node']['nodename'] = facts['provider']['metadata']['instance']['hostname'].split('.')[0]
  564. # TODO: The openstack cloudprovider nodename setting was too opinionaed.
  565. # It needs to be generalized before it can be enabled again.
  566. # elif 'cloudprovider' in facts and facts['cloudprovider']['kind'] == 'openstack':
  567. # facts['node']['nodename'] = facts['provider']['metadata']['hostname'].replace('.novalocal', '')
  568. else:
  569. facts['node']['nodename'] = facts['common']['hostname'].lower()
  570. return facts
  571. def migrate_oauth_template_facts(facts):
  572. """
  573. Migrate an old oauth template fact to a newer format if it's present.
  574. The legacy 'oauth_template' fact was just a filename, and assumed you were
  575. setting the 'login' template.
  576. The new pluralized 'oauth_templates' fact is a dict mapping the template
  577. name to a filename.
  578. Simplify the code after this by merging the old fact into the new.
  579. """
  580. if 'master' in facts and 'oauth_template' in facts['master']:
  581. if 'oauth_templates' not in facts['master']:
  582. facts['master']['oauth_templates'] = {"login": facts['master']['oauth_template']}
  583. elif 'login' not in facts['master']['oauth_templates']:
  584. facts['master']['oauth_templates']['login'] = facts['master']['oauth_template']
  585. return facts
  586. def format_url(use_ssl, hostname, port, path=''):
  587. """ Format url based on ssl flag, hostname, port and path
  588. Args:
  589. use_ssl (bool): is ssl enabled
  590. hostname (str): hostname
  591. port (str): port
  592. path (str): url path
  593. Returns:
  594. str: The generated url string
  595. """
  596. scheme = 'https' if use_ssl else 'http'
  597. netloc = hostname
  598. if (use_ssl and port != '443') or (not use_ssl and port != '80'):
  599. netloc += ":%s" % port
  600. try:
  601. url = urlparse.urlunparse((scheme, netloc, path, '', '', ''))
  602. except AttributeError:
  603. # pylint: disable=undefined-variable
  604. url = urlunparse((scheme, netloc, path, '', '', ''))
  605. return url
  606. def get_current_config(facts):
  607. """ Get current openshift config
  608. Args:
  609. facts (dict): existing facts
  610. Returns:
  611. dict: the facts dict updated with the current openshift config
  612. """
  613. current_config = dict()
  614. roles = [role for role in facts if role not in ['common', 'provider']]
  615. for role in roles:
  616. if 'roles' in current_config:
  617. current_config['roles'].append(role)
  618. else:
  619. current_config['roles'] = [role]
  620. # TODO: parse the /etc/sysconfig/openshift-{master,node} config to
  621. # determine the location of files.
  622. # TODO: I suspect this isn't working right now, but it doesn't prevent
  623. # anything from working properly as far as I can tell, perhaps because
  624. # we override the kubeconfig path everywhere we use it?
  625. # Query kubeconfig settings
  626. kubeconfig_dir = '/var/lib/origin/openshift.local.certificates'
  627. if role == 'node':
  628. kubeconfig_dir = os.path.join(
  629. kubeconfig_dir, "node-%s" % facts['common']['hostname']
  630. )
  631. kubeconfig_path = os.path.join(kubeconfig_dir, '.kubeconfig')
  632. if os.path.isfile('/usr/bin/openshift') and os.path.isfile(kubeconfig_path):
  633. try:
  634. _, output, _ = module.run_command( # noqa: F405
  635. ["/usr/bin/openshift", "ex", "config", "view", "-o",
  636. "json", "--kubeconfig=%s" % kubeconfig_path],
  637. check_rc=False
  638. )
  639. config = json.loads(output)
  640. cad = 'certificate-authority-data'
  641. try:
  642. for cluster in config['clusters']:
  643. config['clusters'][cluster][cad] = 'masked'
  644. except KeyError:
  645. pass
  646. try:
  647. for user in config['users']:
  648. config['users'][user][cad] = 'masked'
  649. config['users'][user]['client-key-data'] = 'masked'
  650. except KeyError:
  651. pass
  652. current_config['kubeconfig'] = config
  653. # override pylint broad-except warning, since we do not want
  654. # to bubble up any exceptions if oc config view
  655. # fails
  656. # pylint: disable=broad-except
  657. except Exception:
  658. pass
  659. return current_config
  660. def build_kubelet_args(facts):
  661. """Build node kubelet_args
  662. In the node-config.yaml file, kubeletArgument sub-keys have their
  663. values provided as a list. Hence the gratuitous use of ['foo'] below.
  664. """
  665. cloud_cfg_path = os.path.join(
  666. facts['common']['config_base'],
  667. 'cloudprovider')
  668. # We only have to do this stuff on hosts that are nodes
  669. if 'node' in facts:
  670. # Any changes to the kubeletArguments parameter are stored
  671. # here first.
  672. kubelet_args = {}
  673. if 'cloudprovider' in facts:
  674. # EVERY cloud is special <3
  675. if 'kind' in facts['cloudprovider']:
  676. if facts['cloudprovider']['kind'] == 'aws':
  677. kubelet_args['cloud-provider'] = ['aws']
  678. kubelet_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  679. if facts['cloudprovider']['kind'] == 'openstack':
  680. kubelet_args['cloud-provider'] = ['openstack']
  681. kubelet_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  682. if facts['cloudprovider']['kind'] == 'gce':
  683. kubelet_args['cloud-provider'] = ['gce']
  684. kubelet_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  685. # Automatically add node-labels to the kubeletArguments
  686. # parameter. See BZ1359848 for additional details.
  687. #
  688. # Ref: https://bugzilla.redhat.com/show_bug.cgi?id=1359848
  689. if 'labels' in facts['node'] and isinstance(facts['node']['labels'], dict):
  690. # tl;dr: os_node_labels="{'foo': 'bar', 'a': 'b'}" turns
  691. # into ['foo=bar', 'a=b']
  692. #
  693. # On the openshift_node_labels inventory variable we loop
  694. # over each key-value tuple (from .items()) and join the
  695. # key to the value with an '=' character, this produces a
  696. # list.
  697. #
  698. # map() seems to be returning an itertools.imap object
  699. # instead of a list. We cast it to a list ourselves.
  700. # pylint: disable=unnecessary-lambda
  701. labels_str = list(map(lambda x: '='.join(x), facts['node']['labels'].items()))
  702. if labels_str != '':
  703. kubelet_args['node-labels'] = labels_str
  704. # If we've added items to the kubelet_args dict then we need
  705. # to merge the new items back into the main facts object.
  706. if kubelet_args != {}:
  707. facts = merge_facts({'node': {'kubelet_args': kubelet_args}}, facts, [])
  708. return facts
  709. def build_controller_args(facts):
  710. """ Build master controller_args """
  711. cloud_cfg_path = os.path.join(facts['common']['config_base'],
  712. 'cloudprovider')
  713. if 'master' in facts:
  714. controller_args = {}
  715. if 'cloudprovider' in facts:
  716. if 'kind' in facts['cloudprovider']:
  717. if facts['cloudprovider']['kind'] == 'aws':
  718. controller_args['cloud-provider'] = ['aws']
  719. controller_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  720. if facts['cloudprovider']['kind'] == 'openstack':
  721. controller_args['cloud-provider'] = ['openstack']
  722. controller_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  723. if facts['cloudprovider']['kind'] == 'gce':
  724. controller_args['cloud-provider'] = ['gce']
  725. controller_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  726. if controller_args != {}:
  727. facts = merge_facts({'master': {'controller_args': controller_args}}, facts, [])
  728. return facts
  729. def build_api_server_args(facts):
  730. """ Build master api_server_args """
  731. cloud_cfg_path = os.path.join(facts['common']['config_base'],
  732. 'cloudprovider')
  733. if 'master' in facts:
  734. api_server_args = {}
  735. if 'cloudprovider' in facts:
  736. if 'kind' in facts['cloudprovider']:
  737. if facts['cloudprovider']['kind'] == 'aws':
  738. api_server_args['cloud-provider'] = ['aws']
  739. api_server_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  740. if facts['cloudprovider']['kind'] == 'openstack':
  741. api_server_args['cloud-provider'] = ['openstack']
  742. api_server_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  743. if facts['cloudprovider']['kind'] == 'gce':
  744. api_server_args['cloud-provider'] = ['gce']
  745. api_server_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  746. if api_server_args != {}:
  747. facts = merge_facts({'master': {'api_server_args': api_server_args}}, facts, [])
  748. return facts
  749. def is_service_running(service):
  750. """ Queries systemd through dbus to see if the service is running """
  751. service_running = False
  752. try:
  753. bus = SystemBus()
  754. systemd = bus.get_object('org.freedesktop.systemd1', '/org/freedesktop/systemd1')
  755. manager = Interface(systemd, dbus_interface='org.freedesktop.systemd1.Manager')
  756. service_unit = service if service.endswith('.service') else manager.GetUnit('{0}.service'.format(service))
  757. service_proxy = bus.get_object('org.freedesktop.systemd1', str(service_unit))
  758. service_properties = Interface(service_proxy, dbus_interface='org.freedesktop.DBus.Properties')
  759. service_load_state = service_properties.Get('org.freedesktop.systemd1.Unit', 'LoadState')
  760. service_active_state = service_properties.Get('org.freedesktop.systemd1.Unit', 'ActiveState')
  761. if service_load_state == 'loaded' and service_active_state == 'active':
  762. service_running = True
  763. except DBusException:
  764. # TODO: do not swallow exception, as it may be hiding useful debugging
  765. # information.
  766. pass
  767. return service_running
  768. def rpm_rebuilddb():
  769. """
  770. Runs rpm --rebuilddb to ensure the db is in good shape.
  771. """
  772. module.run_command(['/usr/bin/rpm', '--rebuilddb']) # noqa: F405
  773. def get_version_output(binary, version_cmd):
  774. """ runs and returns the version output for a command """
  775. cmd = []
  776. for item in (binary, version_cmd):
  777. if isinstance(item, list):
  778. cmd.extend(item)
  779. else:
  780. cmd.append(item)
  781. if os.path.isfile(cmd[0]):
  782. _, output, _ = module.run_command(cmd) # noqa: F405
  783. return output
  784. # We may need this in the future.
  785. def get_docker_version_info():
  786. """ Parses and returns the docker version info """
  787. result = None
  788. if is_service_running('docker') or is_service_running('container-engine'):
  789. version_info = yaml.safe_load(get_version_output('/usr/bin/docker', 'version'))
  790. if 'Server' in version_info:
  791. result = {
  792. 'api_version': version_info['Server']['API version'],
  793. 'version': version_info['Server']['Version']
  794. }
  795. return result
  796. def get_openshift_version(facts):
  797. """ Get current version of openshift on the host.
  798. Checks a variety of ways ranging from fastest to slowest.
  799. Args:
  800. facts (dict): existing facts
  801. optional cli_image for pulling the version number
  802. Returns:
  803. version: the current openshift version
  804. """
  805. version = None
  806. # No need to run this method repeatedly on a system if we already know the
  807. # version
  808. # TODO: We need a way to force reload this after upgrading bits.
  809. if 'common' in facts:
  810. if 'version' in facts['common'] and facts['common']['version'] is not None:
  811. return chomp_commit_offset(facts['common']['version'])
  812. if os.path.isfile('/usr/bin/openshift'):
  813. _, output, _ = module.run_command(['/usr/bin/openshift', 'version']) # noqa: F405
  814. version = parse_openshift_version(output)
  815. elif 'common' in facts and 'is_containerized' in facts['common']:
  816. version = get_container_openshift_version(facts)
  817. # Handle containerized masters that have not yet been configured as a node.
  818. # This can be very slow and may get re-run multiple times, so we only use this
  819. # if other methods failed to find a version.
  820. if not version and os.path.isfile('/usr/local/bin/openshift'):
  821. _, output, _ = module.run_command(['/usr/local/bin/openshift', 'version']) # noqa: F405
  822. version = parse_openshift_version(output)
  823. return chomp_commit_offset(version)
  824. def chomp_commit_offset(version):
  825. """Chomp any "+git.foo" commit offset string from the given `version`
  826. and return the modified version string.
  827. Ex:
  828. - chomp_commit_offset(None) => None
  829. - chomp_commit_offset(1337) => "1337"
  830. - chomp_commit_offset("v3.4.0.15+git.derp") => "v3.4.0.15"
  831. - chomp_commit_offset("v3.4.0.15") => "v3.4.0.15"
  832. - chomp_commit_offset("v1.3.0+52492b4") => "v1.3.0"
  833. """
  834. if version is None:
  835. return version
  836. else:
  837. # Stringify, just in case it's a Number type. Split by '+' and
  838. # return the first split. No concerns about strings without a
  839. # '+', .split() returns an array of the original string.
  840. return str(version).split('+')[0]
  841. def get_container_openshift_version(facts):
  842. """
  843. If containerized, see if we can determine the installed version via the
  844. systemd environment files.
  845. """
  846. deployment_type = facts['common']['deployment_type']
  847. service_type_dict = {'origin': 'origin',
  848. 'openshift-enterprise': 'atomic-openshift'}
  849. service_type = service_type_dict[deployment_type]
  850. for filename in ['/etc/sysconfig/%s-master-controllers', '/etc/sysconfig/%s-node']:
  851. env_path = filename % service_type
  852. if not os.path.exists(env_path):
  853. continue
  854. with open(env_path) as env_file:
  855. for line in env_file:
  856. if line.startswith("IMAGE_VERSION="):
  857. tag = line[len("IMAGE_VERSION="):].strip()
  858. # Remove leading "v" and any trailing release info, we just want
  859. # a version number here:
  860. no_v_version = tag[1:] if tag[0] == 'v' else tag
  861. version = no_v_version.split("-")[0]
  862. return version
  863. return None
  864. def parse_openshift_version(output):
  865. """ Apply provider facts to supplied facts dict
  866. Args:
  867. string: output of 'openshift version'
  868. Returns:
  869. string: the version number
  870. """
  871. versions = dict(e.split(' v') for e in output.splitlines() if ' v' in e)
  872. ver = versions.get('openshift', '')
  873. # Remove trailing build number and commit hash from older versions, we need to return a straight
  874. # w.x.y.z version here for use as openshift_version throughout the playbooks/roles. (i.e. 3.1.1.6-64-g80b61da)
  875. ver = ver.split('-')[0]
  876. return ver
  877. def apply_provider_facts(facts, provider_facts):
  878. """ Apply provider facts to supplied facts dict
  879. Args:
  880. facts (dict): facts dict to update
  881. provider_facts (dict): provider facts to apply
  882. roles: host roles
  883. Returns:
  884. dict: the merged facts
  885. """
  886. if not provider_facts:
  887. return facts
  888. common_vars = [('hostname', 'ip'), ('public_hostname', 'public_ip')]
  889. for h_var, ip_var in common_vars:
  890. ip_value = provider_facts['network'].get(ip_var)
  891. if ip_value:
  892. facts['common'][ip_var] = ip_value
  893. facts['common'][h_var] = choose_hostname(
  894. [provider_facts['network'].get(h_var)],
  895. facts['common'][h_var]
  896. )
  897. facts['provider'] = provider_facts
  898. return facts
  899. # Disabling pylint too many branches. This function needs refactored
  900. # but is a very core part of openshift_facts.
  901. # pylint: disable=too-many-branches, too-many-nested-blocks
  902. def merge_facts(orig, new, additive_facts_to_overwrite):
  903. """ Recursively merge facts dicts
  904. Args:
  905. orig (dict): existing facts
  906. new (dict): facts to update
  907. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  908. '.' notation ex: ['master.named_certificates']
  909. Returns:
  910. dict: the merged facts
  911. """
  912. additive_facts = ['named_certificates']
  913. # Facts we do not ever want to merge. These originate in inventory variables
  914. # and contain JSON dicts. We don't ever want to trigger a merge
  915. # here, just completely overwrite with the new if they are present there.
  916. inventory_json_facts = ['admission_plugin_config',
  917. 'kube_admission_plugin_config',
  918. 'image_policy_config',
  919. "builddefaults",
  920. "buildoverrides"]
  921. facts = dict()
  922. for key, value in iteritems(orig):
  923. # Key exists in both old and new facts.
  924. if key in new:
  925. if key in inventory_json_facts:
  926. # Watchout for JSON facts that sometimes load as strings.
  927. # (can happen if the JSON contains a boolean)
  928. if isinstance(new[key], string_types):
  929. facts[key] = yaml.safe_load(new[key])
  930. else:
  931. facts[key] = copy.deepcopy(new[key])
  932. # Continue to recurse if old and new fact is a dictionary.
  933. elif isinstance(value, dict) and isinstance(new[key], dict):
  934. # Collect the subset of additive facts to overwrite if
  935. # key matches. These will be passed to the subsequent
  936. # merge_facts call.
  937. relevant_additive_facts = []
  938. for item in additive_facts_to_overwrite:
  939. if '.' in item and item.startswith(key + '.'):
  940. relevant_additive_facts.append(item)
  941. facts[key] = merge_facts(value, new[key], relevant_additive_facts)
  942. # Key matches an additive fact and we are not overwriting
  943. # it so we will append the new value to the existing value.
  944. elif key in additive_facts and key not in [x.split('.')[-1] for x in additive_facts_to_overwrite]:
  945. if isinstance(value, list) and isinstance(new[key], list):
  946. new_fact = []
  947. for item in copy.deepcopy(value) + copy.deepcopy(new[key]):
  948. if item not in new_fact:
  949. new_fact.append(item)
  950. facts[key] = new_fact
  951. # No other condition has been met. Overwrite the old fact
  952. # with the new value.
  953. else:
  954. facts[key] = copy.deepcopy(new[key])
  955. # Key isn't in new so add it to facts to keep it.
  956. else:
  957. facts[key] = copy.deepcopy(value)
  958. new_keys = set(new.keys()) - set(orig.keys())
  959. for key in new_keys:
  960. # Watchout for JSON facts that sometimes load as strings.
  961. # (can happen if the JSON contains a boolean)
  962. if key in inventory_json_facts and isinstance(new[key], string_types):
  963. facts[key] = yaml.safe_load(new[key])
  964. else:
  965. facts[key] = copy.deepcopy(new[key])
  966. return facts
  967. def save_local_facts(filename, facts):
  968. """ Save local facts
  969. Args:
  970. filename (str): local facts file
  971. facts (dict): facts to set
  972. """
  973. try:
  974. fact_dir = os.path.dirname(filename)
  975. try:
  976. os.makedirs(fact_dir) # try to make the directory
  977. except OSError as exception:
  978. if exception.errno != errno.EEXIST: # but it is okay if it is already there
  979. raise # pass any other exceptions up the chain
  980. with open(filename, 'w') as fact_file:
  981. fact_file.write(module.jsonify(facts)) # noqa: F405
  982. os.chmod(filename, 0o600)
  983. except (IOError, OSError) as ex:
  984. raise OpenShiftFactsFileWriteError(
  985. "Could not create fact file: %s, error: %s" % (filename, ex)
  986. )
  987. def get_local_facts_from_file(filename):
  988. """ Retrieve local facts from fact file
  989. Args:
  990. filename (str): local facts file
  991. Returns:
  992. dict: the retrieved facts
  993. """
  994. local_facts = dict()
  995. try:
  996. # Handle conversion of INI style facts file to json style
  997. ini_facts = configparser.SafeConfigParser()
  998. ini_facts.read(filename)
  999. for section in ini_facts.sections():
  1000. local_facts[section] = dict()
  1001. for key, value in ini_facts.items(section):
  1002. local_facts[section][key] = value
  1003. except (configparser.MissingSectionHeaderError,
  1004. configparser.ParsingError):
  1005. try:
  1006. with open(filename, 'r') as facts_file:
  1007. local_facts = json.load(facts_file)
  1008. except (ValueError, IOError):
  1009. pass
  1010. return local_facts
  1011. def sort_unique(alist):
  1012. """ Sorts and de-dupes a list
  1013. Args:
  1014. list: a list
  1015. Returns:
  1016. list: a sorted de-duped list
  1017. """
  1018. return sorted(list(set(alist)))
  1019. def safe_get_bool(fact):
  1020. """ Get a boolean fact safely.
  1021. Args:
  1022. facts: fact to convert
  1023. Returns:
  1024. bool: given fact as a bool
  1025. """
  1026. return bool(strtobool(str(fact)))
  1027. def set_proxy_facts(facts):
  1028. """ Set global proxy facts
  1029. Args:
  1030. facts(dict): existing facts
  1031. Returns:
  1032. facts(dict): Updated facts with missing values
  1033. """
  1034. if 'common' in facts:
  1035. common = facts['common']
  1036. if 'http_proxy' in common or 'https_proxy' in common or 'no_proxy' in common:
  1037. if 'no_proxy' in common and isinstance(common['no_proxy'], string_types):
  1038. common['no_proxy'] = common['no_proxy'].split(",")
  1039. elif 'no_proxy' not in common:
  1040. common['no_proxy'] = []
  1041. # See https://bugzilla.redhat.com/show_bug.cgi?id=1466783
  1042. # masters behind a proxy need to connect to etcd via IP
  1043. if 'no_proxy_etcd_host_ips' in common:
  1044. if isinstance(common['no_proxy_etcd_host_ips'], string_types):
  1045. common['no_proxy'].extend(common['no_proxy_etcd_host_ips'].split(','))
  1046. if 'generate_no_proxy_hosts' in common and safe_get_bool(common['generate_no_proxy_hosts']):
  1047. if 'no_proxy_internal_hostnames' in common:
  1048. common['no_proxy'].extend(common['no_proxy_internal_hostnames'].split(','))
  1049. # We always add local dns domain and ourselves no matter what
  1050. common['no_proxy'].append('.' + common['dns_domain'])
  1051. common['no_proxy'].append('.svc')
  1052. common['no_proxy'].append(common['hostname'])
  1053. common['no_proxy'] = ','.join(sort_unique(common['no_proxy']))
  1054. facts['common'] = common
  1055. return facts
  1056. def set_builddefaults_facts(facts):
  1057. """ Set build defaults including setting proxy values from http_proxy, https_proxy,
  1058. no_proxy to the more specific builddefaults and builddefaults_git vars.
  1059. 1. http_proxy, https_proxy, no_proxy
  1060. 2. builddefaults_*
  1061. 3. builddefaults_git_*
  1062. Args:
  1063. facts(dict): existing facts
  1064. Returns:
  1065. facts(dict): Updated facts with missing values
  1066. """
  1067. if 'builddefaults' in facts:
  1068. builddefaults = facts['builddefaults']
  1069. common = facts['common']
  1070. # Copy values from common to builddefaults
  1071. if 'http_proxy' not in builddefaults and 'http_proxy' in common:
  1072. builddefaults['http_proxy'] = common['http_proxy']
  1073. if 'https_proxy' not in builddefaults and 'https_proxy' in common:
  1074. builddefaults['https_proxy'] = common['https_proxy']
  1075. if 'no_proxy' not in builddefaults and 'no_proxy' in common:
  1076. builddefaults['no_proxy'] = common['no_proxy']
  1077. # Create git specific facts from generic values, if git specific values are
  1078. # not defined.
  1079. if 'git_http_proxy' not in builddefaults and 'http_proxy' in builddefaults:
  1080. builddefaults['git_http_proxy'] = builddefaults['http_proxy']
  1081. if 'git_https_proxy' not in builddefaults and 'https_proxy' in builddefaults:
  1082. builddefaults['git_https_proxy'] = builddefaults['https_proxy']
  1083. if 'git_no_proxy' not in builddefaults and 'no_proxy' in builddefaults:
  1084. builddefaults['git_no_proxy'] = builddefaults['no_proxy']
  1085. # If we're actually defining a builddefaults config then create admission_plugin_config
  1086. # then merge builddefaults[config] structure into admission_plugin_config
  1087. # 'config' is the 'openshift_builddefaults_json' inventory variable
  1088. if 'config' in builddefaults:
  1089. if 'admission_plugin_config' not in facts['master']:
  1090. # Scaffold out the full expected datastructure
  1091. facts['master']['admission_plugin_config'] = {'BuildDefaults': {'configuration': {'env': {}}}}
  1092. facts['master']['admission_plugin_config'].update(builddefaults['config'])
  1093. if 'env' in facts['master']['admission_plugin_config']['BuildDefaults']['configuration']:
  1094. delete_empty_keys(facts['master']['admission_plugin_config']['BuildDefaults']['configuration']['env'])
  1095. return facts
  1096. def delete_empty_keys(keylist):
  1097. """ Delete dictionary elements from keylist where "value" is empty.
  1098. Args:
  1099. keylist(list): A list of builddefault configuration envs.
  1100. Returns:
  1101. none
  1102. Example:
  1103. keylist = [{'name': 'HTTP_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  1104. {'name': 'HTTPS_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  1105. {'name': 'NO_PROXY', 'value': ''}]
  1106. After calling delete_empty_keys the provided list is modified to become:
  1107. [{'name': 'HTTP_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  1108. {'name': 'HTTPS_PROXY', 'value': 'http://file.rdu.redhat.com:3128'}]
  1109. """
  1110. count = 0
  1111. for i in range(0, len(keylist)):
  1112. if len(keylist[i - count]['value']) == 0:
  1113. del keylist[i - count]
  1114. count += 1
  1115. def set_buildoverrides_facts(facts):
  1116. """ Set build overrides
  1117. Args:
  1118. facts(dict): existing facts
  1119. Returns:
  1120. facts(dict): Updated facts with missing values
  1121. """
  1122. if 'buildoverrides' in facts:
  1123. buildoverrides = facts['buildoverrides']
  1124. # If we're actually defining a buildoverrides config then create admission_plugin_config
  1125. # then merge buildoverrides[config] structure into admission_plugin_config
  1126. if 'config' in buildoverrides:
  1127. if 'admission_plugin_config' not in facts['master']:
  1128. facts['master']['admission_plugin_config'] = dict()
  1129. facts['master']['admission_plugin_config'].update(buildoverrides['config'])
  1130. return facts
  1131. # pylint: disable=too-many-statements
  1132. def set_container_facts_if_unset(facts):
  1133. """ Set containerized facts.
  1134. Args:
  1135. facts (dict): existing facts
  1136. Returns:
  1137. dict: the facts dict updated with the generated containerization
  1138. facts
  1139. """
  1140. deployment_type = facts['common']['deployment_type']
  1141. if deployment_type == 'openshift-enterprise':
  1142. master_image = 'openshift3/ose'
  1143. node_image = 'openshift3/node'
  1144. ovs_image = 'openshift3/openvswitch'
  1145. pod_image = 'openshift3/ose-pod'
  1146. router_image = 'openshift3/ose-haproxy-router'
  1147. registry_image = 'openshift3/ose-docker-registry'
  1148. deployer_image = 'openshift3/ose-deployer'
  1149. else:
  1150. master_image = 'openshift/origin'
  1151. node_image = 'openshift/node'
  1152. ovs_image = 'openshift/openvswitch'
  1153. pod_image = 'openshift/origin-pod'
  1154. router_image = 'openshift/origin-haproxy-router'
  1155. registry_image = 'openshift/origin-docker-registry'
  1156. deployer_image = 'openshift/origin-deployer'
  1157. facts['common']['is_atomic'] = os.path.isfile('/run/ostree-booted')
  1158. if 'is_containerized' not in facts['common']:
  1159. facts['common']['is_containerized'] = facts['common']['is_atomic']
  1160. if 'pod_image' not in facts['common']:
  1161. facts['common']['pod_image'] = pod_image
  1162. if 'router_image' not in facts['common']:
  1163. facts['common']['router_image'] = router_image
  1164. if 'registry_image' not in facts['common']:
  1165. facts['common']['registry_image'] = registry_image
  1166. if 'deployer_image' not in facts['common']:
  1167. facts['common']['deployer_image'] = deployer_image
  1168. if 'master' in facts and 'master_image' not in facts['master']:
  1169. facts['master']['master_image'] = master_image
  1170. facts['master']['master_system_image'] = master_image
  1171. if 'node' in facts:
  1172. if 'node_image' not in facts['node']:
  1173. facts['node']['node_image'] = node_image
  1174. facts['node']['node_system_image'] = node_image
  1175. if 'ovs_image' not in facts['node']:
  1176. facts['node']['ovs_image'] = ovs_image
  1177. facts['node']['ovs_system_image'] = ovs_image
  1178. if safe_get_bool(facts['common']['is_containerized']):
  1179. facts['common']['client_binary'] = '/usr/local/bin/oc'
  1180. return facts
  1181. def set_installed_variant_rpm_facts(facts):
  1182. """ Set RPM facts of installed variant
  1183. Args:
  1184. facts (dict): existing facts
  1185. Returns:
  1186. dict: the facts dict updated with installed_variant_rpms
  1187. """
  1188. installed_rpms = []
  1189. for base_rpm in ['openshift', 'atomic-openshift', 'origin']:
  1190. optional_rpms = ['master', 'node', 'clients', 'sdn-ovs']
  1191. variant_rpms = [base_rpm] + \
  1192. ['{0}-{1}'.format(base_rpm, r) for r in optional_rpms] + \
  1193. ['tuned-profiles-%s-node' % base_rpm]
  1194. for rpm in variant_rpms:
  1195. exit_code, _, _ = module.run_command(['rpm', '-q', rpm]) # noqa: F405
  1196. if exit_code == 0:
  1197. installed_rpms.append(rpm)
  1198. facts['common']['installed_variant_rpms'] = installed_rpms
  1199. return facts
  1200. class OpenShiftFactsInternalError(Exception):
  1201. """Origin Facts Error"""
  1202. pass
  1203. class OpenShiftFactsUnsupportedRoleError(Exception):
  1204. """Origin Facts Unsupported Role Error"""
  1205. pass
  1206. class OpenShiftFactsFileWriteError(Exception):
  1207. """Origin Facts File Write Error"""
  1208. pass
  1209. class OpenShiftFactsMetadataUnavailableError(Exception):
  1210. """Origin Facts Metadata Unavailable Error"""
  1211. pass
  1212. class OpenShiftFacts(object):
  1213. """ Origin Facts
  1214. Attributes:
  1215. facts (dict): facts for the host
  1216. Args:
  1217. module (AnsibleModule): an AnsibleModule object
  1218. role (str): role for setting local facts
  1219. filename (str): local facts file to use
  1220. local_facts (dict): local facts to set
  1221. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  1222. '.' notation ex: ['master.named_certificates']
  1223. Raises:
  1224. OpenShiftFactsUnsupportedRoleError:
  1225. """
  1226. known_roles = ['builddefaults',
  1227. 'buildoverrides',
  1228. 'cloudprovider',
  1229. 'common',
  1230. 'etcd',
  1231. 'master',
  1232. 'node']
  1233. # Disabling too-many-arguments, this should be cleaned up as a TODO item.
  1234. # pylint: disable=too-many-arguments,no-value-for-parameter
  1235. def __init__(self, role, filename, local_facts,
  1236. additive_facts_to_overwrite=None,
  1237. openshift_env=None,
  1238. openshift_env_structures=None):
  1239. self.changed = False
  1240. self.filename = filename
  1241. if role not in self.known_roles:
  1242. raise OpenShiftFactsUnsupportedRoleError(
  1243. "Role %s is not supported by this module" % role
  1244. )
  1245. self.role = role
  1246. # Collect system facts and preface each fact with 'ansible_'.
  1247. try:
  1248. # pylint: disable=too-many-function-args,invalid-name
  1249. self.system_facts = ansible_facts(module, ['hardware', 'network', 'virtual', 'facter']) # noqa: F405
  1250. additional_facts = {}
  1251. for (k, v) in self.system_facts.items():
  1252. additional_facts["ansible_%s" % k.replace('-', '_')] = v
  1253. self.system_facts.update(additional_facts)
  1254. except UnboundLocalError:
  1255. # ansible-2.2,2.3
  1256. self.system_facts = get_all_facts(module)['ansible_facts'] # noqa: F405
  1257. self.facts = self.generate_facts(local_facts,
  1258. additive_facts_to_overwrite,
  1259. openshift_env,
  1260. openshift_env_structures)
  1261. def generate_facts(self,
  1262. local_facts,
  1263. additive_facts_to_overwrite,
  1264. openshift_env,
  1265. openshift_env_structures):
  1266. """ Generate facts
  1267. Args:
  1268. local_facts (dict): local_facts for overriding generated defaults
  1269. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  1270. '.' notation ex: ['master.named_certificates']
  1271. openshift_env (dict): openshift_env facts for overriding generated defaults
  1272. Returns:
  1273. dict: The generated facts
  1274. """
  1275. local_facts = self.init_local_facts(local_facts,
  1276. additive_facts_to_overwrite,
  1277. openshift_env,
  1278. openshift_env_structures)
  1279. roles = local_facts.keys()
  1280. if 'common' in local_facts and 'deployment_type' in local_facts['common']:
  1281. deployment_type = local_facts['common']['deployment_type']
  1282. else:
  1283. deployment_type = 'origin'
  1284. if 'common' in local_facts and 'deployment_subtype' in local_facts['common']:
  1285. deployment_subtype = local_facts['common']['deployment_subtype']
  1286. else:
  1287. deployment_subtype = 'basic'
  1288. defaults = self.get_defaults(roles, deployment_type, deployment_subtype)
  1289. provider_facts = self.init_provider_facts()
  1290. facts = apply_provider_facts(defaults, provider_facts)
  1291. facts = merge_facts(facts,
  1292. local_facts,
  1293. additive_facts_to_overwrite)
  1294. facts = migrate_oauth_template_facts(facts)
  1295. facts['current_config'] = get_current_config(facts)
  1296. facts = set_url_facts_if_unset(facts)
  1297. facts = set_identity_providers_if_unset(facts)
  1298. facts = set_deployment_facts_if_unset(facts)
  1299. facts = set_sdn_facts_if_unset(facts, self.system_facts)
  1300. facts = set_container_facts_if_unset(facts)
  1301. facts = build_kubelet_args(facts)
  1302. facts = build_controller_args(facts)
  1303. facts = build_api_server_args(facts)
  1304. facts = set_version_facts_if_unset(facts)
  1305. facts = set_aggregate_facts(facts)
  1306. facts = set_proxy_facts(facts)
  1307. facts = set_builddefaults_facts(facts)
  1308. facts = set_buildoverrides_facts(facts)
  1309. if not safe_get_bool(facts['common']['is_containerized']):
  1310. facts = set_installed_variant_rpm_facts(facts)
  1311. facts = set_nodename(facts)
  1312. return dict(openshift=facts)
  1313. def get_defaults(self, roles, deployment_type, deployment_subtype):
  1314. """ Get default fact values
  1315. Args:
  1316. roles (list): list of roles for this host
  1317. Returns:
  1318. dict: The generated default facts
  1319. """
  1320. defaults = {}
  1321. ip_addr = self.system_facts['ansible_default_ipv4']['address']
  1322. exit_code, output, _ = module.run_command(['hostname', '-f']) # noqa: F405
  1323. hostname_f = output.strip() if exit_code == 0 else ''
  1324. hostname_values = [hostname_f, self.system_facts['ansible_nodename'],
  1325. self.system_facts['ansible_fqdn']]
  1326. hostname = choose_hostname(hostname_values, ip_addr).lower()
  1327. defaults['common'] = dict(ip=ip_addr,
  1328. public_ip=ip_addr,
  1329. deployment_type=deployment_type,
  1330. deployment_subtype=deployment_subtype,
  1331. hostname=hostname,
  1332. public_hostname=hostname,
  1333. portal_net='172.30.0.0/16',
  1334. client_binary='oc',
  1335. dns_domain='cluster.local',
  1336. config_base='/etc/origin')
  1337. if 'master' in roles:
  1338. defaults['master'] = dict(api_use_ssl=True, api_port='8443',
  1339. controllers_port='8444',
  1340. console_use_ssl=True,
  1341. console_path='/console',
  1342. console_port='8443', etcd_use_ssl=True,
  1343. etcd_hosts='', etcd_port='4001',
  1344. portal_net='172.30.0.0/16',
  1345. embedded_etcd=True, embedded_kube=True,
  1346. embedded_dns=True,
  1347. bind_addr='0.0.0.0',
  1348. session_max_seconds=3600,
  1349. session_name='ssn',
  1350. session_secrets_file='',
  1351. access_token_max_seconds=86400,
  1352. auth_token_max_seconds=500,
  1353. oauth_grant_method='auto',
  1354. dynamic_provisioning_enabled=True,
  1355. max_requests_inflight=500)
  1356. if 'node' in roles:
  1357. defaults['node'] = dict(labels={}, annotations={},
  1358. iptables_sync_period='30s',
  1359. local_quota_per_fsgroup="",
  1360. set_node_ip=False)
  1361. if 'cloudprovider' in roles:
  1362. defaults['cloudprovider'] = dict(kind=None)
  1363. return defaults
  1364. def guess_host_provider(self):
  1365. """ Guess the host provider
  1366. Returns:
  1367. dict: The generated default facts for the detected provider
  1368. """
  1369. # TODO: cloud provider facts should probably be submitted upstream
  1370. product_name = self.system_facts['ansible_product_name']
  1371. product_version = self.system_facts['ansible_product_version']
  1372. virt_type = self.system_facts['ansible_virtualization_type']
  1373. virt_role = self.system_facts['ansible_virtualization_role']
  1374. bios_vendor = self.system_facts['ansible_system_vendor']
  1375. provider = None
  1376. metadata = None
  1377. if bios_vendor == 'Google':
  1378. provider = 'gce'
  1379. metadata_url = ('http://metadata.google.internal/'
  1380. 'computeMetadata/v1/?recursive=true')
  1381. headers = {'Metadata-Flavor': 'Google'}
  1382. metadata = get_provider_metadata(metadata_url, True, headers,
  1383. True)
  1384. # Filter sshKeys and serviceAccounts from gce metadata
  1385. if metadata:
  1386. metadata['project']['attributes'].pop('sshKeys', None)
  1387. metadata['instance'].pop('serviceAccounts', None)
  1388. elif virt_type == 'xen' and virt_role == 'guest' and re.match(r'.*\.amazon$', product_version):
  1389. provider = 'aws'
  1390. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  1391. metadata = get_provider_metadata(metadata_url)
  1392. elif re.search(r'OpenStack', product_name):
  1393. provider = 'openstack'
  1394. metadata_url = ('http://169.254.169.254/openstack/latest/'
  1395. 'meta_data.json')
  1396. metadata = get_provider_metadata(metadata_url, True, None,
  1397. True)
  1398. if metadata:
  1399. ec2_compat_url = 'http://169.254.169.254/latest/meta-data/'
  1400. metadata['ec2_compat'] = get_provider_metadata(
  1401. ec2_compat_url
  1402. )
  1403. # disable pylint maybe-no-member because overloaded use of
  1404. # the module name causes pylint to not detect that results
  1405. # is an array or hash
  1406. # pylint: disable=maybe-no-member
  1407. # Filter public_keys and random_seed from openstack metadata
  1408. metadata.pop('public_keys', None)
  1409. metadata.pop('random_seed', None)
  1410. if not metadata['ec2_compat']:
  1411. metadata = None
  1412. return dict(name=provider, metadata=metadata)
  1413. def init_provider_facts(self):
  1414. """ Initialize the provider facts
  1415. Returns:
  1416. dict: The normalized provider facts
  1417. """
  1418. provider_info = self.guess_host_provider()
  1419. provider_facts = normalize_provider_facts(
  1420. provider_info.get('name'),
  1421. provider_info.get('metadata')
  1422. )
  1423. return provider_facts
  1424. @staticmethod
  1425. def split_openshift_env_fact_keys(openshift_env_fact, openshift_env_structures):
  1426. """ Split openshift_env facts based on openshift_env structures.
  1427. Args:
  1428. openshift_env_fact (string): the openshift_env fact to split
  1429. ex: 'openshift_cloudprovider_openstack_auth_url'
  1430. openshift_env_structures (list): a list of structures to determine fact keys
  1431. ex: ['openshift.cloudprovider.openstack.*']
  1432. Returns:
  1433. list: a list of keys that represent the fact
  1434. ex: ['openshift', 'cloudprovider', 'openstack', 'auth_url']
  1435. """
  1436. # By default, we'll split an openshift_env fact by underscores.
  1437. fact_keys = openshift_env_fact.split('_')
  1438. # Determine if any of the provided variable structures match the fact.
  1439. matching_structure = None
  1440. if openshift_env_structures is not None:
  1441. for structure in openshift_env_structures:
  1442. if re.match(structure, openshift_env_fact):
  1443. matching_structure = structure
  1444. # Fact didn't match any variable structures so return the default fact keys.
  1445. if matching_structure is None:
  1446. return fact_keys
  1447. final_keys = []
  1448. structure_keys = matching_structure.split('.')
  1449. for structure_key in structure_keys:
  1450. # Matched current key. Add to final keys.
  1451. if structure_key == fact_keys[structure_keys.index(structure_key)]:
  1452. final_keys.append(structure_key)
  1453. # Wildcard means we will be taking everything from here to the end of the fact.
  1454. elif structure_key == '*':
  1455. final_keys.append('_'.join(fact_keys[structure_keys.index(structure_key):]))
  1456. # Shouldn't have gotten here, return the fact keys.
  1457. else:
  1458. return fact_keys
  1459. return final_keys
  1460. # Disabling too-many-branches and too-many-locals.
  1461. # This should be cleaned up as a TODO item.
  1462. # pylint: disable=too-many-branches, too-many-locals
  1463. def init_local_facts(self, facts=None,
  1464. additive_facts_to_overwrite=None,
  1465. openshift_env=None,
  1466. openshift_env_structures=None):
  1467. """ Initialize the local facts
  1468. Args:
  1469. facts (dict): local facts to set
  1470. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  1471. '.' notation ex: ['master.named_certificates']
  1472. openshift_env (dict): openshift env facts to set
  1473. Returns:
  1474. dict: The result of merging the provided facts with existing
  1475. local facts
  1476. """
  1477. changed = False
  1478. facts_to_set = dict()
  1479. if facts is not None:
  1480. facts_to_set[self.role] = facts
  1481. if openshift_env != {} and openshift_env is not None:
  1482. for fact, value in iteritems(openshift_env):
  1483. oo_env_facts = dict()
  1484. current_level = oo_env_facts
  1485. keys = self.split_openshift_env_fact_keys(fact, openshift_env_structures)[1:]
  1486. if len(keys) > 0 and keys[0] != self.role:
  1487. continue
  1488. # Build a dictionary from the split fact keys.
  1489. # After this loop oo_env_facts is the resultant dictionary.
  1490. # For example:
  1491. # fact = "openshift_metrics_install_metrics"
  1492. # value = 'true'
  1493. # keys = ['metrics', 'install', 'metrics']
  1494. # result = {'metrics': {'install': {'metrics': 'true'}}}
  1495. for i, _ in enumerate(keys):
  1496. # This is the last key. Set the value.
  1497. if i == (len(keys) - 1):
  1498. current_level[keys[i]] = value
  1499. # This is a key other than the last key. Set as
  1500. # dictionary and continue.
  1501. else:
  1502. current_level[keys[i]] = dict()
  1503. current_level = current_level[keys[i]]
  1504. facts_to_set = merge_facts(orig=facts_to_set,
  1505. new=oo_env_facts,
  1506. additive_facts_to_overwrite=[])
  1507. local_facts = get_local_facts_from_file(self.filename)
  1508. migrated_facts = migrate_local_facts(local_facts)
  1509. new_local_facts = merge_facts(migrated_facts,
  1510. facts_to_set,
  1511. additive_facts_to_overwrite)
  1512. new_local_facts = self.remove_empty_facts(new_local_facts)
  1513. if new_local_facts != local_facts:
  1514. self.validate_local_facts(new_local_facts)
  1515. changed = True
  1516. if not module.check_mode: # noqa: F405
  1517. save_local_facts(self.filename, new_local_facts)
  1518. self.changed = changed
  1519. return new_local_facts
  1520. def remove_empty_facts(self, facts=None):
  1521. """ Remove empty facts
  1522. Args:
  1523. facts (dict): facts to clean
  1524. """
  1525. facts_to_remove = []
  1526. for fact, value in iteritems(facts):
  1527. if isinstance(facts[fact], dict):
  1528. facts[fact] = self.remove_empty_facts(facts[fact])
  1529. else:
  1530. if value == "" or value == [""] or value is None:
  1531. facts_to_remove.append(fact)
  1532. for fact in facts_to_remove:
  1533. del facts[fact]
  1534. return facts
  1535. def validate_local_facts(self, facts=None):
  1536. """ Validate local facts
  1537. Args:
  1538. facts (dict): local facts to validate
  1539. """
  1540. invalid_facts = dict()
  1541. invalid_facts = self.validate_master_facts(facts, invalid_facts)
  1542. if invalid_facts:
  1543. msg = 'Invalid facts detected:\n'
  1544. # pylint: disable=consider-iterating-dictionary
  1545. for key in invalid_facts.keys():
  1546. msg += '{0}: {1}\n'.format(key, invalid_facts[key])
  1547. module.fail_json(msg=msg, changed=self.changed) # noqa: F405
  1548. # disabling pylint errors for line-too-long since we're dealing
  1549. # with best effort reduction of error messages here.
  1550. # disabling errors for too-many-branches since we require checking
  1551. # many conditions.
  1552. # pylint: disable=line-too-long, too-many-branches
  1553. @staticmethod
  1554. def validate_master_facts(facts, invalid_facts):
  1555. """ Validate master facts
  1556. Args:
  1557. facts (dict): local facts to validate
  1558. invalid_facts (dict): collected invalid_facts
  1559. Returns:
  1560. dict: Invalid facts
  1561. """
  1562. if 'master' in facts:
  1563. # openshift.master.session_auth_secrets
  1564. if 'session_auth_secrets' in facts['master']:
  1565. session_auth_secrets = facts['master']['session_auth_secrets']
  1566. if not issubclass(type(session_auth_secrets), list):
  1567. invalid_facts['session_auth_secrets'] = 'Expects session_auth_secrets is a list.'
  1568. elif 'session_encryption_secrets' not in facts['master']:
  1569. invalid_facts['session_auth_secrets'] = ('openshift_master_session_encryption secrets must be set '
  1570. 'if openshift_master_session_auth_secrets is provided.')
  1571. elif len(session_auth_secrets) != len(facts['master']['session_encryption_secrets']):
  1572. invalid_facts['session_auth_secrets'] = ('openshift_master_session_auth_secrets and '
  1573. 'openshift_master_session_encryption_secrets must be '
  1574. 'equal length.')
  1575. else:
  1576. for secret in session_auth_secrets:
  1577. if len(secret) < 32:
  1578. invalid_facts['session_auth_secrets'] = ('Invalid secret in session_auth_secrets. '
  1579. 'Secrets must be at least 32 characters in length.')
  1580. # openshift.master.session_encryption_secrets
  1581. if 'session_encryption_secrets' in facts['master']:
  1582. session_encryption_secrets = facts['master']['session_encryption_secrets']
  1583. if not issubclass(type(session_encryption_secrets), list):
  1584. invalid_facts['session_encryption_secrets'] = 'Expects session_encryption_secrets is a list.'
  1585. elif 'session_auth_secrets' not in facts['master']:
  1586. invalid_facts['session_encryption_secrets'] = ('openshift_master_session_auth_secrets must be '
  1587. 'set if openshift_master_session_encryption_secrets '
  1588. 'is provided.')
  1589. else:
  1590. for secret in session_encryption_secrets:
  1591. if len(secret) not in [16, 24, 32]:
  1592. invalid_facts['session_encryption_secrets'] = ('Invalid secret in session_encryption_secrets. '
  1593. 'Secrets must be 16, 24, or 32 characters in length.')
  1594. return invalid_facts
  1595. def main():
  1596. """ main """
  1597. # disabling pylint errors for global-variable-undefined and invalid-name
  1598. # for 'global module' usage, since it is required to use ansible_facts
  1599. # pylint: disable=global-variable-undefined, invalid-name
  1600. global module
  1601. module = AnsibleModule( # noqa: F405
  1602. argument_spec=dict(
  1603. role=dict(default='common', required=False,
  1604. choices=OpenShiftFacts.known_roles),
  1605. local_facts=dict(default=None, type='dict', required=False),
  1606. additive_facts_to_overwrite=dict(default=[], type='list', required=False),
  1607. openshift_env=dict(default={}, type='dict', required=False),
  1608. openshift_env_structures=dict(default=[], type='list', required=False)
  1609. ),
  1610. supports_check_mode=True,
  1611. add_file_common_args=True,
  1612. )
  1613. if not HAVE_DBUS:
  1614. module.fail_json(msg="This module requires dbus python bindings") # noqa: F405
  1615. module.params['gather_subset'] = ['hardware', 'network', 'virtual', 'facter'] # noqa: F405
  1616. module.params['gather_timeout'] = 10 # noqa: F405
  1617. module.params['filter'] = '*' # noqa: F405
  1618. role = module.params['role'] # noqa: F405
  1619. local_facts = module.params['local_facts'] # noqa: F405
  1620. additive_facts_to_overwrite = module.params['additive_facts_to_overwrite'] # noqa: F405
  1621. openshift_env = module.params['openshift_env'] # noqa: F405
  1622. openshift_env_structures = module.params['openshift_env_structures'] # noqa: F405
  1623. fact_file = '/etc/ansible/facts.d/openshift.fact'
  1624. openshift_facts = OpenShiftFacts(role,
  1625. fact_file,
  1626. local_facts,
  1627. additive_facts_to_overwrite,
  1628. openshift_env,
  1629. openshift_env_structures)
  1630. file_params = module.params.copy() # noqa: F405
  1631. file_params['path'] = fact_file
  1632. file_args = module.load_file_common_arguments(file_params) # noqa: F405
  1633. changed = module.set_fs_attributes_if_different(file_args, # noqa: F405
  1634. openshift_facts.changed)
  1635. return module.exit_json(changed=changed, # noqa: F405
  1636. ansible_facts=openshift_facts.facts)
  1637. if __name__ == '__main__':
  1638. main()