oc_version.py 48 KB

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