oc_clusterrole.py 58 KB

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