oc_version.py 46 KB

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