openshift_facts.py 98 KB

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