openshift_facts.py 89 KB

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