oc_secret.py 61 KB

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