oc_version.py 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505
  1. #!/usr/bin/env python
  2. # pylint: disable=missing-docstring
  3. # flake8: noqa: T001
  4. # ___ ___ _ _ ___ ___ _ _____ ___ ___
  5. # / __| __| \| | __| _ \ /_\_ _| __| \
  6. # | (_ | _|| .` | _|| / / _ \| | | _|| |) |
  7. # \___|___|_|\_|___|_|_\/_/_\_\_|_|___|___/_ _____
  8. # | \ / _ \ | \| |/ _ \_ _| | __| \_ _|_ _|
  9. # | |) | (_) | | .` | (_) || | | _|| |) | | | |
  10. # |___/ \___/ |_|\_|\___/ |_| |___|___/___| |_|
  11. #
  12. # Copyright 2016 Red Hat, Inc. and/or its affiliates
  13. # and other contributors as indicated by the @author tags.
  14. #
  15. # Licensed under the Apache License, Version 2.0 (the "License");
  16. # you may not use this file except in compliance with the License.
  17. # You may obtain a copy of the License at
  18. #
  19. # http://www.apache.org/licenses/LICENSE-2.0
  20. #
  21. # Unless required by applicable law or agreed to in writing, software
  22. # distributed under the License is distributed on an "AS IS" BASIS,
  23. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  24. # See the License for the specific language governing permissions and
  25. # limitations under the License.
  26. #
  27. # -*- -*- -*- Begin included fragment: lib/import.py -*- -*- -*-
  28. '''
  29. OpenShiftCLI class that wraps the oc commands in a subprocess
  30. '''
  31. # pylint: disable=too-many-lines
  32. from __future__ import print_function
  33. import atexit
  34. import copy
  35. import fcntl
  36. import json
  37. import time
  38. import os
  39. import re
  40. import shutil
  41. import subprocess
  42. import tempfile
  43. # pylint: disable=import-error
  44. try:
  45. import ruamel.yaml as yaml
  46. except ImportError:
  47. import yaml
  48. from ansible.module_utils.basic import AnsibleModule
  49. # -*- -*- -*- End included fragment: lib/import.py -*- -*- -*-
  50. # -*- -*- -*- Begin included fragment: doc/version -*- -*- -*-
  51. DOCUMENTATION = '''
  52. ---
  53. module: oc_version
  54. short_description: Return the current openshift version
  55. description:
  56. - Return the openshift installed version. `oc version`
  57. options:
  58. state:
  59. description:
  60. - Currently list is only supported state.
  61. required: true
  62. default: list
  63. choices: ["list"]
  64. aliases: []
  65. kubeconfig:
  66. description:
  67. - The path for the kubeconfig file to use for authentication
  68. required: false
  69. default: /etc/origin/master/admin.kubeconfig
  70. aliases: []
  71. debug:
  72. description:
  73. - Turn on debug output.
  74. required: false
  75. default: False
  76. aliases: []
  77. author:
  78. - "Kenny Woodson <kwoodson@redhat.com>"
  79. extends_documentation_fragment: []
  80. '''
  81. EXAMPLES = '''
  82. oc_version:
  83. - name: get oc version
  84. oc_version:
  85. register: oc_version
  86. '''
  87. # -*- -*- -*- End included fragment: doc/version -*- -*- -*-
  88. # -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  89. class YeditException(Exception): # pragma: no cover
  90. ''' Exception class for Yedit '''
  91. pass
  92. # pylint: disable=too-many-public-methods,too-many-instance-attributes
  93. class Yedit(object): # pragma: no cover
  94. ''' Class to modify yaml files '''
  95. re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
  96. re_key = r"(?:\[(-?\d+)\])|([0-9a-zA-Z{}/_-]+)"
  97. com_sep = set(['.', '#', '|', ':'])
  98. # pylint: disable=too-many-arguments
  99. def __init__(self,
  100. filename=None,
  101. content=None,
  102. content_type='yaml',
  103. separator='.',
  104. backup_ext=None,
  105. backup=False):
  106. self.content = content
  107. self._separator = separator
  108. self.filename = filename
  109. self.__yaml_dict = content
  110. self.content_type = content_type
  111. self.backup = backup
  112. if backup_ext is None:
  113. self.backup_ext = ".{}".format(time.strftime("%Y%m%dT%H%M%S"))
  114. else:
  115. self.backup_ext = backup_ext
  116. self.load(content_type=self.content_type)
  117. if self.__yaml_dict is None:
  118. self.__yaml_dict = {}
  119. @property
  120. def separator(self):
  121. ''' getter method for separator '''
  122. return self._separator
  123. @separator.setter
  124. def separator(self, inc_sep):
  125. ''' setter method for separator '''
  126. self._separator = inc_sep
  127. @property
  128. def yaml_dict(self):
  129. ''' getter method for yaml_dict '''
  130. return self.__yaml_dict
  131. @yaml_dict.setter
  132. def yaml_dict(self, value):
  133. ''' setter method for yaml_dict '''
  134. self.__yaml_dict = value
  135. @staticmethod
  136. def parse_key(key, sep='.'):
  137. '''parse the key allowing the appropriate separator'''
  138. common_separators = list(Yedit.com_sep - set([sep]))
  139. return re.findall(Yedit.re_key.format(''.join(common_separators)), key)
  140. @staticmethod
  141. def valid_key(key, sep='.'):
  142. '''validate the incoming key'''
  143. common_separators = list(Yedit.com_sep - set([sep]))
  144. if not re.match(Yedit.re_valid_key.format(''.join(common_separators)), key):
  145. return False
  146. return True
  147. # pylint: disable=too-many-return-statements,too-many-branches
  148. @staticmethod
  149. def remove_entry(data, key, index=None, value=None, sep='.'):
  150. ''' remove data at location key '''
  151. if key == '' and isinstance(data, dict):
  152. if value is not None:
  153. data.pop(value)
  154. elif index is not None:
  155. raise YeditException("remove_entry for a dictionary does not have an index {}".format(index))
  156. else:
  157. data.clear()
  158. return True
  159. elif key == '' and isinstance(data, list):
  160. ind = None
  161. if value is not None:
  162. try:
  163. ind = data.index(value)
  164. except ValueError:
  165. return False
  166. elif index is not None:
  167. ind = index
  168. else:
  169. del data[:]
  170. if ind is not None:
  171. data.pop(ind)
  172. return True
  173. if not (key and Yedit.valid_key(key, sep)) and \
  174. isinstance(data, (list, dict)):
  175. return None
  176. key_indexes = Yedit.parse_key(key, sep)
  177. for arr_ind, dict_key in key_indexes[:-1]:
  178. if dict_key and isinstance(data, dict):
  179. data = data.get(dict_key)
  180. elif (arr_ind and isinstance(data, list) and
  181. int(arr_ind) <= len(data) - 1):
  182. data = data[int(arr_ind)]
  183. else:
  184. return None
  185. # process last index for remove
  186. # expected list entry
  187. if key_indexes[-1][0]:
  188. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  189. del data[int(key_indexes[-1][0])]
  190. return True
  191. # expected dict entry
  192. elif key_indexes[-1][1]:
  193. if isinstance(data, dict):
  194. del data[key_indexes[-1][1]]
  195. return True
  196. @staticmethod
  197. def add_entry(data, key, item=None, sep='.'):
  198. ''' Get an item from a dictionary with key notation a.b.c
  199. d = {'a': {'b': 'c'}}}
  200. key = a#b
  201. return c
  202. '''
  203. if key == '':
  204. pass
  205. elif (not (key and Yedit.valid_key(key, sep)) and
  206. isinstance(data, (list, dict))):
  207. return None
  208. key_indexes = Yedit.parse_key(key, sep)
  209. for arr_ind, dict_key in key_indexes[:-1]:
  210. if dict_key:
  211. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  212. data = data[dict_key]
  213. continue
  214. elif data and not isinstance(data, dict):
  215. raise YeditException("Unexpected item type found while going through key " +
  216. "path: {} (at key: {})".format(key, dict_key))
  217. data[dict_key] = {}
  218. data = data[dict_key]
  219. elif (arr_ind and isinstance(data, list) and
  220. int(arr_ind) <= len(data) - 1):
  221. data = data[int(arr_ind)]
  222. else:
  223. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  224. if key == '':
  225. data = item
  226. # process last index for add
  227. # expected list entry
  228. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  229. data[int(key_indexes[-1][0])] = item
  230. # expected dict entry
  231. elif key_indexes[-1][1] and isinstance(data, dict):
  232. data[key_indexes[-1][1]] = item
  233. # didn't add/update to an existing list, nor add/update key to a dict
  234. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  235. # non-existent array
  236. else:
  237. raise YeditException("Error adding to object at path: {}".format(key))
  238. return data
  239. @staticmethod
  240. def get_entry(data, key, sep='.'):
  241. ''' Get an item from a dictionary with key notation a.b.c
  242. d = {'a': {'b': 'c'}}}
  243. key = a.b
  244. return c
  245. '''
  246. if key == '':
  247. pass
  248. elif (not (key and Yedit.valid_key(key, sep)) and
  249. isinstance(data, (list, dict))):
  250. return None
  251. key_indexes = Yedit.parse_key(key, sep)
  252. for arr_ind, dict_key in key_indexes:
  253. if dict_key and isinstance(data, dict):
  254. data = data.get(dict_key)
  255. elif (arr_ind and isinstance(data, list) and
  256. int(arr_ind) <= len(data) - 1):
  257. data = data[int(arr_ind)]
  258. else:
  259. return None
  260. return data
  261. @staticmethod
  262. def _write(filename, contents):
  263. ''' Actually write the file contents to disk. This helps with mocking. '''
  264. tmp_filename = filename + '.yedit'
  265. with open(tmp_filename, 'w') as yfd:
  266. fcntl.flock(yfd, fcntl.LOCK_EX | fcntl.LOCK_NB)
  267. yfd.write(contents)
  268. fcntl.flock(yfd, fcntl.LOCK_UN)
  269. os.rename(tmp_filename, filename)
  270. def write(self):
  271. ''' write to file '''
  272. if not self.filename:
  273. raise YeditException('Please specify a filename.')
  274. if self.backup and self.file_exists():
  275. shutil.copy(self.filename, '{}{}'.format(self.filename, self.backup_ext))
  276. # Try to set format attributes if supported
  277. try:
  278. self.yaml_dict.fa.set_block_style()
  279. except AttributeError:
  280. pass
  281. # Try to use RoundTripDumper if supported.
  282. if self.content_type == 'yaml':
  283. try:
  284. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  285. except AttributeError:
  286. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  287. elif self.content_type == 'json':
  288. Yedit._write(self.filename, json.dumps(self.yaml_dict, indent=4, sort_keys=True))
  289. else:
  290. raise YeditException('Unsupported content_type: {}.'.format(self.content_type) +
  291. 'Please specify a content_type of yaml or json.')
  292. return (True, self.yaml_dict)
  293. def read(self):
  294. ''' read from file '''
  295. # check if it exists
  296. if self.filename is None or not self.file_exists():
  297. return None
  298. contents = None
  299. with open(self.filename) as yfd:
  300. contents = yfd.read()
  301. return contents
  302. def file_exists(self):
  303. ''' return whether file exists '''
  304. if os.path.exists(self.filename):
  305. return True
  306. return False
  307. def load(self, content_type='yaml'):
  308. ''' return yaml file '''
  309. contents = self.read()
  310. if not contents and not self.content:
  311. return None
  312. if self.content:
  313. if isinstance(self.content, dict):
  314. self.yaml_dict = self.content
  315. return self.yaml_dict
  316. elif isinstance(self.content, str):
  317. contents = self.content
  318. # check if it is yaml
  319. try:
  320. if content_type == 'yaml' and contents:
  321. # Try to set format attributes if supported
  322. try:
  323. self.yaml_dict.fa.set_block_style()
  324. except AttributeError:
  325. pass
  326. # Try to use RoundTripLoader if supported.
  327. try:
  328. self.yaml_dict = yaml.load(contents, yaml.RoundTripLoader)
  329. except AttributeError:
  330. self.yaml_dict = yaml.safe_load(contents)
  331. # Try to set format attributes if supported
  332. try:
  333. self.yaml_dict.fa.set_block_style()
  334. except AttributeError:
  335. pass
  336. elif content_type == 'json' and contents:
  337. self.yaml_dict = json.loads(contents)
  338. except yaml.YAMLError as err:
  339. # Error loading yaml or json
  340. raise YeditException('Problem with loading yaml file. {}'.format(err))
  341. return self.yaml_dict
  342. def get(self, key):
  343. ''' get a specified key'''
  344. try:
  345. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  346. except KeyError:
  347. entry = None
  348. return entry
  349. def pop(self, path, key_or_item):
  350. ''' remove a key, value pair from a dict or an item for a list'''
  351. try:
  352. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  353. except KeyError:
  354. entry = None
  355. if entry is None:
  356. return (False, self.yaml_dict)
  357. if isinstance(entry, dict):
  358. # AUDIT:maybe-no-member makes sense due to fuzzy types
  359. # pylint: disable=maybe-no-member
  360. if key_or_item in entry:
  361. entry.pop(key_or_item)
  362. return (True, self.yaml_dict)
  363. return (False, self.yaml_dict)
  364. elif isinstance(entry, list):
  365. # AUDIT:maybe-no-member makes sense due to fuzzy types
  366. # pylint: disable=maybe-no-member
  367. ind = None
  368. try:
  369. ind = entry.index(key_or_item)
  370. except ValueError:
  371. return (False, self.yaml_dict)
  372. entry.pop(ind)
  373. return (True, self.yaml_dict)
  374. return (False, self.yaml_dict)
  375. def delete(self, path, index=None, value=None):
  376. ''' remove path from a dict'''
  377. try:
  378. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  379. except KeyError:
  380. entry = None
  381. if entry is None:
  382. return (False, self.yaml_dict)
  383. result = Yedit.remove_entry(self.yaml_dict, path, index, value, self.separator)
  384. if not result:
  385. return (False, self.yaml_dict)
  386. return (True, self.yaml_dict)
  387. def exists(self, path, value):
  388. ''' check if value exists at path'''
  389. try:
  390. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  391. except KeyError:
  392. entry = None
  393. if isinstance(entry, list):
  394. if value in entry:
  395. return True
  396. return False
  397. elif isinstance(entry, dict):
  398. if isinstance(value, dict):
  399. rval = False
  400. for key, val in value.items():
  401. if entry[key] != val:
  402. rval = False
  403. break
  404. else:
  405. rval = True
  406. return rval
  407. return value in entry
  408. return entry == value
  409. def append(self, path, value):
  410. '''append value to a list'''
  411. try:
  412. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  413. except KeyError:
  414. entry = None
  415. if entry is None:
  416. self.put(path, [])
  417. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  418. if not isinstance(entry, list):
  419. return (False, self.yaml_dict)
  420. # AUDIT:maybe-no-member makes sense due to loading data from
  421. # a serialized format.
  422. # pylint: disable=maybe-no-member
  423. entry.append(value)
  424. return (True, self.yaml_dict)
  425. # pylint: disable=too-many-arguments
  426. def update(self, path, value, index=None, curr_value=None):
  427. ''' put path, value into a dict '''
  428. try:
  429. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  430. except KeyError:
  431. entry = None
  432. if isinstance(entry, dict):
  433. # AUDIT:maybe-no-member makes sense due to fuzzy types
  434. # pylint: disable=maybe-no-member
  435. if not isinstance(value, dict):
  436. raise YeditException('Cannot replace key, value entry in dict with non-dict type. ' +
  437. 'value=[{}] type=[{}]'.format(value, type(value)))
  438. entry.update(value)
  439. return (True, self.yaml_dict)
  440. elif isinstance(entry, list):
  441. # AUDIT:maybe-no-member makes sense due to fuzzy types
  442. # pylint: disable=maybe-no-member
  443. ind = None
  444. if curr_value:
  445. try:
  446. ind = entry.index(curr_value)
  447. except ValueError:
  448. return (False, self.yaml_dict)
  449. elif index is not None:
  450. ind = index
  451. if ind is not None and entry[ind] != value:
  452. entry[ind] = value
  453. return (True, self.yaml_dict)
  454. # see if it exists in the list
  455. try:
  456. ind = entry.index(value)
  457. except ValueError:
  458. # doesn't exist, append it
  459. entry.append(value)
  460. return (True, self.yaml_dict)
  461. # already exists, return
  462. if ind is not None:
  463. return (False, self.yaml_dict)
  464. return (False, self.yaml_dict)
  465. def put(self, path, value):
  466. ''' put path, value into a dict '''
  467. try:
  468. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  469. except KeyError:
  470. entry = None
  471. if entry == value:
  472. return (False, self.yaml_dict)
  473. # deepcopy didn't work
  474. # Try to use ruamel.yaml and fallback to pyyaml
  475. try:
  476. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  477. default_flow_style=False),
  478. yaml.RoundTripLoader)
  479. except AttributeError:
  480. tmp_copy = copy.deepcopy(self.yaml_dict)
  481. # set the format attributes if available
  482. try:
  483. tmp_copy.fa.set_block_style()
  484. except AttributeError:
  485. pass
  486. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  487. if result is None:
  488. return (False, self.yaml_dict)
  489. # When path equals "" it is a special case.
  490. # "" refers to the root of the document
  491. # Only update the root path (entire document) when its a list or dict
  492. if path == '':
  493. if isinstance(result, list) or isinstance(result, dict):
  494. self.yaml_dict = result
  495. return (True, self.yaml_dict)
  496. return (False, self.yaml_dict)
  497. self.yaml_dict = tmp_copy
  498. return (True, self.yaml_dict)
  499. def create(self, path, value):
  500. ''' create a yaml file '''
  501. if not self.file_exists():
  502. # deepcopy didn't work
  503. # Try to use ruamel.yaml and fallback to pyyaml
  504. try:
  505. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  506. default_flow_style=False),
  507. yaml.RoundTripLoader)
  508. except AttributeError:
  509. tmp_copy = copy.deepcopy(self.yaml_dict)
  510. # set the format attributes if available
  511. try:
  512. tmp_copy.fa.set_block_style()
  513. except AttributeError:
  514. pass
  515. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  516. if result is not None:
  517. self.yaml_dict = tmp_copy
  518. return (True, self.yaml_dict)
  519. return (False, self.yaml_dict)
  520. @staticmethod
  521. def get_curr_value(invalue, val_type):
  522. '''return the current value'''
  523. if invalue is None:
  524. return None
  525. curr_value = invalue
  526. if val_type == 'yaml':
  527. curr_value = yaml.safe_load(str(invalue))
  528. elif val_type == 'json':
  529. curr_value = json.loads(invalue)
  530. return curr_value
  531. @staticmethod
  532. def parse_value(inc_value, vtype=''):
  533. '''determine value type passed'''
  534. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  535. 'on', 'On', 'ON', ]
  536. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  537. 'off', 'Off', 'OFF']
  538. # It came in as a string but you didn't specify value_type as string
  539. # we will convert to bool if it matches any of the above cases
  540. if isinstance(inc_value, str) and 'bool' in vtype:
  541. if inc_value not in true_bools and inc_value not in false_bools:
  542. raise YeditException('Not a boolean type. str=[{}] vtype=[{}]'.format(inc_value, vtype))
  543. elif isinstance(inc_value, bool) and 'str' in vtype:
  544. inc_value = str(inc_value)
  545. # There is a special case where '' will turn into None after yaml loading it so skip
  546. if isinstance(inc_value, str) and inc_value == '':
  547. pass
  548. # If vtype is not str then go ahead and attempt to yaml load it.
  549. elif isinstance(inc_value, str) and 'str' not in vtype:
  550. try:
  551. inc_value = yaml.safe_load(inc_value)
  552. except Exception:
  553. raise YeditException('Could not determine type of incoming value. ' +
  554. 'value=[{}] vtype=[{}]'.format(type(inc_value), vtype))
  555. return inc_value
  556. @staticmethod
  557. def process_edits(edits, yamlfile):
  558. '''run through a list of edits and process them one-by-one'''
  559. results = []
  560. for edit in edits:
  561. value = Yedit.parse_value(edit['value'], edit.get('value_type', ''))
  562. if edit.get('action') == 'update':
  563. # pylint: disable=line-too-long
  564. curr_value = Yedit.get_curr_value(
  565. Yedit.parse_value(edit.get('curr_value')),
  566. edit.get('curr_value_format'))
  567. rval = yamlfile.update(edit['key'],
  568. value,
  569. edit.get('index'),
  570. curr_value)
  571. elif edit.get('action') == 'append':
  572. rval = yamlfile.append(edit['key'], value)
  573. else:
  574. rval = yamlfile.put(edit['key'], value)
  575. if rval[0]:
  576. results.append({'key': edit['key'], 'edit': rval[1]})
  577. return {'changed': len(results) > 0, 'results': results}
  578. # pylint: disable=too-many-return-statements,too-many-branches
  579. @staticmethod
  580. def run_ansible(params):
  581. '''perform the idempotent crud operations'''
  582. yamlfile = Yedit(filename=params['src'],
  583. backup=params['backup'],
  584. content_type=params['content_type'],
  585. backup_ext=params['backup_ext'],
  586. separator=params['separator'])
  587. state = params['state']
  588. if params['src']:
  589. rval = yamlfile.load()
  590. if yamlfile.yaml_dict is None and state != 'present':
  591. return {'failed': True,
  592. 'msg': 'Error opening file [{}]. Verify that the '.format(params['src']) +
  593. 'file exists, that it is has correct permissions, and is valid yaml.'}
  594. if state == 'list':
  595. if params['content']:
  596. content = Yedit.parse_value(params['content'], params['content_type'])
  597. yamlfile.yaml_dict = content
  598. if params['key']:
  599. rval = yamlfile.get(params['key'])
  600. return {'changed': False, 'result': rval, 'state': state}
  601. elif state == 'absent':
  602. if params['content']:
  603. content = Yedit.parse_value(params['content'], params['content_type'])
  604. yamlfile.yaml_dict = content
  605. if params['update']:
  606. rval = yamlfile.pop(params['key'], params['value'])
  607. else:
  608. rval = yamlfile.delete(params['key'], params['index'], params['value'])
  609. if rval[0] and params['src']:
  610. yamlfile.write()
  611. return {'changed': rval[0], 'result': rval[1], 'state': state}
  612. elif state == 'present':
  613. # check if content is different than what is in the file
  614. if params['content']:
  615. content = Yedit.parse_value(params['content'], params['content_type'])
  616. # We had no edits to make and the contents are the same
  617. if yamlfile.yaml_dict == content and \
  618. params['value'] is None:
  619. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  620. yamlfile.yaml_dict = content
  621. # If we were passed a key, value then
  622. # we enapsulate it in a list and process it
  623. # Key, Value passed to the module : Converted to Edits list #
  624. edits = []
  625. _edit = {}
  626. if params['value'] is not None:
  627. _edit['value'] = params['value']
  628. _edit['value_type'] = params['value_type']
  629. _edit['key'] = params['key']
  630. if params['update']:
  631. _edit['action'] = 'update'
  632. _edit['curr_value'] = params['curr_value']
  633. _edit['curr_value_format'] = params['curr_value_format']
  634. _edit['index'] = params['index']
  635. elif params['append']:
  636. _edit['action'] = 'append'
  637. edits.append(_edit)
  638. elif params['edits'] is not None:
  639. edits = params['edits']
  640. if edits:
  641. results = Yedit.process_edits(edits, yamlfile)
  642. # if there were changes and a src provided to us we need to write
  643. if results['changed'] and params['src']:
  644. yamlfile.write()
  645. return {'changed': results['changed'], 'result': results['results'], 'state': state}
  646. # no edits to make
  647. if params['src']:
  648. # pylint: disable=redefined-variable-type
  649. rval = yamlfile.write()
  650. return {'changed': rval[0],
  651. 'result': rval[1],
  652. 'state': state}
  653. # We were passed content but no src, key or value, or edits. Return contents in memory
  654. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  655. return {'failed': True, 'msg': 'Unkown state passed'}
  656. # -*- -*- -*- End included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  657. # -*- -*- -*- Begin included fragment: lib/base.py -*- -*- -*-
  658. # pylint: disable=too-many-lines
  659. # noqa: E301,E302,E303,T001
  660. class OpenShiftCLIError(Exception):
  661. '''Exception class for openshiftcli'''
  662. pass
  663. ADDITIONAL_PATH_LOOKUPS = ['/usr/local/bin', os.path.expanduser('~/bin')]
  664. def locate_oc_binary():
  665. ''' Find and return oc binary file '''
  666. # https://github.com/openshift/openshift-ansible/issues/3410
  667. # oc can be in /usr/local/bin in some cases, but that may not
  668. # be in $PATH due to ansible/sudo
  669. paths = os.environ.get("PATH", os.defpath).split(os.pathsep) + ADDITIONAL_PATH_LOOKUPS
  670. oc_binary = 'oc'
  671. # Use shutil.which if it is available, otherwise fallback to a naive path search
  672. try:
  673. which_result = shutil.which(oc_binary, path=os.pathsep.join(paths))
  674. if which_result is not None:
  675. oc_binary = which_result
  676. except AttributeError:
  677. for path in paths:
  678. if os.path.exists(os.path.join(path, oc_binary)):
  679. oc_binary = os.path.join(path, oc_binary)
  680. break
  681. return oc_binary
  682. # pylint: disable=too-few-public-methods
  683. class OpenShiftCLI(object):
  684. ''' Class to wrap the command line tools '''
  685. def __init__(self,
  686. namespace,
  687. kubeconfig='/etc/origin/master/admin.kubeconfig',
  688. verbose=False,
  689. all_namespaces=False):
  690. ''' Constructor for OpenshiftCLI '''
  691. self.namespace = namespace
  692. self.verbose = verbose
  693. self.kubeconfig = Utils.create_tmpfile_copy(kubeconfig)
  694. self.all_namespaces = all_namespaces
  695. self.oc_binary = locate_oc_binary()
  696. # Pylint allows only 5 arguments to be passed.
  697. # pylint: disable=too-many-arguments
  698. def _replace_content(self, resource, rname, content, edits=None, force=False, sep='.'):
  699. ''' replace the current object with the content '''
  700. res = self._get(resource, rname)
  701. if not res['results']:
  702. return res
  703. fname = Utils.create_tmpfile(rname + '-')
  704. yed = Yedit(fname, res['results'][0], separator=sep)
  705. updated = False
  706. if content is not None:
  707. changes = []
  708. for key, value in content.items():
  709. changes.append(yed.put(key, value))
  710. if any([change[0] for change in changes]):
  711. updated = True
  712. elif edits is not None:
  713. results = Yedit.process_edits(edits, yed)
  714. if results['changed']:
  715. updated = True
  716. if updated:
  717. yed.write()
  718. atexit.register(Utils.cleanup, [fname])
  719. return self._replace(fname, force)
  720. return {'returncode': 0, 'updated': False}
  721. def _replace(self, fname, force=False):
  722. '''replace the current object with oc replace'''
  723. # We are removing the 'resourceVersion' to handle
  724. # a race condition when modifying oc objects
  725. yed = Yedit(fname)
  726. results = yed.delete('metadata.resourceVersion')
  727. if results[0]:
  728. yed.write()
  729. cmd = ['replace', '-f', fname]
  730. if force:
  731. cmd.append('--force')
  732. return self.openshift_cmd(cmd)
  733. def _create_from_content(self, rname, content):
  734. '''create a temporary file and then call oc create on it'''
  735. fname = Utils.create_tmpfile(rname + '-')
  736. yed = Yedit(fname, content=content)
  737. yed.write()
  738. atexit.register(Utils.cleanup, [fname])
  739. return self._create(fname)
  740. def _create(self, fname):
  741. '''call oc create on a filename'''
  742. return self.openshift_cmd(['create', '-f', fname])
  743. def _delete(self, resource, name=None, selector=None):
  744. '''call oc delete on a resource'''
  745. cmd = ['delete', resource]
  746. if selector is not None:
  747. cmd.append('--selector={}'.format(selector))
  748. elif name is not None:
  749. cmd.append(name)
  750. else:
  751. raise OpenShiftCLIError('Either name or selector is required when calling delete.')
  752. return self.openshift_cmd(cmd)
  753. def _process(self, template_name, create=False, params=None, template_data=None): # noqa: E501
  754. '''process a template
  755. template_name: the name of the template to process
  756. create: whether to send to oc create after processing
  757. params: the parameters for the template
  758. template_data: the incoming template's data; instead of a file
  759. '''
  760. cmd = ['process']
  761. if template_data:
  762. cmd.extend(['-f', '-'])
  763. else:
  764. cmd.append(template_name)
  765. if params:
  766. param_str = ["{}={}".format(key, str(value).replace("'", r'"')) for key, value in params.items()]
  767. cmd.append('-p')
  768. cmd.extend(param_str)
  769. results = self.openshift_cmd(cmd, output=True, input_data=template_data)
  770. if results['returncode'] != 0 or not create:
  771. return results
  772. fname = Utils.create_tmpfile(template_name + '-')
  773. yed = Yedit(fname, results['results'])
  774. yed.write()
  775. atexit.register(Utils.cleanup, [fname])
  776. return self.openshift_cmd(['create', '-f', fname])
  777. def _get(self, resource, name=None, selector=None, field_selector=None):
  778. '''return a resource by name '''
  779. cmd = ['get', resource]
  780. if selector is not None:
  781. cmd.append('--selector={}'.format(selector))
  782. if field_selector is not None:
  783. cmd.append('--field-selector={}'.format(field_selector))
  784. # Name cannot be used with selector or field_selector.
  785. if selector is None and field_selector is None and name is not None:
  786. cmd.append(name)
  787. cmd.extend(['-o', 'json'])
  788. rval = self.openshift_cmd(cmd, output=True)
  789. # Ensure results are retuned in an array
  790. if 'items' in rval:
  791. rval['results'] = rval['items']
  792. elif not isinstance(rval['results'], list):
  793. rval['results'] = [rval['results']]
  794. return rval
  795. def _schedulable(self, node=None, selector=None, schedulable=True):
  796. ''' perform oadm manage-node scheduable '''
  797. cmd = ['manage-node']
  798. if node:
  799. cmd.extend(node)
  800. else:
  801. cmd.append('--selector={}'.format(selector))
  802. cmd.append('--schedulable={}'.format(schedulable))
  803. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  804. def _list_pods(self, node=None, selector=None, pod_selector=None):
  805. ''' perform oadm list pods
  806. node: the node in which to list pods
  807. selector: the label selector filter if provided
  808. pod_selector: the pod selector filter if provided
  809. '''
  810. cmd = ['manage-node']
  811. if node:
  812. cmd.extend(node)
  813. else:
  814. cmd.append('--selector={}'.format(selector))
  815. if pod_selector:
  816. cmd.append('--pod-selector={}'.format(pod_selector))
  817. cmd.extend(['--list-pods', '-o', 'json'])
  818. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  819. # pylint: disable=too-many-arguments
  820. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  821. ''' perform oadm manage-node evacuate '''
  822. cmd = ['manage-node']
  823. if node:
  824. cmd.extend(node)
  825. else:
  826. cmd.append('--selector={}'.format(selector))
  827. if dry_run:
  828. cmd.append('--dry-run')
  829. if pod_selector:
  830. cmd.append('--pod-selector={}'.format(pod_selector))
  831. if grace_period:
  832. cmd.append('--grace-period={}'.format(int(grace_period)))
  833. if force:
  834. cmd.append('--force')
  835. cmd.append('--evacuate')
  836. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  837. def _version(self):
  838. ''' return the openshift version'''
  839. return self.openshift_cmd(['version'], output=True, output_type='raw')
  840. def _import_image(self, url=None, name=None, tag=None):
  841. ''' perform image import '''
  842. cmd = ['import-image']
  843. image = '{0}'.format(name)
  844. if tag:
  845. image += ':{0}'.format(tag)
  846. cmd.append(image)
  847. if url:
  848. cmd.append('--from={0}/{1}'.format(url, image))
  849. cmd.append('-n{0}'.format(self.namespace))
  850. cmd.append('--confirm')
  851. return self.openshift_cmd(cmd)
  852. def _run(self, cmds, input_data):
  853. ''' Actually executes the command. This makes mocking easier. '''
  854. curr_env = os.environ.copy()
  855. curr_env.update({'KUBECONFIG': self.kubeconfig})
  856. proc = subprocess.Popen(cmds,
  857. stdin=subprocess.PIPE,
  858. stdout=subprocess.PIPE,
  859. stderr=subprocess.PIPE,
  860. env=curr_env)
  861. stdout, stderr = proc.communicate(input_data)
  862. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  863. # pylint: disable=too-many-arguments,too-many-branches
  864. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  865. '''Base command for oc '''
  866. cmds = [self.oc_binary]
  867. if oadm:
  868. cmds.append('adm')
  869. cmds.extend(cmd)
  870. if self.all_namespaces:
  871. cmds.extend(['--all-namespaces'])
  872. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  873. cmds.extend(['-n', self.namespace])
  874. if self.verbose:
  875. print(' '.join(cmds))
  876. try:
  877. returncode, stdout, stderr = self._run(cmds, input_data)
  878. except OSError as ex:
  879. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  880. rval = {"returncode": returncode,
  881. "cmd": ' '.join(cmds)}
  882. if output_type == 'json':
  883. rval['results'] = {}
  884. if output and stdout:
  885. try:
  886. rval['results'] = json.loads(stdout)
  887. except ValueError as verr:
  888. if "No JSON object could be decoded" in verr.args:
  889. rval['err'] = verr.args
  890. elif output_type == 'raw':
  891. rval['results'] = stdout if output else ''
  892. if self.verbose:
  893. print("STDOUT: {0}".format(stdout))
  894. print("STDERR: {0}".format(stderr))
  895. if 'err' in rval or returncode != 0:
  896. rval.update({"stderr": stderr,
  897. "stdout": stdout})
  898. return rval
  899. class Utils(object): # pragma: no cover
  900. ''' utilities for openshiftcli modules '''
  901. @staticmethod
  902. def _write(filename, contents):
  903. ''' Actually write the file contents to disk. This helps with mocking. '''
  904. with open(filename, 'w') as sfd:
  905. sfd.write(str(contents))
  906. @staticmethod
  907. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  908. ''' create a file in tmp with name and contents'''
  909. tmp = Utils.create_tmpfile(prefix=rname)
  910. if ftype == 'yaml':
  911. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  912. # pylint: disable=no-member
  913. if hasattr(yaml, 'RoundTripDumper'):
  914. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  915. else:
  916. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  917. elif ftype == 'json':
  918. Utils._write(tmp, json.dumps(data))
  919. else:
  920. Utils._write(tmp, data)
  921. # Register cleanup when module is done
  922. atexit.register(Utils.cleanup, [tmp])
  923. return tmp
  924. @staticmethod
  925. def create_tmpfile_copy(inc_file):
  926. '''create a temporary copy of a file'''
  927. tmpfile = Utils.create_tmpfile('lib_openshift-')
  928. Utils._write(tmpfile, open(inc_file).read())
  929. # Cleanup the tmpfile
  930. atexit.register(Utils.cleanup, [tmpfile])
  931. return tmpfile
  932. @staticmethod
  933. def create_tmpfile(prefix='tmp'):
  934. ''' Generates and returns a temporary file name '''
  935. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  936. return tmp.name
  937. @staticmethod
  938. def create_tmp_files_from_contents(content, content_type=None):
  939. '''Turn an array of dict: filename, content into a files array'''
  940. if not isinstance(content, list):
  941. content = [content]
  942. files = []
  943. for item in content:
  944. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  945. item['data'],
  946. ftype=content_type)
  947. files.append({'name': os.path.basename(item['path']),
  948. 'path': path})
  949. return files
  950. @staticmethod
  951. def cleanup(files):
  952. '''Clean up on exit '''
  953. for sfile in files:
  954. if os.path.exists(sfile):
  955. if os.path.isdir(sfile):
  956. shutil.rmtree(sfile)
  957. elif os.path.isfile(sfile):
  958. os.remove(sfile)
  959. @staticmethod
  960. def exists(results, _name):
  961. ''' Check to see if the results include the name '''
  962. if not results:
  963. return False
  964. if Utils.find_result(results, _name):
  965. return True
  966. return False
  967. @staticmethod
  968. def find_result(results, _name):
  969. ''' Find the specified result by name'''
  970. rval = None
  971. for result in results:
  972. if 'metadata' in result and result['metadata']['name'] == _name:
  973. rval = result
  974. break
  975. return rval
  976. @staticmethod
  977. def get_resource_file(sfile, sfile_type='yaml'):
  978. ''' return the service file '''
  979. contents = None
  980. with open(sfile) as sfd:
  981. contents = sfd.read()
  982. if sfile_type == 'yaml':
  983. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  984. # pylint: disable=no-member
  985. if hasattr(yaml, 'RoundTripLoader'):
  986. contents = yaml.load(contents, yaml.RoundTripLoader)
  987. else:
  988. contents = yaml.safe_load(contents)
  989. elif sfile_type == 'json':
  990. contents = json.loads(contents)
  991. return contents
  992. @staticmethod
  993. def filter_versions(stdout):
  994. ''' filter the oc version output '''
  995. version_dict = {}
  996. version_search = ['oc', 'openshift', 'kubernetes']
  997. for line in stdout.strip().split('\n'):
  998. for term in version_search:
  999. if not line:
  1000. continue
  1001. if line.startswith(term):
  1002. version_dict[term] = line.split()[-1]
  1003. # horrible hack to get openshift version in Openshift 3.2
  1004. # By default "oc version in 3.2 does not return an "openshift" version
  1005. if "openshift" not in version_dict:
  1006. version_dict["openshift"] = version_dict["oc"]
  1007. return version_dict
  1008. @staticmethod
  1009. def add_custom_versions(versions):
  1010. ''' create custom versions strings '''
  1011. versions_dict = {}
  1012. for tech, version in versions.items():
  1013. # clean up "-" from version
  1014. if "-" in version:
  1015. version = version.split("-")[0]
  1016. if version.startswith('v'):
  1017. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1018. # "v3.3.0.33" is what we have, we want "3.3"
  1019. versions_dict[tech + '_short'] = version[1:4]
  1020. return versions_dict
  1021. @staticmethod
  1022. def openshift_installed():
  1023. ''' check if openshift is installed '''
  1024. import rpm
  1025. transaction_set = rpm.TransactionSet()
  1026. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  1027. return rpmquery.count() > 0
  1028. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1029. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1030. @staticmethod
  1031. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1032. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1033. # Currently these values are autogenerated and we do not need to check them
  1034. skip = ['metadata', 'status']
  1035. if skip_keys:
  1036. skip.extend(skip_keys)
  1037. for key, value in result_def.items():
  1038. if key in skip:
  1039. continue
  1040. # Both are lists
  1041. if isinstance(value, list):
  1042. if key not in user_def:
  1043. if debug:
  1044. print('User data does not have key [%s]' % key)
  1045. print('User data: %s' % user_def)
  1046. return False
  1047. if not isinstance(user_def[key], list):
  1048. if debug:
  1049. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1050. return False
  1051. if len(user_def[key]) != len(value):
  1052. if debug:
  1053. print("List lengths are not equal.")
  1054. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1055. print("user_def: %s" % user_def[key])
  1056. print("value: %s" % value)
  1057. return False
  1058. for values in zip(user_def[key], value):
  1059. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1060. if debug:
  1061. print('sending list - list')
  1062. print(type(values[0]))
  1063. print(type(values[1]))
  1064. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1065. if not result:
  1066. print('list compare returned false')
  1067. return False
  1068. elif value != user_def[key]:
  1069. if debug:
  1070. print('value should be identical')
  1071. print(user_def[key])
  1072. print(value)
  1073. return False
  1074. # recurse on a dictionary
  1075. elif isinstance(value, dict):
  1076. if key not in user_def:
  1077. if debug:
  1078. print("user_def does not have key [%s]" % key)
  1079. return False
  1080. if not isinstance(user_def[key], dict):
  1081. if debug:
  1082. print("dict returned false: not instance of dict")
  1083. return False
  1084. # before passing ensure keys match
  1085. api_values = set(value.keys()) - set(skip)
  1086. user_values = set(user_def[key].keys()) - set(skip)
  1087. if api_values != user_values:
  1088. if debug:
  1089. print("keys are not equal in dict")
  1090. print(user_values)
  1091. print(api_values)
  1092. return False
  1093. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1094. if not result:
  1095. if debug:
  1096. print("dict returned false")
  1097. print(result)
  1098. return False
  1099. # Verify each key, value pair is the same
  1100. else:
  1101. if key not in user_def or value != user_def[key]:
  1102. if debug:
  1103. print("value not equal; user_def does not have key")
  1104. print(key)
  1105. print(value)
  1106. if key in user_def:
  1107. print(user_def[key])
  1108. return False
  1109. if debug:
  1110. print('returning true')
  1111. return True
  1112. class OpenShiftCLIConfig(object):
  1113. '''Generic Config'''
  1114. def __init__(self, rname, namespace, kubeconfig, options):
  1115. self.kubeconfig = kubeconfig
  1116. self.name = rname
  1117. self.namespace = namespace
  1118. self._options = options
  1119. @property
  1120. def config_options(self):
  1121. ''' return config options '''
  1122. return self._options
  1123. def to_option_list(self, ascommalist=''):
  1124. '''return all options as a string
  1125. if ascommalist is set to the name of a key, and
  1126. the value of that key is a dict, format the dict
  1127. as a list of comma delimited key=value pairs'''
  1128. return self.stringify(ascommalist)
  1129. def stringify(self, ascommalist=''):
  1130. ''' return the options hash as cli params in a string
  1131. if ascommalist is set to the name of a key, and
  1132. the value of that key is a dict, format the dict
  1133. as a list of comma delimited key=value pairs '''
  1134. rval = []
  1135. for key in sorted(self.config_options.keys()):
  1136. data = self.config_options[key]
  1137. if data['include'] \
  1138. and (data['value'] is not None or isinstance(data['value'], int)):
  1139. if key == ascommalist:
  1140. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1141. else:
  1142. val = data['value']
  1143. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1144. return rval
  1145. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1146. # -*- -*- -*- Begin included fragment: class/oc_version.py -*- -*- -*-
  1147. # pylint: disable=too-many-instance-attributes
  1148. class OCVersion(OpenShiftCLI):
  1149. ''' Class to wrap the oc command line tools '''
  1150. # pylint allows 5
  1151. # pylint: disable=too-many-arguments
  1152. def __init__(self,
  1153. config,
  1154. debug):
  1155. ''' Constructor for OCVersion '''
  1156. super(OCVersion, self).__init__(None, config)
  1157. self.debug = debug
  1158. def get(self):
  1159. '''get and return version information '''
  1160. results = {}
  1161. version_results = self._version()
  1162. if version_results['returncode'] == 0:
  1163. filtered_vers = Utils.filter_versions(version_results['results'])
  1164. custom_vers = Utils.add_custom_versions(filtered_vers)
  1165. results['returncode'] = version_results['returncode']
  1166. results.update(filtered_vers)
  1167. results.update(custom_vers)
  1168. return results
  1169. raise OpenShiftCLIError('Problem detecting openshift version.')
  1170. @staticmethod
  1171. def run_ansible(params):
  1172. '''run the idempotent ansible code'''
  1173. oc_version = OCVersion(params['kubeconfig'], params['debug'])
  1174. if params['state'] == 'list':
  1175. #pylint: disable=protected-access
  1176. result = oc_version.get()
  1177. return {'state': params['state'],
  1178. 'results': result,
  1179. 'changed': False}
  1180. # -*- -*- -*- End included fragment: class/oc_version.py -*- -*- -*-
  1181. # -*- -*- -*- Begin included fragment: ansible/oc_version.py -*- -*- -*-
  1182. def main():
  1183. ''' ansible oc module for version '''
  1184. module = AnsibleModule(
  1185. argument_spec=dict(
  1186. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1187. state=dict(default='list', type='str',
  1188. choices=['list']),
  1189. debug=dict(default=False, type='bool'),
  1190. ),
  1191. supports_check_mode=True,
  1192. )
  1193. rval = OCVersion.run_ansible(module.params)
  1194. if 'failed' in rval:
  1195. module.fail_json(**rval)
  1196. module.exit_json(**rval)
  1197. if __name__ == '__main__':
  1198. main()
  1199. # -*- -*- -*- End included fragment: ansible/oc_version.py -*- -*- -*-