oc_version.py 49 KB

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