oc_objectvalidator.py 52 KB

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