oc_secret.py 60 KB

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