oc_secret.py 59 KB

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