oc_version.py 50 KB

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