openshift_facts.py 92 KB

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