oc_version.py 48 KB

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