oc_objectvalidator.py 52 KB

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