openshift_facts.py 96 KB

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