oc_version.py 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464
  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):
  751. '''return a resource by name '''
  752. cmd = ['get', resource]
  753. if selector is not None:
  754. cmd.append('--selector={}'.format(selector))
  755. elif name is not None:
  756. cmd.append(name)
  757. cmd.extend(['-o', 'json'])
  758. rval = self.openshift_cmd(cmd, output=True)
  759. # Ensure results are retuned in an array
  760. if 'items' in rval:
  761. rval['results'] = rval['items']
  762. elif not isinstance(rval['results'], list):
  763. rval['results'] = [rval['results']]
  764. return rval
  765. def _schedulable(self, node=None, selector=None, schedulable=True):
  766. ''' perform oadm manage-node scheduable '''
  767. cmd = ['manage-node']
  768. if node:
  769. cmd.extend(node)
  770. else:
  771. cmd.append('--selector={}'.format(selector))
  772. cmd.append('--schedulable={}'.format(schedulable))
  773. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  774. def _list_pods(self, node=None, selector=None, pod_selector=None):
  775. ''' perform oadm list pods
  776. node: the node in which to list pods
  777. selector: the label selector filter if provided
  778. pod_selector: the pod selector filter if provided
  779. '''
  780. cmd = ['manage-node']
  781. if node:
  782. cmd.extend(node)
  783. else:
  784. cmd.append('--selector={}'.format(selector))
  785. if pod_selector:
  786. cmd.append('--pod-selector={}'.format(pod_selector))
  787. cmd.extend(['--list-pods', '-o', 'json'])
  788. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  789. # pylint: disable=too-many-arguments
  790. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  791. ''' perform oadm manage-node evacuate '''
  792. cmd = ['manage-node']
  793. if node:
  794. cmd.extend(node)
  795. else:
  796. cmd.append('--selector={}'.format(selector))
  797. if dry_run:
  798. cmd.append('--dry-run')
  799. if pod_selector:
  800. cmd.append('--pod-selector={}'.format(pod_selector))
  801. if grace_period:
  802. cmd.append('--grace-period={}'.format(int(grace_period)))
  803. if force:
  804. cmd.append('--force')
  805. cmd.append('--evacuate')
  806. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  807. def _version(self):
  808. ''' return the openshift version'''
  809. return self.openshift_cmd(['version'], output=True, output_type='raw')
  810. def _import_image(self, url=None, name=None, tag=None):
  811. ''' perform image import '''
  812. cmd = ['import-image']
  813. image = '{0}'.format(name)
  814. if tag:
  815. image += ':{0}'.format(tag)
  816. cmd.append(image)
  817. if url:
  818. cmd.append('--from={0}/{1}'.format(url, image))
  819. cmd.append('-n{0}'.format(self.namespace))
  820. cmd.append('--confirm')
  821. return self.openshift_cmd(cmd)
  822. def _run(self, cmds, input_data):
  823. ''' Actually executes the command. This makes mocking easier. '''
  824. curr_env = os.environ.copy()
  825. curr_env.update({'KUBECONFIG': self.kubeconfig})
  826. proc = subprocess.Popen(cmds,
  827. stdin=subprocess.PIPE,
  828. stdout=subprocess.PIPE,
  829. stderr=subprocess.PIPE,
  830. env=curr_env)
  831. stdout, stderr = proc.communicate(input_data)
  832. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  833. # pylint: disable=too-many-arguments,too-many-branches
  834. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  835. '''Base command for oc '''
  836. cmds = [self.oc_binary]
  837. if oadm:
  838. cmds.append('adm')
  839. cmds.extend(cmd)
  840. if self.all_namespaces:
  841. cmds.extend(['--all-namespaces'])
  842. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  843. cmds.extend(['-n', self.namespace])
  844. if self.verbose:
  845. print(' '.join(cmds))
  846. try:
  847. returncode, stdout, stderr = self._run(cmds, input_data)
  848. except OSError as ex:
  849. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  850. rval = {"returncode": returncode,
  851. "cmd": ' '.join(cmds)}
  852. if output_type == 'json':
  853. rval['results'] = {}
  854. if output and stdout:
  855. try:
  856. rval['results'] = json.loads(stdout)
  857. except ValueError as verr:
  858. if "No JSON object could be decoded" in verr.args:
  859. rval['err'] = verr.args
  860. elif output_type == 'raw':
  861. rval['results'] = stdout if output else ''
  862. if self.verbose:
  863. print("STDOUT: {0}".format(stdout))
  864. print("STDERR: {0}".format(stderr))
  865. if 'err' in rval or returncode != 0:
  866. rval.update({"stderr": stderr,
  867. "stdout": stdout})
  868. return rval
  869. class Utils(object): # pragma: no cover
  870. ''' utilities for openshiftcli modules '''
  871. @staticmethod
  872. def _write(filename, contents):
  873. ''' Actually write the file contents to disk. This helps with mocking. '''
  874. with open(filename, 'w') as sfd:
  875. sfd.write(str(contents))
  876. @staticmethod
  877. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  878. ''' create a file in tmp with name and contents'''
  879. tmp = Utils.create_tmpfile(prefix=rname)
  880. if ftype == 'yaml':
  881. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  882. # pylint: disable=no-member
  883. if hasattr(yaml, 'RoundTripDumper'):
  884. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  885. else:
  886. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  887. elif ftype == 'json':
  888. Utils._write(tmp, json.dumps(data))
  889. else:
  890. Utils._write(tmp, data)
  891. # Register cleanup when module is done
  892. atexit.register(Utils.cleanup, [tmp])
  893. return tmp
  894. @staticmethod
  895. def create_tmpfile_copy(inc_file):
  896. '''create a temporary copy of a file'''
  897. tmpfile = Utils.create_tmpfile('lib_openshift-')
  898. Utils._write(tmpfile, open(inc_file).read())
  899. # Cleanup the tmpfile
  900. atexit.register(Utils.cleanup, [tmpfile])
  901. return tmpfile
  902. @staticmethod
  903. def create_tmpfile(prefix='tmp'):
  904. ''' Generates and returns a temporary file name '''
  905. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  906. return tmp.name
  907. @staticmethod
  908. def create_tmp_files_from_contents(content, content_type=None):
  909. '''Turn an array of dict: filename, content into a files array'''
  910. if not isinstance(content, list):
  911. content = [content]
  912. files = []
  913. for item in content:
  914. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  915. item['data'],
  916. ftype=content_type)
  917. files.append({'name': os.path.basename(item['path']),
  918. 'path': path})
  919. return files
  920. @staticmethod
  921. def cleanup(files):
  922. '''Clean up on exit '''
  923. for sfile in files:
  924. if os.path.exists(sfile):
  925. if os.path.isdir(sfile):
  926. shutil.rmtree(sfile)
  927. elif os.path.isfile(sfile):
  928. os.remove(sfile)
  929. @staticmethod
  930. def exists(results, _name):
  931. ''' Check to see if the results include the name '''
  932. if not results:
  933. return False
  934. if Utils.find_result(results, _name):
  935. return True
  936. return False
  937. @staticmethod
  938. def find_result(results, _name):
  939. ''' Find the specified result by name'''
  940. rval = None
  941. for result in results:
  942. if 'metadata' in result and result['metadata']['name'] == _name:
  943. rval = result
  944. break
  945. return rval
  946. @staticmethod
  947. def get_resource_file(sfile, sfile_type='yaml'):
  948. ''' return the service file '''
  949. contents = None
  950. with open(sfile) as sfd:
  951. contents = sfd.read()
  952. if sfile_type == 'yaml':
  953. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  954. # pylint: disable=no-member
  955. if hasattr(yaml, 'RoundTripLoader'):
  956. contents = yaml.load(contents, yaml.RoundTripLoader)
  957. else:
  958. contents = yaml.safe_load(contents)
  959. elif sfile_type == 'json':
  960. contents = json.loads(contents)
  961. return contents
  962. @staticmethod
  963. def filter_versions(stdout):
  964. ''' filter the oc version output '''
  965. version_dict = {}
  966. version_search = ['oc', 'openshift', 'kubernetes']
  967. for line in stdout.strip().split('\n'):
  968. for term in version_search:
  969. if not line:
  970. continue
  971. if line.startswith(term):
  972. version_dict[term] = line.split()[-1]
  973. # horrible hack to get openshift version in Openshift 3.2
  974. # By default "oc version in 3.2 does not return an "openshift" version
  975. if "openshift" not in version_dict:
  976. version_dict["openshift"] = version_dict["oc"]
  977. return version_dict
  978. @staticmethod
  979. def add_custom_versions(versions):
  980. ''' create custom versions strings '''
  981. versions_dict = {}
  982. for tech, version in versions.items():
  983. # clean up "-" from version
  984. if "-" in version:
  985. version = version.split("-")[0]
  986. if version.startswith('v'):
  987. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  988. # "v3.3.0.33" is what we have, we want "3.3"
  989. versions_dict[tech + '_short'] = version[1:4]
  990. return versions_dict
  991. @staticmethod
  992. def openshift_installed():
  993. ''' check if openshift is installed '''
  994. import rpm
  995. transaction_set = rpm.TransactionSet()
  996. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  997. return rpmquery.count() > 0
  998. # Disabling too-many-branches. This is a yaml dictionary comparison function
  999. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1000. @staticmethod
  1001. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1002. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1003. # Currently these values are autogenerated and we do not need to check them
  1004. skip = ['metadata', 'status']
  1005. if skip_keys:
  1006. skip.extend(skip_keys)
  1007. for key, value in result_def.items():
  1008. if key in skip:
  1009. continue
  1010. # Both are lists
  1011. if isinstance(value, list):
  1012. if key not in user_def:
  1013. if debug:
  1014. print('User data does not have key [%s]' % key)
  1015. print('User data: %s' % user_def)
  1016. return False
  1017. if not isinstance(user_def[key], list):
  1018. if debug:
  1019. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1020. return False
  1021. if len(user_def[key]) != len(value):
  1022. if debug:
  1023. print("List lengths are not equal.")
  1024. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1025. print("user_def: %s" % user_def[key])
  1026. print("value: %s" % value)
  1027. return False
  1028. for values in zip(user_def[key], value):
  1029. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1030. if debug:
  1031. print('sending list - list')
  1032. print(type(values[0]))
  1033. print(type(values[1]))
  1034. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1035. if not result:
  1036. print('list compare returned false')
  1037. return False
  1038. elif value != user_def[key]:
  1039. if debug:
  1040. print('value should be identical')
  1041. print(user_def[key])
  1042. print(value)
  1043. return False
  1044. # recurse on a dictionary
  1045. elif isinstance(value, dict):
  1046. if key not in user_def:
  1047. if debug:
  1048. print("user_def does not have key [%s]" % key)
  1049. return False
  1050. if not isinstance(user_def[key], dict):
  1051. if debug:
  1052. print("dict returned false: not instance of dict")
  1053. return False
  1054. # before passing ensure keys match
  1055. api_values = set(value.keys()) - set(skip)
  1056. user_values = set(user_def[key].keys()) - set(skip)
  1057. if api_values != user_values:
  1058. if debug:
  1059. print("keys are not equal in dict")
  1060. print(user_values)
  1061. print(api_values)
  1062. return False
  1063. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1064. if not result:
  1065. if debug:
  1066. print("dict returned false")
  1067. print(result)
  1068. return False
  1069. # Verify each key, value pair is the same
  1070. else:
  1071. if key not in user_def or value != user_def[key]:
  1072. if debug:
  1073. print("value not equal; user_def does not have key")
  1074. print(key)
  1075. print(value)
  1076. if key in user_def:
  1077. print(user_def[key])
  1078. return False
  1079. if debug:
  1080. print('returning true')
  1081. return True
  1082. class OpenShiftCLIConfig(object):
  1083. '''Generic Config'''
  1084. def __init__(self, rname, namespace, kubeconfig, options):
  1085. self.kubeconfig = kubeconfig
  1086. self.name = rname
  1087. self.namespace = namespace
  1088. self._options = options
  1089. @property
  1090. def config_options(self):
  1091. ''' return config options '''
  1092. return self._options
  1093. def to_option_list(self, ascommalist=''):
  1094. '''return all options as a string
  1095. if ascommalist is set to the name of a key, and
  1096. the value of that key is a dict, format the dict
  1097. as a list of comma delimited key=value pairs'''
  1098. return self.stringify(ascommalist)
  1099. def stringify(self, ascommalist=''):
  1100. ''' return the options hash as cli params in a string
  1101. if ascommalist is set to the name of a key, and
  1102. the value of that key is a dict, format the dict
  1103. as a list of comma delimited key=value pairs '''
  1104. rval = []
  1105. for key in sorted(self.config_options.keys()):
  1106. data = self.config_options[key]
  1107. if data['include'] \
  1108. and (data['value'] is not None or isinstance(data['value'], int)):
  1109. if key == ascommalist:
  1110. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1111. else:
  1112. val = data['value']
  1113. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1114. return rval
  1115. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1116. # -*- -*- -*- Begin included fragment: class/oc_version.py -*- -*- -*-
  1117. # pylint: disable=too-many-instance-attributes
  1118. class OCVersion(OpenShiftCLI):
  1119. ''' Class to wrap the oc command line tools '''
  1120. # pylint allows 5
  1121. # pylint: disable=too-many-arguments
  1122. def __init__(self,
  1123. config,
  1124. debug):
  1125. ''' Constructor for OCVersion '''
  1126. super(OCVersion, self).__init__(None, config)
  1127. self.debug = debug
  1128. def get(self):
  1129. '''get and return version information '''
  1130. results = {}
  1131. version_results = self._version()
  1132. if version_results['returncode'] == 0:
  1133. filtered_vers = Utils.filter_versions(version_results['results'])
  1134. custom_vers = Utils.add_custom_versions(filtered_vers)
  1135. results['returncode'] = version_results['returncode']
  1136. results.update(filtered_vers)
  1137. results.update(custom_vers)
  1138. return results
  1139. raise OpenShiftCLIError('Problem detecting openshift version.')
  1140. @staticmethod
  1141. def run_ansible(params):
  1142. '''run the idempotent ansible code'''
  1143. oc_version = OCVersion(params['kubeconfig'], params['debug'])
  1144. if params['state'] == 'list':
  1145. #pylint: disable=protected-access
  1146. result = oc_version.get()
  1147. return {'state': params['state'],
  1148. 'results': result,
  1149. 'changed': False}
  1150. # -*- -*- -*- End included fragment: class/oc_version.py -*- -*- -*-
  1151. # -*- -*- -*- Begin included fragment: ansible/oc_version.py -*- -*- -*-
  1152. def main():
  1153. ''' ansible oc module for version '''
  1154. module = AnsibleModule(
  1155. argument_spec=dict(
  1156. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1157. state=dict(default='list', type='str',
  1158. choices=['list']),
  1159. debug=dict(default=False, type='bool'),
  1160. ),
  1161. supports_check_mode=True,
  1162. )
  1163. rval = OCVersion.run_ansible(module.params)
  1164. if 'failed' in rval:
  1165. module.fail_json(**rval)
  1166. module.exit_json(**rval)
  1167. if __name__ == '__main__':
  1168. main()
  1169. # -*- -*- -*- End included fragment: ansible/oc_version.py -*- -*- -*-