oc_secret.py 60 KB

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