oc_version.py 49 KB

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