oc_edit.py 52 KB

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