oc_serviceaccount_secret.py 59 KB

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