oc_storageclass.py 57 KB

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