oc_objectvalidator.py 50 KB

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