oc_serviceaccount.py 59 KB

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