oc_edit.py 54 KB

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