oc_objectvalidator.py 51 KB

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