oc_secret.py 62 KB

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