oc_obj.py 59 KB

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