openshift_facts.py 96 KB

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