oc_serviceaccount.py 60 KB

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