oc_secret.py 59 KB

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