oc_serviceaccount.py 59 KB

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