oc_serviceaccount_secret.py 59 KB

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