oc_objectvalidator.py 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476
  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']) or {}
  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(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 yum
  967. yum_base = yum.YumBase()
  968. if yum_base.rpmdb.searchNevra(name='atomic-openshift'):
  969. return True
  970. return False
  971. # Disabling too-many-branches. This is a yaml dictionary comparison function
  972. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  973. @staticmethod
  974. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  975. ''' Given a user defined definition, compare it with the results given back by our query. '''
  976. # Currently these values are autogenerated and we do not need to check them
  977. skip = ['metadata', 'status']
  978. if skip_keys:
  979. skip.extend(skip_keys)
  980. for key, value in result_def.items():
  981. if key in skip:
  982. continue
  983. # Both are lists
  984. if isinstance(value, list):
  985. if key not in user_def:
  986. if debug:
  987. print('User data does not have key [%s]' % key)
  988. print('User data: %s' % user_def)
  989. return False
  990. if not isinstance(user_def[key], list):
  991. if debug:
  992. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  993. return False
  994. if len(user_def[key]) != len(value):
  995. if debug:
  996. print("List lengths are not equal.")
  997. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  998. print("user_def: %s" % user_def[key])
  999. print("value: %s" % value)
  1000. return False
  1001. for values in zip(user_def[key], value):
  1002. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1003. if debug:
  1004. print('sending list - list')
  1005. print(type(values[0]))
  1006. print(type(values[1]))
  1007. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1008. if not result:
  1009. print('list compare returned false')
  1010. return False
  1011. elif value != user_def[key]:
  1012. if debug:
  1013. print('value should be identical')
  1014. print(user_def[key])
  1015. print(value)
  1016. return False
  1017. # recurse on a dictionary
  1018. elif isinstance(value, dict):
  1019. if key not in user_def:
  1020. if debug:
  1021. print("user_def does not have key [%s]" % key)
  1022. return False
  1023. if not isinstance(user_def[key], dict):
  1024. if debug:
  1025. print("dict returned false: not instance of dict")
  1026. return False
  1027. # before passing ensure keys match
  1028. api_values = set(value.keys()) - set(skip)
  1029. user_values = set(user_def[key].keys()) - set(skip)
  1030. if api_values != user_values:
  1031. if debug:
  1032. print("keys are not equal in dict")
  1033. print(user_values)
  1034. print(api_values)
  1035. return False
  1036. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1037. if not result:
  1038. if debug:
  1039. print("dict returned false")
  1040. print(result)
  1041. return False
  1042. # Verify each key, value pair is the same
  1043. else:
  1044. if key not in user_def or value != user_def[key]:
  1045. if debug:
  1046. print("value not equal; user_def does not have key")
  1047. print(key)
  1048. print(value)
  1049. if key in user_def:
  1050. print(user_def[key])
  1051. return False
  1052. if debug:
  1053. print('returning true')
  1054. return True
  1055. class OpenShiftCLIConfig(object):
  1056. '''Generic Config'''
  1057. def __init__(self, rname, namespace, kubeconfig, options):
  1058. self.kubeconfig = kubeconfig
  1059. self.name = rname
  1060. self.namespace = namespace
  1061. self._options = options
  1062. @property
  1063. def config_options(self):
  1064. ''' return config options '''
  1065. return self._options
  1066. def to_option_list(self, ascommalist=''):
  1067. '''return all options as a string
  1068. if ascommalist is set to the name of a key, and
  1069. the value of that key is a dict, format the dict
  1070. as a list of comma delimited key=value pairs'''
  1071. return self.stringify(ascommalist)
  1072. def stringify(self, ascommalist=''):
  1073. ''' return the options hash as cli params in a string
  1074. if ascommalist is set to the name of a key, and
  1075. the value of that key is a dict, format the dict
  1076. as a list of comma delimited key=value pairs '''
  1077. rval = []
  1078. for key in sorted(self.config_options.keys()):
  1079. data = self.config_options[key]
  1080. if data['include'] \
  1081. and (data['value'] or isinstance(data['value'], int)):
  1082. if key == ascommalist:
  1083. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1084. else:
  1085. val = data['value']
  1086. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1087. return rval
  1088. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1089. # -*- -*- -*- Begin included fragment: class/oc_objectvalidator.py -*- -*- -*-
  1090. # pylint: disable=too-many-instance-attributes
  1091. class OCObjectValidator(OpenShiftCLI):
  1092. ''' Class to wrap the oc command line tools '''
  1093. def __init__(self, kubeconfig):
  1094. ''' Constructor for OCObjectValidator '''
  1095. # namespace has no meaning for object validation, hardcode to 'default'
  1096. super(OCObjectValidator, self).__init__('default', kubeconfig)
  1097. def get_invalid(self, kind, invalid_filter):
  1098. ''' return invalid object information '''
  1099. rval = self._get(kind)
  1100. if rval['returncode'] != 0:
  1101. return False, rval, []
  1102. return True, rval, list(filter(invalid_filter, rval['results'][0]['items'])) # wrap filter with list for py3
  1103. # pylint: disable=too-many-return-statements
  1104. @staticmethod
  1105. def run_ansible(params):
  1106. ''' run the idempotent ansible code
  1107. params comes from the ansible portion of this module
  1108. '''
  1109. objectvalidator = OCObjectValidator(params['kubeconfig'])
  1110. all_invalid = {}
  1111. failed = False
  1112. def _is_invalid_namespace(namespace):
  1113. # check if it uses a reserved name
  1114. name = namespace['metadata']['name']
  1115. if not any((name == 'kube',
  1116. name == 'kubernetes',
  1117. name == 'openshift',
  1118. name.startswith('kube-'),
  1119. name.startswith('kubernetes-'),
  1120. name.startswith('openshift-'),)):
  1121. return False
  1122. # determine if the namespace was created by a user
  1123. if 'annotations' not in namespace['metadata']:
  1124. return False
  1125. return 'openshift.io/requester' in namespace['metadata']['annotations']
  1126. checks = (
  1127. (
  1128. 'hostsubnet',
  1129. lambda x: x['metadata']['name'] != x['host'],
  1130. u'hostsubnets where metadata.name != host',
  1131. ),
  1132. (
  1133. 'netnamespace',
  1134. lambda x: x['metadata']['name'] != x['netname'],
  1135. u'netnamespaces where metadata.name != netname',
  1136. ),
  1137. (
  1138. 'namespace',
  1139. _is_invalid_namespace,
  1140. u'namespaces that use reserved names and were not created by infrastructure components',
  1141. ),
  1142. )
  1143. for resource, invalid_filter, invalid_msg in checks:
  1144. success, rval, invalid = objectvalidator.get_invalid(resource, invalid_filter)
  1145. if not success:
  1146. return {'failed': True, 'msg': 'Failed to GET {}.'.format(resource), 'state': 'list', 'results': rval}
  1147. if invalid:
  1148. failed = True
  1149. all_invalid[invalid_msg] = invalid
  1150. if failed:
  1151. return {
  1152. 'failed': True,
  1153. 'msg': (
  1154. "All objects are not valid. If you are a supported customer please contact "
  1155. "Red Hat Support providing the complete output above. If you are not a customer "
  1156. "please contact users@lists.openshift.redhat.com for assistance."
  1157. ),
  1158. 'state': 'list',
  1159. 'results': all_invalid
  1160. }
  1161. return {'msg': 'All objects are valid.'}
  1162. # -*- -*- -*- End included fragment: class/oc_objectvalidator.py -*- -*- -*-
  1163. # -*- -*- -*- Begin included fragment: ansible/oc_objectvalidator.py -*- -*- -*-
  1164. def main():
  1165. '''
  1166. ansible oc module for validating OpenShift objects
  1167. '''
  1168. module = AnsibleModule(
  1169. argument_spec=dict(
  1170. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1171. ),
  1172. supports_check_mode=False,
  1173. )
  1174. rval = OCObjectValidator.run_ansible(module.params)
  1175. if 'failed' in rval:
  1176. module.fail_json(**rval)
  1177. module.exit_json(**rval)
  1178. if __name__ == '__main__':
  1179. main()
  1180. # -*- -*- -*- End included fragment: ansible/oc_objectvalidator.py -*- -*- -*-