openshift_facts.py 100 KB

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