openshift_facts.py 102 KB

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