oc_adm_policy_user.py 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  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/policy_user -*- -*- -*-
  49. DOCUMENTATION = '''
  50. ---
  51. module: oc_adm_policy_user
  52. short_description: Module to manage openshift policy for users
  53. description:
  54. - Manage openshift policy for users.
  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. namespace:
  63. description:
  64. - The namespace scope
  65. required: false
  66. default: None
  67. aliases: []
  68. debug:
  69. description:
  70. - Turn on debug output.
  71. required: false
  72. default: False
  73. aliases: []
  74. user:
  75. description:
  76. - The name of the user
  77. required: true
  78. default: None
  79. aliases: []
  80. resource_kind:
  81. description:
  82. - The kind of policy to affect
  83. required: true
  84. default: None
  85. choices: ["role", "cluster-role", "scc"]
  86. aliases: []
  87. resource_name:
  88. description:
  89. - The name of the policy
  90. required: true
  91. default: None
  92. aliases: []
  93. state:
  94. description:
  95. - Desired state of the policy
  96. required: true
  97. default: present
  98. choices: ["present", "absent"]
  99. aliases: []
  100. author:
  101. - "Kenny Woodson <kwoodson@redhat.com>"
  102. extends_documentation_fragment: []
  103. '''
  104. EXAMPLES = '''
  105. - name: oc adm policy remove-scc-from-user an-scc ausername
  106. oc_adm_policy_user:
  107. user: ausername
  108. resource_kind: scc
  109. resource_name: an-scc
  110. state: absent
  111. - name: oc adm policy add-cluster-role-to-user system:build-strategy-docker ausername
  112. oc_adm_policy_user:
  113. user: ausername
  114. resource_kind: cluster-role
  115. resource_name: system:build-strategy-docker
  116. state: present
  117. '''
  118. # -*- -*- -*- End included fragment: doc/policy_user -*- -*- -*-
  119. # -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  120. class YeditException(Exception): # pragma: no cover
  121. ''' Exception class for Yedit '''
  122. pass
  123. # pylint: disable=too-many-public-methods
  124. class Yedit(object): # pragma: no cover
  125. ''' Class to modify yaml files '''
  126. re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
  127. re_key = r"(?:\[(-?\d+)\])|([0-9a-zA-Z%s/_-]+)"
  128. com_sep = set(['.', '#', '|', ':'])
  129. # pylint: disable=too-many-arguments
  130. def __init__(self,
  131. filename=None,
  132. content=None,
  133. content_type='yaml',
  134. separator='.',
  135. backup=False):
  136. self.content = content
  137. self._separator = separator
  138. self.filename = filename
  139. self.__yaml_dict = content
  140. self.content_type = content_type
  141. self.backup = backup
  142. self.load(content_type=self.content_type)
  143. if self.__yaml_dict is None:
  144. self.__yaml_dict = {}
  145. @property
  146. def separator(self):
  147. ''' getter method for separator '''
  148. return self._separator
  149. @separator.setter
  150. def separator(self, inc_sep):
  151. ''' setter method for separator '''
  152. self._separator = inc_sep
  153. @property
  154. def yaml_dict(self):
  155. ''' getter method for yaml_dict '''
  156. return self.__yaml_dict
  157. @yaml_dict.setter
  158. def yaml_dict(self, value):
  159. ''' setter method for yaml_dict '''
  160. self.__yaml_dict = value
  161. @staticmethod
  162. def parse_key(key, sep='.'):
  163. '''parse the key allowing the appropriate separator'''
  164. common_separators = list(Yedit.com_sep - set([sep]))
  165. return re.findall(Yedit.re_key.format(''.join(common_separators)), key)
  166. @staticmethod
  167. def valid_key(key, sep='.'):
  168. '''validate the incoming key'''
  169. common_separators = list(Yedit.com_sep - set([sep]))
  170. if not re.match(Yedit.re_valid_key.format(''.join(common_separators)), key):
  171. return False
  172. return True
  173. @staticmethod
  174. def remove_entry(data, key, sep='.'):
  175. ''' remove data at location key '''
  176. if key == '' and isinstance(data, dict):
  177. data.clear()
  178. return True
  179. elif key == '' and isinstance(data, list):
  180. del data[:]
  181. return True
  182. if not (key and Yedit.valid_key(key, sep)) and \
  183. isinstance(data, (list, dict)):
  184. return None
  185. key_indexes = Yedit.parse_key(key, sep)
  186. for arr_ind, dict_key in key_indexes[:-1]:
  187. if dict_key and isinstance(data, dict):
  188. data = data.get(dict_key)
  189. elif (arr_ind and isinstance(data, list) and
  190. int(arr_ind) <= len(data) - 1):
  191. data = data[int(arr_ind)]
  192. else:
  193. return None
  194. # process last index for remove
  195. # expected list entry
  196. if key_indexes[-1][0]:
  197. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  198. del data[int(key_indexes[-1][0])]
  199. return True
  200. # expected dict entry
  201. elif key_indexes[-1][1]:
  202. if isinstance(data, dict):
  203. del data[key_indexes[-1][1]]
  204. return True
  205. @staticmethod
  206. def add_entry(data, key, item=None, sep='.'):
  207. ''' Get an item from a dictionary with key notation a.b.c
  208. d = {'a': {'b': 'c'}}}
  209. key = a#b
  210. return c
  211. '''
  212. if key == '':
  213. pass
  214. elif (not (key and Yedit.valid_key(key, sep)) and
  215. isinstance(data, (list, dict))):
  216. return None
  217. key_indexes = Yedit.parse_key(key, sep)
  218. for arr_ind, dict_key in key_indexes[:-1]:
  219. if dict_key:
  220. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  221. data = data[dict_key]
  222. continue
  223. elif data and not isinstance(data, dict):
  224. raise YeditException("Unexpected item type found while going through key " +
  225. "path: {} (at key: {})".format(key, dict_key))
  226. data[dict_key] = {}
  227. data = data[dict_key]
  228. elif (arr_ind and isinstance(data, list) and
  229. int(arr_ind) <= len(data) - 1):
  230. data = data[int(arr_ind)]
  231. else:
  232. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  233. if key == '':
  234. data = item
  235. # process last index for add
  236. # expected list entry
  237. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  238. data[int(key_indexes[-1][0])] = item
  239. # expected dict entry
  240. elif key_indexes[-1][1] and isinstance(data, dict):
  241. data[key_indexes[-1][1]] = item
  242. # didn't add/update to an existing list, nor add/update key to a dict
  243. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  244. # non-existent array
  245. else:
  246. raise YeditException("Error adding to object at path: {}".format(key))
  247. return data
  248. @staticmethod
  249. def get_entry(data, key, sep='.'):
  250. ''' Get an item from a dictionary with key notation a.b.c
  251. d = {'a': {'b': 'c'}}}
  252. key = a.b
  253. return c
  254. '''
  255. if key == '':
  256. pass
  257. elif (not (key and Yedit.valid_key(key, sep)) and
  258. isinstance(data, (list, dict))):
  259. return None
  260. key_indexes = Yedit.parse_key(key, sep)
  261. for arr_ind, dict_key in key_indexes:
  262. if dict_key and isinstance(data, dict):
  263. data = data.get(dict_key)
  264. elif (arr_ind and isinstance(data, list) and
  265. int(arr_ind) <= len(data) - 1):
  266. data = data[int(arr_ind)]
  267. else:
  268. return None
  269. return data
  270. @staticmethod
  271. def _write(filename, contents):
  272. ''' Actually write the file contents to disk. This helps with mocking. '''
  273. tmp_filename = filename + '.yedit'
  274. with open(tmp_filename, 'w') as yfd:
  275. yfd.write(contents)
  276. os.rename(tmp_filename, filename)
  277. def write(self):
  278. ''' write to file '''
  279. if not self.filename:
  280. raise YeditException('Please specify a filename.')
  281. if self.backup and self.file_exists():
  282. shutil.copy(self.filename, self.filename + '.orig')
  283. # Try to set format attributes if supported
  284. try:
  285. self.yaml_dict.fa.set_block_style()
  286. except AttributeError:
  287. pass
  288. # Try to use RoundTripDumper if supported.
  289. try:
  290. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  291. except AttributeError:
  292. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  293. return (True, self.yaml_dict)
  294. def read(self):
  295. ''' read from file '''
  296. # check if it exists
  297. if self.filename is None or not self.file_exists():
  298. return None
  299. contents = None
  300. with open(self.filename) as yfd:
  301. contents = yfd.read()
  302. return contents
  303. def file_exists(self):
  304. ''' return whether file exists '''
  305. if os.path.exists(self.filename):
  306. return True
  307. return False
  308. def load(self, content_type='yaml'):
  309. ''' return yaml file '''
  310. contents = self.read()
  311. if not contents and not self.content:
  312. return None
  313. if self.content:
  314. if isinstance(self.content, dict):
  315. self.yaml_dict = self.content
  316. return self.yaml_dict
  317. elif isinstance(self.content, str):
  318. contents = self.content
  319. # check if it is yaml
  320. try:
  321. if content_type == 'yaml' and contents:
  322. # Try to set format attributes if supported
  323. try:
  324. self.yaml_dict.fa.set_block_style()
  325. except AttributeError:
  326. pass
  327. # Try to use RoundTripLoader if supported.
  328. try:
  329. self.yaml_dict = yaml.safe_load(contents, yaml.RoundTripLoader)
  330. except AttributeError:
  331. self.yaml_dict = yaml.safe_load(contents)
  332. # Try to set format attributes if supported
  333. try:
  334. self.yaml_dict.fa.set_block_style()
  335. except AttributeError:
  336. pass
  337. elif content_type == 'json' and contents:
  338. self.yaml_dict = json.loads(contents)
  339. except yaml.YAMLError as err:
  340. # Error loading yaml or json
  341. raise YeditException('Problem with loading yaml file. {}'.format(err))
  342. return self.yaml_dict
  343. def get(self, key):
  344. ''' get a specified key'''
  345. try:
  346. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  347. except KeyError:
  348. entry = None
  349. return entry
  350. def pop(self, path, key_or_item):
  351. ''' remove a key, value pair from a dict or an item for a list'''
  352. try:
  353. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  354. except KeyError:
  355. entry = None
  356. if entry is None:
  357. return (False, self.yaml_dict)
  358. if isinstance(entry, dict):
  359. # AUDIT:maybe-no-member makes sense due to fuzzy types
  360. # pylint: disable=maybe-no-member
  361. if key_or_item in entry:
  362. entry.pop(key_or_item)
  363. return (True, self.yaml_dict)
  364. return (False, self.yaml_dict)
  365. elif isinstance(entry, list):
  366. # AUDIT:maybe-no-member makes sense due to fuzzy types
  367. # pylint: disable=maybe-no-member
  368. ind = None
  369. try:
  370. ind = entry.index(key_or_item)
  371. except ValueError:
  372. return (False, self.yaml_dict)
  373. entry.pop(ind)
  374. return (True, self.yaml_dict)
  375. return (False, self.yaml_dict)
  376. def delete(self, path):
  377. ''' remove path from a dict'''
  378. try:
  379. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  380. except KeyError:
  381. entry = None
  382. if entry is None:
  383. return (False, self.yaml_dict)
  384. result = Yedit.remove_entry(self.yaml_dict, path, self.separator)
  385. if not result:
  386. return (False, self.yaml_dict)
  387. return (True, self.yaml_dict)
  388. def exists(self, path, value):
  389. ''' check if value exists at path'''
  390. try:
  391. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  392. except KeyError:
  393. entry = None
  394. if isinstance(entry, list):
  395. if value in entry:
  396. return True
  397. return False
  398. elif isinstance(entry, dict):
  399. if isinstance(value, dict):
  400. rval = False
  401. for key, val in value.items():
  402. if entry[key] != val:
  403. rval = False
  404. break
  405. else:
  406. rval = True
  407. return rval
  408. return value in entry
  409. return entry == value
  410. def append(self, path, value):
  411. '''append value to a list'''
  412. try:
  413. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  414. except KeyError:
  415. entry = None
  416. if entry is None:
  417. self.put(path, [])
  418. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  419. if not isinstance(entry, list):
  420. return (False, self.yaml_dict)
  421. # AUDIT:maybe-no-member makes sense due to loading data from
  422. # a serialized format.
  423. # pylint: disable=maybe-no-member
  424. entry.append(value)
  425. return (True, self.yaml_dict)
  426. # pylint: disable=too-many-arguments
  427. def update(self, path, value, index=None, curr_value=None):
  428. ''' put path, value into a dict '''
  429. try:
  430. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  431. except KeyError:
  432. entry = None
  433. if isinstance(entry, dict):
  434. # AUDIT:maybe-no-member makes sense due to fuzzy types
  435. # pylint: disable=maybe-no-member
  436. if not isinstance(value, dict):
  437. raise YeditException('Cannot replace key, value entry in dict with non-dict type. ' +
  438. 'value=[{}] type=[{}]'.format(value, type(value)))
  439. entry.update(value)
  440. return (True, self.yaml_dict)
  441. elif isinstance(entry, list):
  442. # AUDIT:maybe-no-member makes sense due to fuzzy types
  443. # pylint: disable=maybe-no-member
  444. ind = None
  445. if curr_value:
  446. try:
  447. ind = entry.index(curr_value)
  448. except ValueError:
  449. return (False, self.yaml_dict)
  450. elif index is not None:
  451. ind = index
  452. if ind is not None and entry[ind] != value:
  453. entry[ind] = value
  454. return (True, self.yaml_dict)
  455. # see if it exists in the list
  456. try:
  457. ind = entry.index(value)
  458. except ValueError:
  459. # doesn't exist, append it
  460. entry.append(value)
  461. return (True, self.yaml_dict)
  462. # already exists, return
  463. if ind is not None:
  464. return (False, self.yaml_dict)
  465. return (False, self.yaml_dict)
  466. def put(self, path, value):
  467. ''' put path, value into a dict '''
  468. try:
  469. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  470. except KeyError:
  471. entry = None
  472. if entry == value:
  473. return (False, self.yaml_dict)
  474. # deepcopy didn't work
  475. # Try to use ruamel.yaml and fallback to pyyaml
  476. try:
  477. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  478. default_flow_style=False),
  479. yaml.RoundTripLoader)
  480. except AttributeError:
  481. tmp_copy = copy.deepcopy(self.yaml_dict)
  482. # set the format attributes if available
  483. try:
  484. tmp_copy.fa.set_block_style()
  485. except AttributeError:
  486. pass
  487. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  488. if result is None:
  489. return (False, self.yaml_dict)
  490. # When path equals "" it is a special case.
  491. # "" refers to the root of the document
  492. # Only update the root path (entire document) when its a list or dict
  493. if path == '':
  494. if isinstance(result, list) or isinstance(result, dict):
  495. self.yaml_dict = result
  496. return (True, self.yaml_dict)
  497. return (False, self.yaml_dict)
  498. self.yaml_dict = tmp_copy
  499. return (True, self.yaml_dict)
  500. def create(self, path, value):
  501. ''' create a yaml file '''
  502. if not self.file_exists():
  503. # deepcopy didn't work
  504. # Try to use ruamel.yaml and fallback to pyyaml
  505. try:
  506. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  507. default_flow_style=False),
  508. yaml.RoundTripLoader)
  509. except AttributeError:
  510. tmp_copy = copy.deepcopy(self.yaml_dict)
  511. # set the format attributes if available
  512. try:
  513. tmp_copy.fa.set_block_style()
  514. except AttributeError:
  515. pass
  516. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  517. if result is not None:
  518. self.yaml_dict = tmp_copy
  519. return (True, self.yaml_dict)
  520. return (False, self.yaml_dict)
  521. @staticmethod
  522. def get_curr_value(invalue, val_type):
  523. '''return the current value'''
  524. if invalue is None:
  525. return None
  526. curr_value = invalue
  527. if val_type == 'yaml':
  528. curr_value = yaml.load(invalue)
  529. elif val_type == 'json':
  530. curr_value = json.loads(invalue)
  531. return curr_value
  532. @staticmethod
  533. def parse_value(inc_value, vtype=''):
  534. '''determine value type passed'''
  535. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  536. 'on', 'On', 'ON', ]
  537. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  538. 'off', 'Off', 'OFF']
  539. # It came in as a string but you didn't specify value_type as string
  540. # we will convert to bool if it matches any of the above cases
  541. if isinstance(inc_value, str) and 'bool' in vtype:
  542. if inc_value not in true_bools and inc_value not in false_bools:
  543. raise YeditException('Not a boolean type. str=[{}] vtype=[{}]'.format(inc_value, vtype))
  544. elif isinstance(inc_value, bool) and 'str' in vtype:
  545. inc_value = str(inc_value)
  546. # There is a special case where '' will turn into None after yaml loading it so skip
  547. if isinstance(inc_value, str) and inc_value == '':
  548. pass
  549. # If vtype is not str then go ahead and attempt to yaml load it.
  550. elif isinstance(inc_value, str) and 'str' not in vtype:
  551. try:
  552. inc_value = yaml.safe_load(inc_value)
  553. except Exception:
  554. raise YeditException('Could not determine type of incoming value. ' +
  555. 'value=[{}] vtype=[{}]'.format(type(inc_value), vtype))
  556. return inc_value
  557. @staticmethod
  558. def process_edits(edits, yamlfile):
  559. '''run through a list of edits and process them one-by-one'''
  560. results = []
  561. for edit in edits:
  562. value = Yedit.parse_value(edit['value'], edit.get('value_type', ''))
  563. if edit.get('action') == 'update':
  564. # pylint: disable=line-too-long
  565. curr_value = Yedit.get_curr_value(
  566. Yedit.parse_value(edit.get('curr_value')),
  567. edit.get('curr_value_format'))
  568. rval = yamlfile.update(edit['key'],
  569. value,
  570. edit.get('index'),
  571. curr_value)
  572. elif edit.get('action') == 'append':
  573. rval = yamlfile.append(edit['key'], value)
  574. else:
  575. rval = yamlfile.put(edit['key'], value)
  576. if rval[0]:
  577. results.append({'key': edit['key'], 'edit': rval[1]})
  578. return {'changed': len(results) > 0, 'results': results}
  579. # pylint: disable=too-many-return-statements,too-many-branches
  580. @staticmethod
  581. def run_ansible(params):
  582. '''perform the idempotent crud operations'''
  583. yamlfile = Yedit(filename=params['src'],
  584. backup=params['backup'],
  585. separator=params['separator'])
  586. state = params['state']
  587. if params['src']:
  588. rval = yamlfile.load()
  589. if yamlfile.yaml_dict is None and state != 'present':
  590. return {'failed': True,
  591. 'msg': 'Error opening file [{}]. Verify that the '.format(params['src']) +
  592. 'file exists, that it is has correct permissions, and is valid yaml.'}
  593. if state == 'list':
  594. if params['content']:
  595. content = Yedit.parse_value(params['content'], params['content_type'])
  596. yamlfile.yaml_dict = content
  597. if params['key']:
  598. rval = yamlfile.get(params['key']) or {}
  599. return {'changed': False, 'result': rval, 'state': state}
  600. elif state == 'absent':
  601. if params['content']:
  602. content = Yedit.parse_value(params['content'], params['content_type'])
  603. yamlfile.yaml_dict = content
  604. if params['update']:
  605. rval = yamlfile.pop(params['key'], params['value'])
  606. else:
  607. rval = yamlfile.delete(params['key'])
  608. if rval[0] and params['src']:
  609. yamlfile.write()
  610. return {'changed': rval[0], 'result': rval[1], 'state': state}
  611. elif state == 'present':
  612. # check if content is different than what is in the file
  613. if params['content']:
  614. content = Yedit.parse_value(params['content'], params['content_type'])
  615. # We had no edits to make and the contents are the same
  616. if yamlfile.yaml_dict == content and \
  617. params['value'] is None:
  618. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  619. yamlfile.yaml_dict = content
  620. # If we were passed a key, value then
  621. # we enapsulate it in a list and process it
  622. # Key, Value passed to the module : Converted to Edits list #
  623. edits = []
  624. _edit = {}
  625. if params['value'] is not None:
  626. _edit['value'] = params['value']
  627. _edit['value_type'] = params['value_type']
  628. _edit['key'] = params['key']
  629. if params['update']:
  630. _edit['action'] = 'update'
  631. _edit['curr_value'] = params['curr_value']
  632. _edit['curr_value_format'] = params['curr_value_format']
  633. _edit['index'] = params['index']
  634. elif params['append']:
  635. _edit['action'] = 'append'
  636. edits.append(_edit)
  637. elif params['edits'] is not None:
  638. edits = params['edits']
  639. if edits:
  640. results = Yedit.process_edits(edits, yamlfile)
  641. # if there were changes and a src provided to us we need to write
  642. if results['changed'] and params['src']:
  643. yamlfile.write()
  644. return {'changed': results['changed'], 'result': results['results'], 'state': state}
  645. # no edits to make
  646. if params['src']:
  647. # pylint: disable=redefined-variable-type
  648. rval = yamlfile.write()
  649. return {'changed': rval[0],
  650. 'result': rval[1],
  651. 'state': state}
  652. # We were passed content but no src, key or value, or edits. Return contents in memory
  653. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  654. return {'failed': True, 'msg': 'Unkown state passed'}
  655. # -*- -*- -*- End included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  656. # -*- -*- -*- Begin included fragment: lib/base.py -*- -*- -*-
  657. # pylint: disable=too-many-lines
  658. # noqa: E301,E302,E303,T001
  659. class OpenShiftCLIError(Exception):
  660. '''Exception class for openshiftcli'''
  661. pass
  662. ADDITIONAL_PATH_LOOKUPS = ['/usr/local/bin', os.path.expanduser('~/bin')]
  663. def locate_oc_binary():
  664. ''' Find and return oc binary file '''
  665. # https://github.com/openshift/openshift-ansible/issues/3410
  666. # oc can be in /usr/local/bin in some cases, but that may not
  667. # be in $PATH due to ansible/sudo
  668. paths = os.environ.get("PATH", os.defpath).split(os.pathsep) + ADDITIONAL_PATH_LOOKUPS
  669. oc_binary = 'oc'
  670. # Use shutil.which if it is available, otherwise fallback to a naive path search
  671. try:
  672. which_result = shutil.which(oc_binary, path=os.pathsep.join(paths))
  673. if which_result is not None:
  674. oc_binary = which_result
  675. except AttributeError:
  676. for path in paths:
  677. if os.path.exists(os.path.join(path, oc_binary)):
  678. oc_binary = os.path.join(path, oc_binary)
  679. break
  680. return oc_binary
  681. # pylint: disable=too-few-public-methods
  682. class OpenShiftCLI(object):
  683. ''' Class to wrap the command line tools '''
  684. def __init__(self,
  685. namespace,
  686. kubeconfig='/etc/origin/master/admin.kubeconfig',
  687. verbose=False,
  688. all_namespaces=False):
  689. ''' Constructor for OpenshiftCLI '''
  690. self.namespace = namespace
  691. self.verbose = verbose
  692. self.kubeconfig = Utils.create_tmpfile_copy(kubeconfig)
  693. self.all_namespaces = all_namespaces
  694. self.oc_binary = locate_oc_binary()
  695. # Pylint allows only 5 arguments to be passed.
  696. # pylint: disable=too-many-arguments
  697. def _replace_content(self, resource, rname, content, force=False, sep='.'):
  698. ''' replace the current object with the content '''
  699. res = self._get(resource, rname)
  700. if not res['results']:
  701. return res
  702. fname = Utils.create_tmpfile(rname + '-')
  703. yed = Yedit(fname, res['results'][0], separator=sep)
  704. changes = []
  705. for key, value in content.items():
  706. changes.append(yed.put(key, value))
  707. if any([change[0] for change in changes]):
  708. yed.write()
  709. atexit.register(Utils.cleanup, [fname])
  710. return self._replace(fname, force)
  711. return {'returncode': 0, 'updated': False}
  712. def _replace(self, fname, force=False):
  713. '''replace the current object with oc replace'''
  714. cmd = ['replace', '-f', fname]
  715. if force:
  716. cmd.append('--force')
  717. return self.openshift_cmd(cmd)
  718. def _create_from_content(self, rname, content):
  719. '''create a temporary file and then call oc create on it'''
  720. fname = Utils.create_tmpfile(rname + '-')
  721. yed = Yedit(fname, content=content)
  722. yed.write()
  723. atexit.register(Utils.cleanup, [fname])
  724. return self._create(fname)
  725. def _create(self, fname):
  726. '''call oc create on a filename'''
  727. return self.openshift_cmd(['create', '-f', fname])
  728. def _delete(self, resource, name=None, selector=None):
  729. '''call oc delete on a resource'''
  730. cmd = ['delete', resource]
  731. if selector is not None:
  732. cmd.append('--selector={}'.format(selector))
  733. elif name is not None:
  734. cmd.append(name)
  735. else:
  736. raise OpenShiftCLIError('Either name or selector is required when calling delete.')
  737. return self.openshift_cmd(cmd)
  738. def _process(self, template_name, create=False, params=None, template_data=None): # noqa: E501
  739. '''process a template
  740. template_name: the name of the template to process
  741. create: whether to send to oc create after processing
  742. params: the parameters for the template
  743. template_data: the incoming template's data; instead of a file
  744. '''
  745. cmd = ['process']
  746. if template_data:
  747. cmd.extend(['-f', '-'])
  748. else:
  749. cmd.append(template_name)
  750. if params:
  751. param_str = ["{}={}".format(key, value) for key, value in params.items()]
  752. cmd.append('-v')
  753. cmd.extend(param_str)
  754. results = self.openshift_cmd(cmd, output=True, input_data=template_data)
  755. if results['returncode'] != 0 or not create:
  756. return results
  757. fname = Utils.create_tmpfile(template_name + '-')
  758. yed = Yedit(fname, results['results'])
  759. yed.write()
  760. atexit.register(Utils.cleanup, [fname])
  761. return self.openshift_cmd(['create', '-f', fname])
  762. def _get(self, resource, name=None, selector=None):
  763. '''return a resource by name '''
  764. cmd = ['get', resource]
  765. if selector is not None:
  766. cmd.append('--selector={}'.format(selector))
  767. elif name is not None:
  768. cmd.append(name)
  769. cmd.extend(['-o', 'json'])
  770. rval = self.openshift_cmd(cmd, output=True)
  771. # Ensure results are retuned in an array
  772. if 'items' in rval:
  773. rval['results'] = rval['items']
  774. elif not isinstance(rval['results'], list):
  775. rval['results'] = [rval['results']]
  776. return rval
  777. def _schedulable(self, node=None, selector=None, schedulable=True):
  778. ''' perform oadm manage-node scheduable '''
  779. cmd = ['manage-node']
  780. if node:
  781. cmd.extend(node)
  782. else:
  783. cmd.append('--selector={}'.format(selector))
  784. cmd.append('--schedulable={}'.format(schedulable))
  785. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  786. def _list_pods(self, node=None, selector=None, pod_selector=None):
  787. ''' perform oadm list pods
  788. node: the node in which to list pods
  789. selector: the label selector filter if provided
  790. pod_selector: the pod selector filter if provided
  791. '''
  792. cmd = ['manage-node']
  793. if node:
  794. cmd.extend(node)
  795. else:
  796. cmd.append('--selector={}'.format(selector))
  797. if pod_selector:
  798. cmd.append('--pod-selector={}'.format(pod_selector))
  799. cmd.extend(['--list-pods', '-o', 'json'])
  800. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  801. # pylint: disable=too-many-arguments
  802. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  803. ''' perform oadm manage-node evacuate '''
  804. cmd = ['manage-node']
  805. if node:
  806. cmd.extend(node)
  807. else:
  808. cmd.append('--selector={}'.format(selector))
  809. if dry_run:
  810. cmd.append('--dry-run')
  811. if pod_selector:
  812. cmd.append('--pod-selector={}'.format(pod_selector))
  813. if grace_period:
  814. cmd.append('--grace-period={}'.format(int(grace_period)))
  815. if force:
  816. cmd.append('--force')
  817. cmd.append('--evacuate')
  818. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  819. def _version(self):
  820. ''' return the openshift version'''
  821. return self.openshift_cmd(['version'], output=True, output_type='raw')
  822. def _import_image(self, url=None, name=None, tag=None):
  823. ''' perform image import '''
  824. cmd = ['import-image']
  825. image = '{0}'.format(name)
  826. if tag:
  827. image += ':{0}'.format(tag)
  828. cmd.append(image)
  829. if url:
  830. cmd.append('--from={0}/{1}'.format(url, image))
  831. cmd.append('-n{0}'.format(self.namespace))
  832. cmd.append('--confirm')
  833. return self.openshift_cmd(cmd)
  834. def _run(self, cmds, input_data):
  835. ''' Actually executes the command. This makes mocking easier. '''
  836. curr_env = os.environ.copy()
  837. curr_env.update({'KUBECONFIG': self.kubeconfig})
  838. proc = subprocess.Popen(cmds,
  839. stdin=subprocess.PIPE,
  840. stdout=subprocess.PIPE,
  841. stderr=subprocess.PIPE,
  842. env=curr_env)
  843. stdout, stderr = proc.communicate(input_data)
  844. return proc.returncode, stdout.decode(), stderr.decode()
  845. # pylint: disable=too-many-arguments,too-many-branches
  846. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  847. '''Base command for oc '''
  848. cmds = [self.oc_binary]
  849. if oadm:
  850. cmds.append('adm')
  851. cmds.extend(cmd)
  852. if self.all_namespaces:
  853. cmds.extend(['--all-namespaces'])
  854. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  855. cmds.extend(['-n', self.namespace])
  856. rval = {}
  857. results = ''
  858. err = None
  859. if self.verbose:
  860. print(' '.join(cmds))
  861. try:
  862. returncode, stdout, stderr = self._run(cmds, input_data)
  863. except OSError as ex:
  864. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  865. rval = {"returncode": returncode,
  866. "results": results,
  867. "cmd": ' '.join(cmds)}
  868. if returncode == 0:
  869. if output:
  870. if output_type == 'json':
  871. try:
  872. rval['results'] = json.loads(stdout)
  873. except ValueError as verr:
  874. if "No JSON object could be decoded" in verr.args:
  875. err = verr.args
  876. elif output_type == 'raw':
  877. rval['results'] = stdout
  878. if self.verbose:
  879. print("STDOUT: {0}".format(stdout))
  880. print("STDERR: {0}".format(stderr))
  881. if err:
  882. rval.update({"err": err,
  883. "stderr": stderr,
  884. "stdout": stdout,
  885. "cmd": cmds})
  886. else:
  887. rval.update({"stderr": stderr,
  888. "stdout": stdout,
  889. "results": {}})
  890. return rval
  891. class Utils(object): # pragma: no cover
  892. ''' utilities for openshiftcli modules '''
  893. @staticmethod
  894. def _write(filename, contents):
  895. ''' Actually write the file contents to disk. This helps with mocking. '''
  896. with open(filename, 'w') as sfd:
  897. sfd.write(contents)
  898. @staticmethod
  899. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  900. ''' create a file in tmp with name and contents'''
  901. tmp = Utils.create_tmpfile(prefix=rname)
  902. if ftype == 'yaml':
  903. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  904. # pylint: disable=no-member
  905. if hasattr(yaml, 'RoundTripDumper'):
  906. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  907. else:
  908. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  909. elif ftype == 'json':
  910. Utils._write(tmp, json.dumps(data))
  911. else:
  912. Utils._write(tmp, data)
  913. # Register cleanup when module is done
  914. atexit.register(Utils.cleanup, [tmp])
  915. return tmp
  916. @staticmethod
  917. def create_tmpfile_copy(inc_file):
  918. '''create a temporary copy of a file'''
  919. tmpfile = Utils.create_tmpfile('lib_openshift-')
  920. Utils._write(tmpfile, open(inc_file).read())
  921. # Cleanup the tmpfile
  922. atexit.register(Utils.cleanup, [tmpfile])
  923. return tmpfile
  924. @staticmethod
  925. def create_tmpfile(prefix='tmp'):
  926. ''' Generates and returns a temporary file name '''
  927. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  928. return tmp.name
  929. @staticmethod
  930. def create_tmp_files_from_contents(content, content_type=None):
  931. '''Turn an array of dict: filename, content into a files array'''
  932. if not isinstance(content, list):
  933. content = [content]
  934. files = []
  935. for item in content:
  936. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  937. item['data'],
  938. ftype=content_type)
  939. files.append({'name': os.path.basename(item['path']),
  940. 'path': path})
  941. return files
  942. @staticmethod
  943. def cleanup(files):
  944. '''Clean up on exit '''
  945. for sfile in files:
  946. if os.path.exists(sfile):
  947. if os.path.isdir(sfile):
  948. shutil.rmtree(sfile)
  949. elif os.path.isfile(sfile):
  950. os.remove(sfile)
  951. @staticmethod
  952. def exists(results, _name):
  953. ''' Check to see if the results include the name '''
  954. if not results:
  955. return False
  956. if Utils.find_result(results, _name):
  957. return True
  958. return False
  959. @staticmethod
  960. def find_result(results, _name):
  961. ''' Find the specified result by name'''
  962. rval = None
  963. for result in results:
  964. if 'metadata' in result and result['metadata']['name'] == _name:
  965. rval = result
  966. break
  967. return rval
  968. @staticmethod
  969. def get_resource_file(sfile, sfile_type='yaml'):
  970. ''' return the service file '''
  971. contents = None
  972. with open(sfile) as sfd:
  973. contents = sfd.read()
  974. if sfile_type == 'yaml':
  975. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  976. # pylint: disable=no-member
  977. if hasattr(yaml, 'RoundTripLoader'):
  978. contents = yaml.load(contents, yaml.RoundTripLoader)
  979. else:
  980. contents = yaml.safe_load(contents)
  981. elif sfile_type == 'json':
  982. contents = json.loads(contents)
  983. return contents
  984. @staticmethod
  985. def filter_versions(stdout):
  986. ''' filter the oc version output '''
  987. version_dict = {}
  988. version_search = ['oc', 'openshift', 'kubernetes']
  989. for line in stdout.strip().split('\n'):
  990. for term in version_search:
  991. if not line:
  992. continue
  993. if line.startswith(term):
  994. version_dict[term] = line.split()[-1]
  995. # horrible hack to get openshift version in Openshift 3.2
  996. # By default "oc version in 3.2 does not return an "openshift" version
  997. if "openshift" not in version_dict:
  998. version_dict["openshift"] = version_dict["oc"]
  999. return version_dict
  1000. @staticmethod
  1001. def add_custom_versions(versions):
  1002. ''' create custom versions strings '''
  1003. versions_dict = {}
  1004. for tech, version in versions.items():
  1005. # clean up "-" from version
  1006. if "-" in version:
  1007. version = version.split("-")[0]
  1008. if version.startswith('v'):
  1009. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1010. # "v3.3.0.33" is what we have, we want "3.3"
  1011. versions_dict[tech + '_short'] = version[1:4]
  1012. return versions_dict
  1013. @staticmethod
  1014. def openshift_installed():
  1015. ''' check if openshift is installed '''
  1016. import yum
  1017. yum_base = yum.YumBase()
  1018. if yum_base.rpmdb.searchNevra(name='atomic-openshift'):
  1019. return True
  1020. return False
  1021. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1022. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1023. @staticmethod
  1024. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1025. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1026. # Currently these values are autogenerated and we do not need to check them
  1027. skip = ['metadata', 'status']
  1028. if skip_keys:
  1029. skip.extend(skip_keys)
  1030. for key, value in result_def.items():
  1031. if key in skip:
  1032. continue
  1033. # Both are lists
  1034. if isinstance(value, list):
  1035. if key not in user_def:
  1036. if debug:
  1037. print('User data does not have key [%s]' % key)
  1038. print('User data: %s' % user_def)
  1039. return False
  1040. if not isinstance(user_def[key], list):
  1041. if debug:
  1042. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1043. return False
  1044. if len(user_def[key]) != len(value):
  1045. if debug:
  1046. print("List lengths are not equal.")
  1047. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1048. print("user_def: %s" % user_def[key])
  1049. print("value: %s" % value)
  1050. return False
  1051. for values in zip(user_def[key], value):
  1052. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1053. if debug:
  1054. print('sending list - list')
  1055. print(type(values[0]))
  1056. print(type(values[1]))
  1057. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1058. if not result:
  1059. print('list compare returned false')
  1060. return False
  1061. elif value != user_def[key]:
  1062. if debug:
  1063. print('value should be identical')
  1064. print(user_def[key])
  1065. print(value)
  1066. return False
  1067. # recurse on a dictionary
  1068. elif isinstance(value, dict):
  1069. if key not in user_def:
  1070. if debug:
  1071. print("user_def does not have key [%s]" % key)
  1072. return False
  1073. if not isinstance(user_def[key], dict):
  1074. if debug:
  1075. print("dict returned false: not instance of dict")
  1076. return False
  1077. # before passing ensure keys match
  1078. api_values = set(value.keys()) - set(skip)
  1079. user_values = set(user_def[key].keys()) - set(skip)
  1080. if api_values != user_values:
  1081. if debug:
  1082. print("keys are not equal in dict")
  1083. print(user_values)
  1084. print(api_values)
  1085. return False
  1086. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1087. if not result:
  1088. if debug:
  1089. print("dict returned false")
  1090. print(result)
  1091. return False
  1092. # Verify each key, value pair is the same
  1093. else:
  1094. if key not in user_def or value != user_def[key]:
  1095. if debug:
  1096. print("value not equal; user_def does not have key")
  1097. print(key)
  1098. print(value)
  1099. if key in user_def:
  1100. print(user_def[key])
  1101. return False
  1102. if debug:
  1103. print('returning true')
  1104. return True
  1105. class OpenShiftCLIConfig(object):
  1106. '''Generic Config'''
  1107. def __init__(self, rname, namespace, kubeconfig, options):
  1108. self.kubeconfig = kubeconfig
  1109. self.name = rname
  1110. self.namespace = namespace
  1111. self._options = options
  1112. @property
  1113. def config_options(self):
  1114. ''' return config options '''
  1115. return self._options
  1116. def to_option_list(self):
  1117. '''return all options as a string'''
  1118. return self.stringify()
  1119. def stringify(self):
  1120. ''' return the options hash as cli params in a string '''
  1121. rval = []
  1122. for key in sorted(self.config_options.keys()):
  1123. data = self.config_options[key]
  1124. if data['include'] \
  1125. and (data['value'] or isinstance(data['value'], int)):
  1126. rval.append('--{}={}'.format(key.replace('_', '-'), data['value']))
  1127. return rval
  1128. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1129. # -*- -*- -*- Begin included fragment: lib/rolebinding.py -*- -*- -*-
  1130. # pylint: disable=too-many-instance-attributes
  1131. class RoleBindingConfig(object):
  1132. ''' Handle rolebinding config '''
  1133. # pylint: disable=too-many-arguments
  1134. def __init__(self,
  1135. name,
  1136. namespace,
  1137. kubeconfig,
  1138. group_names=None,
  1139. role_ref=None,
  1140. subjects=None,
  1141. usernames=None):
  1142. ''' constructor for handling rolebinding options '''
  1143. self.kubeconfig = kubeconfig
  1144. self.name = name
  1145. self.namespace = namespace
  1146. self.group_names = group_names
  1147. self.role_ref = role_ref
  1148. self.subjects = subjects
  1149. self.usernames = usernames
  1150. self.data = {}
  1151. self.create_dict()
  1152. def create_dict(self):
  1153. ''' create a default rolebinding as a dict '''
  1154. self.data['apiVersion'] = 'v1'
  1155. self.data['kind'] = 'RoleBinding'
  1156. self.data['groupNames'] = self.group_names
  1157. self.data['metadata']['name'] = self.name
  1158. self.data['metadata']['namespace'] = self.namespace
  1159. self.data['roleRef'] = self.role_ref
  1160. self.data['subjects'] = self.subjects
  1161. self.data['userNames'] = self.usernames
  1162. # pylint: disable=too-many-instance-attributes,too-many-public-methods
  1163. class RoleBinding(Yedit):
  1164. ''' Class to model a rolebinding openshift object'''
  1165. group_names_path = "groupNames"
  1166. role_ref_path = "roleRef"
  1167. subjects_path = "subjects"
  1168. user_names_path = "userNames"
  1169. kind = 'RoleBinding'
  1170. def __init__(self, content):
  1171. '''RoleBinding constructor'''
  1172. super(RoleBinding, self).__init__(content=content)
  1173. self._subjects = None
  1174. self._role_ref = None
  1175. self._group_names = None
  1176. self._user_names = None
  1177. @property
  1178. def subjects(self):
  1179. ''' subjects property '''
  1180. if self._subjects is None:
  1181. self._subjects = self.get_subjects()
  1182. return self._subjects
  1183. @subjects.setter
  1184. def subjects(self, data):
  1185. ''' subjects property setter'''
  1186. self._subjects = data
  1187. @property
  1188. def role_ref(self):
  1189. ''' role_ref property '''
  1190. if self._role_ref is None:
  1191. self._role_ref = self.get_role_ref()
  1192. return self._role_ref
  1193. @role_ref.setter
  1194. def role_ref(self, data):
  1195. ''' role_ref property setter'''
  1196. self._role_ref = data
  1197. @property
  1198. def group_names(self):
  1199. ''' group_names property '''
  1200. if self._group_names is None:
  1201. self._group_names = self.get_group_names()
  1202. return self._group_names
  1203. @group_names.setter
  1204. def group_names(self, data):
  1205. ''' group_names property setter'''
  1206. self._group_names = data
  1207. @property
  1208. def user_names(self):
  1209. ''' user_names property '''
  1210. if self._user_names is None:
  1211. self._user_names = self.get_user_names()
  1212. return self._user_names
  1213. @user_names.setter
  1214. def user_names(self, data):
  1215. ''' user_names property setter'''
  1216. self._user_names = data
  1217. def get_group_names(self):
  1218. ''' return groupNames '''
  1219. return self.get(RoleBinding.group_names_path) or []
  1220. def get_user_names(self):
  1221. ''' return usernames '''
  1222. return self.get(RoleBinding.user_names_path) or []
  1223. def get_role_ref(self):
  1224. ''' return role_ref '''
  1225. return self.get(RoleBinding.role_ref_path) or {}
  1226. def get_subjects(self):
  1227. ''' return subjects '''
  1228. return self.get(RoleBinding.subjects_path) or []
  1229. #### ADD #####
  1230. def add_subject(self, inc_subject):
  1231. ''' add a subject '''
  1232. if self.subjects:
  1233. # pylint: disable=no-member
  1234. self.subjects.append(inc_subject)
  1235. else:
  1236. self.put(RoleBinding.subjects_path, [inc_subject])
  1237. return True
  1238. def add_role_ref(self, inc_role_ref):
  1239. ''' add a role_ref '''
  1240. if not self.role_ref:
  1241. self.put(RoleBinding.role_ref_path, {"name": inc_role_ref})
  1242. return True
  1243. return False
  1244. def add_group_names(self, inc_group_names):
  1245. ''' add a group_names '''
  1246. if self.group_names:
  1247. # pylint: disable=no-member
  1248. self.group_names.append(inc_group_names)
  1249. else:
  1250. self.put(RoleBinding.group_names_path, [inc_group_names])
  1251. return True
  1252. def add_user_name(self, inc_user_name):
  1253. ''' add a username '''
  1254. if self.user_names:
  1255. # pylint: disable=no-member
  1256. self.user_names.append(inc_user_name)
  1257. else:
  1258. self.put(RoleBinding.user_names_path, [inc_user_name])
  1259. return True
  1260. #### /ADD #####
  1261. #### Remove #####
  1262. def remove_subject(self, inc_subject):
  1263. ''' remove a subject '''
  1264. try:
  1265. # pylint: disable=no-member
  1266. self.subjects.remove(inc_subject)
  1267. except ValueError as _:
  1268. return False
  1269. return True
  1270. def remove_role_ref(self, inc_role_ref):
  1271. ''' remove a role_ref '''
  1272. if self.role_ref and self.role_ref['name'] == inc_role_ref:
  1273. del self.role_ref['name']
  1274. return True
  1275. return False
  1276. def remove_group_name(self, inc_group_name):
  1277. ''' remove a groupname '''
  1278. try:
  1279. # pylint: disable=no-member
  1280. self.group_names.remove(inc_group_name)
  1281. except ValueError as _:
  1282. return False
  1283. return True
  1284. def remove_user_name(self, inc_user_name):
  1285. ''' remove a username '''
  1286. try:
  1287. # pylint: disable=no-member
  1288. self.user_names.remove(inc_user_name)
  1289. except ValueError as _:
  1290. return False
  1291. return True
  1292. #### /REMOVE #####
  1293. #### UPDATE #####
  1294. def update_subject(self, inc_subject):
  1295. ''' update a subject '''
  1296. try:
  1297. # pylint: disable=no-member
  1298. index = self.subjects.index(inc_subject)
  1299. except ValueError as _:
  1300. return self.add_subject(inc_subject)
  1301. self.subjects[index] = inc_subject
  1302. return True
  1303. def update_group_name(self, inc_group_name):
  1304. ''' update a groupname '''
  1305. try:
  1306. # pylint: disable=no-member
  1307. index = self.group_names.index(inc_group_name)
  1308. except ValueError as _:
  1309. return self.add_group_names(inc_group_name)
  1310. self.group_names[index] = inc_group_name
  1311. return True
  1312. def update_user_name(self, inc_user_name):
  1313. ''' update a username '''
  1314. try:
  1315. # pylint: disable=no-member
  1316. index = self.user_names.index(inc_user_name)
  1317. except ValueError as _:
  1318. return self.add_user_name(inc_user_name)
  1319. self.user_names[index] = inc_user_name
  1320. return True
  1321. def update_role_ref(self, inc_role_ref):
  1322. ''' update a role_ref '''
  1323. self.role_ref['name'] = inc_role_ref
  1324. return True
  1325. #### /UPDATE #####
  1326. #### FIND ####
  1327. def find_subject(self, inc_subject):
  1328. ''' find a subject '''
  1329. index = None
  1330. try:
  1331. # pylint: disable=no-member
  1332. index = self.subjects.index(inc_subject)
  1333. except ValueError as _:
  1334. return index
  1335. return index
  1336. def find_group_name(self, inc_group_name):
  1337. ''' find a group_name '''
  1338. index = None
  1339. try:
  1340. # pylint: disable=no-member
  1341. index = self.group_names.index(inc_group_name)
  1342. except ValueError as _:
  1343. return index
  1344. return index
  1345. def find_user_name(self, inc_user_name):
  1346. ''' find a user_name '''
  1347. index = None
  1348. try:
  1349. # pylint: disable=no-member
  1350. index = self.user_names.index(inc_user_name)
  1351. except ValueError as _:
  1352. return index
  1353. return index
  1354. def find_role_ref(self, inc_role_ref):
  1355. ''' find a user_name '''
  1356. if self.role_ref and self.role_ref['name'] == inc_role_ref['name']:
  1357. return self.role_ref
  1358. return None
  1359. # -*- -*- -*- End included fragment: lib/rolebinding.py -*- -*- -*-
  1360. # -*- -*- -*- Begin included fragment: lib/scc.py -*- -*- -*-
  1361. # pylint: disable=too-many-instance-attributes
  1362. class SecurityContextConstraintsConfig(object):
  1363. ''' Handle scc options '''
  1364. # pylint: disable=too-many-arguments
  1365. def __init__(self,
  1366. sname,
  1367. kubeconfig,
  1368. options=None,
  1369. fs_group='MustRunAs',
  1370. default_add_capabilities=None,
  1371. groups=None,
  1372. priority=None,
  1373. required_drop_capabilities=None,
  1374. run_as_user='MustRunAsRange',
  1375. se_linux_context='MustRunAs',
  1376. supplemental_groups='RunAsAny',
  1377. users=None,
  1378. annotations=None):
  1379. ''' constructor for handling scc options '''
  1380. self.kubeconfig = kubeconfig
  1381. self.name = sname
  1382. self.options = options
  1383. self.fs_group = fs_group
  1384. self.default_add_capabilities = default_add_capabilities
  1385. self.groups = groups
  1386. self.priority = priority
  1387. self.required_drop_capabilities = required_drop_capabilities
  1388. self.run_as_user = run_as_user
  1389. self.se_linux_context = se_linux_context
  1390. self.supplemental_groups = supplemental_groups
  1391. self.users = users
  1392. self.annotations = annotations
  1393. self.data = {}
  1394. self.create_dict()
  1395. def create_dict(self):
  1396. ''' assign the correct properties for a scc dict '''
  1397. # allow options
  1398. if self.options:
  1399. for key, value in self.options.items():
  1400. self.data[key] = value
  1401. else:
  1402. self.data['allowHostDirVolumePlugin'] = False
  1403. self.data['allowHostIPC'] = False
  1404. self.data['allowHostNetwork'] = False
  1405. self.data['allowHostPID'] = False
  1406. self.data['allowHostPorts'] = False
  1407. self.data['allowPrivilegedContainer'] = False
  1408. self.data['allowedCapabilities'] = None
  1409. # version
  1410. self.data['apiVersion'] = 'v1'
  1411. # kind
  1412. self.data['kind'] = 'SecurityContextConstraints'
  1413. # defaultAddCapabilities
  1414. self.data['defaultAddCapabilities'] = self.default_add_capabilities
  1415. # fsGroup
  1416. self.data['fsGroup']['type'] = self.fs_group
  1417. # groups
  1418. self.data['groups'] = []
  1419. if self.groups:
  1420. self.data['groups'] = self.groups
  1421. # metadata
  1422. self.data['metadata'] = {}
  1423. self.data['metadata']['name'] = self.name
  1424. if self.annotations:
  1425. for key, value in self.annotations.items():
  1426. self.data['metadata'][key] = value
  1427. # priority
  1428. self.data['priority'] = self.priority
  1429. # requiredDropCapabilities
  1430. self.data['requiredDropCapabilities'] = self.required_drop_capabilities
  1431. # runAsUser
  1432. self.data['runAsUser'] = {'type': self.run_as_user}
  1433. # seLinuxContext
  1434. self.data['seLinuxContext'] = {'type': self.se_linux_context}
  1435. # supplementalGroups
  1436. self.data['supplementalGroups'] = {'type': self.supplemental_groups}
  1437. # users
  1438. self.data['users'] = []
  1439. if self.users:
  1440. self.data['users'] = self.users
  1441. # pylint: disable=too-many-instance-attributes,too-many-public-methods,no-member
  1442. class SecurityContextConstraints(Yedit):
  1443. ''' Class to wrap the oc command line tools '''
  1444. default_add_capabilities_path = "defaultAddCapabilities"
  1445. fs_group_path = "fsGroup"
  1446. groups_path = "groups"
  1447. priority_path = "priority"
  1448. required_drop_capabilities_path = "requiredDropCapabilities"
  1449. run_as_user_path = "runAsUser"
  1450. se_linux_context_path = "seLinuxContext"
  1451. supplemental_groups_path = "supplementalGroups"
  1452. users_path = "users"
  1453. kind = 'SecurityContextConstraints'
  1454. def __init__(self, content):
  1455. '''SecurityContextConstraints constructor'''
  1456. super(SecurityContextConstraints, self).__init__(content=content)
  1457. self._users = None
  1458. self._groups = None
  1459. @property
  1460. def users(self):
  1461. ''' users property getter '''
  1462. if self._users is None:
  1463. self._users = self.get_users()
  1464. return self._users
  1465. @property
  1466. def groups(self):
  1467. ''' groups property getter '''
  1468. if self._groups is None:
  1469. self._groups = self.get_groups()
  1470. return self._groups
  1471. @users.setter
  1472. def users(self, data):
  1473. ''' users property setter'''
  1474. self._users = data
  1475. @groups.setter
  1476. def groups(self, data):
  1477. ''' groups property setter'''
  1478. self._groups = data
  1479. def get_users(self):
  1480. '''get scc users'''
  1481. return self.get(SecurityContextConstraints.users_path) or []
  1482. def get_groups(self):
  1483. '''get scc groups'''
  1484. return self.get(SecurityContextConstraints.groups_path) or []
  1485. def add_user(self, inc_user):
  1486. ''' add a user '''
  1487. if self.users:
  1488. self.users.append(inc_user)
  1489. else:
  1490. self.put(SecurityContextConstraints.users_path, [inc_user])
  1491. return True
  1492. def add_group(self, inc_group):
  1493. ''' add a group '''
  1494. if self.groups:
  1495. self.groups.append(inc_group)
  1496. else:
  1497. self.put(SecurityContextConstraints.groups_path, [inc_group])
  1498. return True
  1499. def remove_user(self, inc_user):
  1500. ''' remove a user '''
  1501. try:
  1502. self.users.remove(inc_user)
  1503. except ValueError as _:
  1504. return False
  1505. return True
  1506. def remove_group(self, inc_group):
  1507. ''' remove a group '''
  1508. try:
  1509. self.groups.remove(inc_group)
  1510. except ValueError as _:
  1511. return False
  1512. return True
  1513. def update_user(self, inc_user):
  1514. ''' update a user '''
  1515. try:
  1516. index = self.users.index(inc_user)
  1517. except ValueError as _:
  1518. return self.add_user(inc_user)
  1519. self.users[index] = inc_user
  1520. return True
  1521. def update_group(self, inc_group):
  1522. ''' update a group '''
  1523. try:
  1524. index = self.groups.index(inc_group)
  1525. except ValueError as _:
  1526. return self.add_group(inc_group)
  1527. self.groups[index] = inc_group
  1528. return True
  1529. def find_user(self, inc_user):
  1530. ''' find a user '''
  1531. index = None
  1532. try:
  1533. index = self.users.index(inc_user)
  1534. except ValueError as _:
  1535. return index
  1536. return index
  1537. def find_group(self, inc_group):
  1538. ''' find a group '''
  1539. index = None
  1540. try:
  1541. index = self.groups.index(inc_group)
  1542. except ValueError as _:
  1543. return index
  1544. return index
  1545. # -*- -*- -*- End included fragment: lib/scc.py -*- -*- -*-
  1546. # -*- -*- -*- Begin included fragment: class/oc_adm_policy_user.py -*- -*- -*-
  1547. class PolicyUserException(Exception):
  1548. ''' PolicyUser exception'''
  1549. pass
  1550. class PolicyUserConfig(OpenShiftCLIConfig):
  1551. ''' PolicyUserConfig is a DTO for user related policy. '''
  1552. def __init__(self, namespace, kubeconfig, policy_options):
  1553. super(PolicyUserConfig, self).__init__(policy_options['name']['value'],
  1554. namespace, kubeconfig, policy_options)
  1555. self.kind = self.get_kind()
  1556. self.namespace = namespace
  1557. def get_kind(self):
  1558. ''' return the kind we are working with '''
  1559. if self.config_options['resource_kind']['value'] == 'role':
  1560. return 'rolebinding'
  1561. elif self.config_options['resource_kind']['value'] == 'cluster-role':
  1562. return 'clusterrolebinding'
  1563. elif self.config_options['resource_kind']['value'] == 'scc':
  1564. return 'scc'
  1565. return None
  1566. # pylint: disable=too-many-return-statements
  1567. class PolicyUser(OpenShiftCLI):
  1568. ''' Class to handle attaching policies to users '''
  1569. def __init__(self,
  1570. policy_config,
  1571. verbose=False):
  1572. ''' Constructor for PolicyUser '''
  1573. super(PolicyUser, self).__init__(policy_config.namespace, policy_config.kubeconfig, verbose)
  1574. self.config = policy_config
  1575. self.verbose = verbose
  1576. self._rolebinding = None
  1577. self._scc = None
  1578. self._cluster_policy_bindings = None
  1579. self._policy_bindings = None
  1580. @property
  1581. def policybindings(self):
  1582. if self._policy_bindings is None:
  1583. results = self._get('policybindings', None)
  1584. if results['returncode'] != 0:
  1585. raise OpenShiftCLIError('Could not retrieve policybindings')
  1586. self._policy_bindings = results['results'][0]['items'][0]
  1587. return self._policy_bindings
  1588. @property
  1589. def clusterpolicybindings(self):
  1590. if self._cluster_policy_bindings is None:
  1591. results = self._get('clusterpolicybindings', None)
  1592. if results['returncode'] != 0:
  1593. raise OpenShiftCLIError('Could not retrieve clusterpolicybindings')
  1594. self._cluster_policy_bindings = results['results'][0]['items'][0]
  1595. return self._cluster_policy_bindings
  1596. @property
  1597. def role_binding(self):
  1598. ''' role_binding property '''
  1599. return self._rolebinding
  1600. @role_binding.setter
  1601. def role_binding(self, binding):
  1602. ''' setter for role_binding property '''
  1603. self._rolebinding = binding
  1604. @property
  1605. def security_context_constraint(self):
  1606. ''' security_context_constraint property '''
  1607. return self._scc
  1608. @security_context_constraint.setter
  1609. def security_context_constraint(self, scc):
  1610. ''' setter for security_context_constraint property '''
  1611. self._scc = scc
  1612. def get(self):
  1613. '''fetch the desired kind
  1614. This is only used for scc objects.
  1615. The {cluster}rolebindings happen in exists.
  1616. '''
  1617. resource_name = self.config.config_options['name']['value']
  1618. if resource_name == 'cluster-reader':
  1619. resource_name += 's'
  1620. return self._get(self.config.kind, resource_name)
  1621. def exists_role_binding(self):
  1622. ''' return whether role_binding exists '''
  1623. bindings = None
  1624. if self.config.config_options['resource_kind']['value'] == 'cluster-role':
  1625. bindings = self.clusterpolicybindings
  1626. else:
  1627. bindings = self.policybindings
  1628. if bindings is None:
  1629. return False
  1630. for binding in bindings['roleBindings']:
  1631. _rb = binding['roleBinding']
  1632. if _rb['roleRef']['name'] == self.config.config_options['name']['value'] and \
  1633. _rb['userNames'] is not None and \
  1634. self.config.config_options['user']['value'] in _rb['userNames']:
  1635. self.role_binding = binding
  1636. return True
  1637. return False
  1638. def exists_scc(self):
  1639. ''' return whether scc exists '''
  1640. results = self.get()
  1641. if results['returncode'] == 0:
  1642. self.security_context_constraint = SecurityContextConstraints(results['results'][0])
  1643. if self.security_context_constraint.find_user(self.config.config_options['user']['value']) != None:
  1644. return True
  1645. return False
  1646. return results
  1647. def exists(self):
  1648. '''does the object exist?'''
  1649. if self.config.config_options['resource_kind']['value'] == 'cluster-role':
  1650. return self.exists_role_binding()
  1651. elif self.config.config_options['resource_kind']['value'] == 'role':
  1652. return self.exists_role_binding()
  1653. elif self.config.config_options['resource_kind']['value'] == 'scc':
  1654. return self.exists_scc()
  1655. return False
  1656. def perform(self):
  1657. '''perform action on resource'''
  1658. cmd = ['policy',
  1659. self.config.config_options['action']['value'],
  1660. self.config.config_options['name']['value'],
  1661. self.config.config_options['user']['value']]
  1662. return self.openshift_cmd(cmd, oadm=True)
  1663. @staticmethod
  1664. def run_ansible(params, check_mode):
  1665. '''run the idempotent ansible code'''
  1666. state = params['state']
  1667. action = None
  1668. if state == 'present':
  1669. action = 'add-' + params['resource_kind'] + '-to-user'
  1670. else:
  1671. action = 'remove-' + params['resource_kind'] + '-from-user'
  1672. nconfig = PolicyUserConfig(params['namespace'],
  1673. params['kubeconfig'],
  1674. {'action': {'value': action, 'include': False},
  1675. 'user': {'value': params['user'], 'include': False},
  1676. 'resource_kind': {'value': params['resource_kind'], 'include': False},
  1677. 'name': {'value': params['resource_name'], 'include': False},
  1678. })
  1679. policyuser = PolicyUser(nconfig, params['debug'])
  1680. # Run the oc adm policy user related command
  1681. ########
  1682. # Delete
  1683. ########
  1684. if state == 'absent':
  1685. if not policyuser.exists():
  1686. return {'changed': False, 'state': 'absent'}
  1687. if check_mode:
  1688. return {'changed': False, 'msg': 'CHECK_MODE: would have performed a delete.'}
  1689. api_rval = policyuser.perform()
  1690. if api_rval['returncode'] != 0:
  1691. return {'msg': api_rval}
  1692. return {'changed': True, 'results' : api_rval, state:'absent'}
  1693. if state == 'present':
  1694. ########
  1695. # Create
  1696. ########
  1697. results = policyuser.exists()
  1698. if isinstance(results, dict) and 'returncode' in results and results['returncode'] != 0:
  1699. return {'msg': results}
  1700. if not results:
  1701. if check_mode:
  1702. return {'changed': False, 'msg': 'CHECK_MODE: would have performed a create.'}
  1703. api_rval = policyuser.perform()
  1704. if api_rval['returncode'] != 0:
  1705. return {'msg': api_rval}
  1706. return {'changed': True, 'results': api_rval, state: 'present'}
  1707. return {'changed': False, state: 'present'}
  1708. return {'failed': True, 'changed': False, 'results': 'Unknown state passed. %s' % state, state: 'unknown'}
  1709. # -*- -*- -*- End included fragment: class/oc_adm_policy_user.py -*- -*- -*-
  1710. # -*- -*- -*- Begin included fragment: ansible/oc_adm_policy_user.py -*- -*- -*-
  1711. def main():
  1712. '''
  1713. ansible oc adm module for user policy
  1714. '''
  1715. module = AnsibleModule(
  1716. argument_spec=dict(
  1717. state=dict(default='present', type='str',
  1718. choices=['present', 'absent']),
  1719. debug=dict(default=False, type='bool'),
  1720. resource_name=dict(required=True, type='str'),
  1721. namespace=dict(default='default', type='str'),
  1722. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1723. user=dict(required=True, type='str'),
  1724. resource_kind=dict(required=True, choices=['role', 'cluster-role', 'scc'], type='str'),
  1725. ),
  1726. supports_check_mode=True,
  1727. )
  1728. results = PolicyUser.run_ansible(module.params, module.check_mode)
  1729. if 'failed' in results:
  1730. module.fail_json(**results)
  1731. module.exit_json(**results)
  1732. if __name__ == "__main__":
  1733. main()
  1734. # -*- -*- -*- End included fragment: ansible/oc_adm_policy_user.py -*- -*- -*-