openshift_facts.py 87 KB

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