oc_serviceaccount_secret.py 59 KB

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