oc_configmap.py 54 KB

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