oc_objectvalidator.py 52 KB

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