oc_edit.py 53 KB

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