oc_secret.py 58 KB

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