oc_serviceaccount.py 58 KB

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