oc_version.py 50 KB

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