oc_image.py 53 KB

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