oc_image.py 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572
  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, 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. changes = []
  738. for key, value in content.items():
  739. changes.append(yed.put(key, value))
  740. if any([change[0] for change in changes]):
  741. yed.write()
  742. atexit.register(Utils.cleanup, [fname])
  743. return self._replace(fname, force)
  744. return {'returncode': 0, 'updated': False}
  745. def _replace(self, fname, force=False):
  746. '''replace the current object with oc replace'''
  747. # We are removing the 'resourceVersion' to handle
  748. # a race condition when modifying oc objects
  749. yed = Yedit(fname)
  750. results = yed.delete('metadata.resourceVersion')
  751. if results[0]:
  752. yed.write()
  753. cmd = ['replace', '-f', fname]
  754. if force:
  755. cmd.append('--force')
  756. return self.openshift_cmd(cmd)
  757. def _create_from_content(self, rname, content):
  758. '''create a temporary file and then call oc create on it'''
  759. fname = Utils.create_tmpfile(rname + '-')
  760. yed = Yedit(fname, content=content)
  761. yed.write()
  762. atexit.register(Utils.cleanup, [fname])
  763. return self._create(fname)
  764. def _create(self, fname):
  765. '''call oc create on a filename'''
  766. return self.openshift_cmd(['create', '-f', fname])
  767. def _delete(self, resource, name=None, selector=None):
  768. '''call oc delete on a resource'''
  769. cmd = ['delete', resource]
  770. if selector is not None:
  771. cmd.append('--selector={}'.format(selector))
  772. elif name is not None:
  773. cmd.append(name)
  774. else:
  775. raise OpenShiftCLIError('Either name or selector is required when calling delete.')
  776. return self.openshift_cmd(cmd)
  777. def _process(self, template_name, create=False, params=None, template_data=None): # noqa: E501
  778. '''process a template
  779. template_name: the name of the template to process
  780. create: whether to send to oc create after processing
  781. params: the parameters for the template
  782. template_data: the incoming template's data; instead of a file
  783. '''
  784. cmd = ['process']
  785. if template_data:
  786. cmd.extend(['-f', '-'])
  787. else:
  788. cmd.append(template_name)
  789. if params:
  790. param_str = ["{}={}".format(key, str(value).replace("'", r'"')) for key, value in params.items()]
  791. cmd.append('-v')
  792. cmd.extend(param_str)
  793. results = self.openshift_cmd(cmd, output=True, input_data=template_data)
  794. if results['returncode'] != 0 or not create:
  795. return results
  796. fname = Utils.create_tmpfile(template_name + '-')
  797. yed = Yedit(fname, results['results'])
  798. yed.write()
  799. atexit.register(Utils.cleanup, [fname])
  800. return self.openshift_cmd(['create', '-f', fname])
  801. def _get(self, resource, name=None, selector=None):
  802. '''return a resource by name '''
  803. cmd = ['get', resource]
  804. if selector is not None:
  805. cmd.append('--selector={}'.format(selector))
  806. elif name is not None:
  807. cmd.append(name)
  808. cmd.extend(['-o', 'json'])
  809. rval = self.openshift_cmd(cmd, output=True)
  810. # Ensure results are retuned in an array
  811. if 'items' in rval:
  812. rval['results'] = rval['items']
  813. elif not isinstance(rval['results'], list):
  814. rval['results'] = [rval['results']]
  815. return rval
  816. def _schedulable(self, node=None, selector=None, schedulable=True):
  817. ''' perform oadm manage-node scheduable '''
  818. cmd = ['manage-node']
  819. if node:
  820. cmd.extend(node)
  821. else:
  822. cmd.append('--selector={}'.format(selector))
  823. cmd.append('--schedulable={}'.format(schedulable))
  824. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  825. def _list_pods(self, node=None, selector=None, pod_selector=None):
  826. ''' perform oadm list pods
  827. node: the node in which to list pods
  828. selector: the label selector filter if provided
  829. pod_selector: the pod selector filter if provided
  830. '''
  831. cmd = ['manage-node']
  832. if node:
  833. cmd.extend(node)
  834. else:
  835. cmd.append('--selector={}'.format(selector))
  836. if pod_selector:
  837. cmd.append('--pod-selector={}'.format(pod_selector))
  838. cmd.extend(['--list-pods', '-o', 'json'])
  839. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  840. # pylint: disable=too-many-arguments
  841. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  842. ''' perform oadm manage-node evacuate '''
  843. cmd = ['manage-node']
  844. if node:
  845. cmd.extend(node)
  846. else:
  847. cmd.append('--selector={}'.format(selector))
  848. if dry_run:
  849. cmd.append('--dry-run')
  850. if pod_selector:
  851. cmd.append('--pod-selector={}'.format(pod_selector))
  852. if grace_period:
  853. cmd.append('--grace-period={}'.format(int(grace_period)))
  854. if force:
  855. cmd.append('--force')
  856. cmd.append('--evacuate')
  857. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  858. def _version(self):
  859. ''' return the openshift version'''
  860. return self.openshift_cmd(['version'], output=True, output_type='raw')
  861. def _import_image(self, url=None, name=None, tag=None):
  862. ''' perform image import '''
  863. cmd = ['import-image']
  864. image = '{0}'.format(name)
  865. if tag:
  866. image += ':{0}'.format(tag)
  867. cmd.append(image)
  868. if url:
  869. cmd.append('--from={0}/{1}'.format(url, image))
  870. cmd.append('-n{0}'.format(self.namespace))
  871. cmd.append('--confirm')
  872. return self.openshift_cmd(cmd)
  873. def _run(self, cmds, input_data):
  874. ''' Actually executes the command. This makes mocking easier. '''
  875. curr_env = os.environ.copy()
  876. curr_env.update({'KUBECONFIG': self.kubeconfig})
  877. proc = subprocess.Popen(cmds,
  878. stdin=subprocess.PIPE,
  879. stdout=subprocess.PIPE,
  880. stderr=subprocess.PIPE,
  881. env=curr_env)
  882. stdout, stderr = proc.communicate(input_data)
  883. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  884. # pylint: disable=too-many-arguments,too-many-branches
  885. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  886. '''Base command for oc '''
  887. cmds = [self.oc_binary]
  888. if oadm:
  889. cmds.append('adm')
  890. cmds.extend(cmd)
  891. if self.all_namespaces:
  892. cmds.extend(['--all-namespaces'])
  893. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  894. cmds.extend(['-n', self.namespace])
  895. if self.verbose:
  896. print(' '.join(cmds))
  897. try:
  898. returncode, stdout, stderr = self._run(cmds, input_data)
  899. except OSError as ex:
  900. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  901. rval = {"returncode": returncode,
  902. "cmd": ' '.join(cmds)}
  903. if output_type == 'json':
  904. rval['results'] = {}
  905. if output and stdout:
  906. try:
  907. rval['results'] = json.loads(stdout)
  908. except ValueError as verr:
  909. if "No JSON object could be decoded" in verr.args:
  910. rval['err'] = verr.args
  911. elif output_type == 'raw':
  912. rval['results'] = stdout if output else ''
  913. if self.verbose:
  914. print("STDOUT: {0}".format(stdout))
  915. print("STDERR: {0}".format(stderr))
  916. if 'err' in rval or returncode != 0:
  917. rval.update({"stderr": stderr,
  918. "stdout": stdout})
  919. return rval
  920. class Utils(object): # pragma: no cover
  921. ''' utilities for openshiftcli modules '''
  922. @staticmethod
  923. def _write(filename, contents):
  924. ''' Actually write the file contents to disk. This helps with mocking. '''
  925. with open(filename, 'w') as sfd:
  926. sfd.write(str(contents))
  927. @staticmethod
  928. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  929. ''' create a file in tmp with name and contents'''
  930. tmp = Utils.create_tmpfile(prefix=rname)
  931. if ftype == 'yaml':
  932. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  933. # pylint: disable=no-member
  934. if hasattr(yaml, 'RoundTripDumper'):
  935. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  936. else:
  937. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  938. elif ftype == 'json':
  939. Utils._write(tmp, json.dumps(data))
  940. else:
  941. Utils._write(tmp, data)
  942. # Register cleanup when module is done
  943. atexit.register(Utils.cleanup, [tmp])
  944. return tmp
  945. @staticmethod
  946. def create_tmpfile_copy(inc_file):
  947. '''create a temporary copy of a file'''
  948. tmpfile = Utils.create_tmpfile('lib_openshift-')
  949. Utils._write(tmpfile, open(inc_file).read())
  950. # Cleanup the tmpfile
  951. atexit.register(Utils.cleanup, [tmpfile])
  952. return tmpfile
  953. @staticmethod
  954. def create_tmpfile(prefix='tmp'):
  955. ''' Generates and returns a temporary file name '''
  956. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  957. return tmp.name
  958. @staticmethod
  959. def create_tmp_files_from_contents(content, content_type=None):
  960. '''Turn an array of dict: filename, content into a files array'''
  961. if not isinstance(content, list):
  962. content = [content]
  963. files = []
  964. for item in content:
  965. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  966. item['data'],
  967. ftype=content_type)
  968. files.append({'name': os.path.basename(item['path']),
  969. 'path': path})
  970. return files
  971. @staticmethod
  972. def cleanup(files):
  973. '''Clean up on exit '''
  974. for sfile in files:
  975. if os.path.exists(sfile):
  976. if os.path.isdir(sfile):
  977. shutil.rmtree(sfile)
  978. elif os.path.isfile(sfile):
  979. os.remove(sfile)
  980. @staticmethod
  981. def exists(results, _name):
  982. ''' Check to see if the results include the name '''
  983. if not results:
  984. return False
  985. if Utils.find_result(results, _name):
  986. return True
  987. return False
  988. @staticmethod
  989. def find_result(results, _name):
  990. ''' Find the specified result by name'''
  991. rval = None
  992. for result in results:
  993. if 'metadata' in result and result['metadata']['name'] == _name:
  994. rval = result
  995. break
  996. return rval
  997. @staticmethod
  998. def get_resource_file(sfile, sfile_type='yaml'):
  999. ''' return the service file '''
  1000. contents = None
  1001. with open(sfile) as sfd:
  1002. contents = sfd.read()
  1003. if sfile_type == 'yaml':
  1004. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1005. # pylint: disable=no-member
  1006. if hasattr(yaml, 'RoundTripLoader'):
  1007. contents = yaml.load(contents, yaml.RoundTripLoader)
  1008. else:
  1009. contents = yaml.safe_load(contents)
  1010. elif sfile_type == 'json':
  1011. contents = json.loads(contents)
  1012. return contents
  1013. @staticmethod
  1014. def filter_versions(stdout):
  1015. ''' filter the oc version output '''
  1016. version_dict = {}
  1017. version_search = ['oc', 'openshift', 'kubernetes']
  1018. for line in stdout.strip().split('\n'):
  1019. for term in version_search:
  1020. if not line:
  1021. continue
  1022. if line.startswith(term):
  1023. version_dict[term] = line.split()[-1]
  1024. # horrible hack to get openshift version in Openshift 3.2
  1025. # By default "oc version in 3.2 does not return an "openshift" version
  1026. if "openshift" not in version_dict:
  1027. version_dict["openshift"] = version_dict["oc"]
  1028. return version_dict
  1029. @staticmethod
  1030. def add_custom_versions(versions):
  1031. ''' create custom versions strings '''
  1032. versions_dict = {}
  1033. for tech, version in versions.items():
  1034. # clean up "-" from version
  1035. if "-" in version:
  1036. version = version.split("-")[0]
  1037. if version.startswith('v'):
  1038. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1039. # "v3.3.0.33" is what we have, we want "3.3"
  1040. versions_dict[tech + '_short'] = version[1:4]
  1041. return versions_dict
  1042. @staticmethod
  1043. def openshift_installed():
  1044. ''' check if openshift is installed '''
  1045. import rpm
  1046. transaction_set = rpm.TransactionSet()
  1047. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  1048. return rpmquery.count() > 0
  1049. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1050. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1051. @staticmethod
  1052. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1053. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1054. # Currently these values are autogenerated and we do not need to check them
  1055. skip = ['metadata', 'status']
  1056. if skip_keys:
  1057. skip.extend(skip_keys)
  1058. for key, value in result_def.items():
  1059. if key in skip:
  1060. continue
  1061. # Both are lists
  1062. if isinstance(value, list):
  1063. if key not in user_def:
  1064. if debug:
  1065. print('User data does not have key [%s]' % key)
  1066. print('User data: %s' % user_def)
  1067. return False
  1068. if not isinstance(user_def[key], list):
  1069. if debug:
  1070. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1071. return False
  1072. if len(user_def[key]) != len(value):
  1073. if debug:
  1074. print("List lengths are not equal.")
  1075. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1076. print("user_def: %s" % user_def[key])
  1077. print("value: %s" % value)
  1078. return False
  1079. for values in zip(user_def[key], value):
  1080. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1081. if debug:
  1082. print('sending list - list')
  1083. print(type(values[0]))
  1084. print(type(values[1]))
  1085. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1086. if not result:
  1087. print('list compare returned false')
  1088. return False
  1089. elif value != user_def[key]:
  1090. if debug:
  1091. print('value should be identical')
  1092. print(user_def[key])
  1093. print(value)
  1094. return False
  1095. # recurse on a dictionary
  1096. elif isinstance(value, dict):
  1097. if key not in user_def:
  1098. if debug:
  1099. print("user_def does not have key [%s]" % key)
  1100. return False
  1101. if not isinstance(user_def[key], dict):
  1102. if debug:
  1103. print("dict returned false: not instance of dict")
  1104. return False
  1105. # before passing ensure keys match
  1106. api_values = set(value.keys()) - set(skip)
  1107. user_values = set(user_def[key].keys()) - set(skip)
  1108. if api_values != user_values:
  1109. if debug:
  1110. print("keys are not equal in dict")
  1111. print(user_values)
  1112. print(api_values)
  1113. return False
  1114. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1115. if not result:
  1116. if debug:
  1117. print("dict returned false")
  1118. print(result)
  1119. return False
  1120. # Verify each key, value pair is the same
  1121. else:
  1122. if key not in user_def or value != user_def[key]:
  1123. if debug:
  1124. print("value not equal; user_def does not have key")
  1125. print(key)
  1126. print(value)
  1127. if key in user_def:
  1128. print(user_def[key])
  1129. return False
  1130. if debug:
  1131. print('returning true')
  1132. return True
  1133. class OpenShiftCLIConfig(object):
  1134. '''Generic Config'''
  1135. def __init__(self, rname, namespace, kubeconfig, options):
  1136. self.kubeconfig = kubeconfig
  1137. self.name = rname
  1138. self.namespace = namespace
  1139. self._options = options
  1140. @property
  1141. def config_options(self):
  1142. ''' return config options '''
  1143. return self._options
  1144. def to_option_list(self, ascommalist=''):
  1145. '''return all options as a string
  1146. if ascommalist is set to the name of a key, and
  1147. the value of that key is a dict, format the dict
  1148. as a list of comma delimited key=value pairs'''
  1149. return self.stringify(ascommalist)
  1150. def stringify(self, ascommalist=''):
  1151. ''' return the options hash as cli params in a string
  1152. if ascommalist is set to the name of a key, and
  1153. the value of that key is a dict, format the dict
  1154. as a list of comma delimited key=value pairs '''
  1155. rval = []
  1156. for key in sorted(self.config_options.keys()):
  1157. data = self.config_options[key]
  1158. if data['include'] \
  1159. and (data['value'] is not None or isinstance(data['value'], int)):
  1160. if key == ascommalist:
  1161. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1162. else:
  1163. val = data['value']
  1164. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1165. return rval
  1166. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1167. # -*- -*- -*- Begin included fragment: class/oc_image.py -*- -*- -*-
  1168. # pylint: disable=too-many-arguments
  1169. class OCImage(OpenShiftCLI):
  1170. ''' Class to import and create an imagestream object'''
  1171. def __init__(self,
  1172. namespace,
  1173. registry_url,
  1174. image_name,
  1175. image_tag,
  1176. kubeconfig='/etc/origin/master/admin.kubeconfig',
  1177. verbose=False):
  1178. ''' Constructor for OCImage'''
  1179. super(OCImage, self).__init__(namespace, kubeconfig)
  1180. self.registry_url = registry_url
  1181. self.image_name = image_name
  1182. self.image_tag = image_tag
  1183. self.verbose = verbose
  1184. def get(self):
  1185. '''return a image by name '''
  1186. results = self._get('imagestream', self.image_name)
  1187. results['exists'] = False
  1188. if results['returncode'] == 0 and results['results'][0]:
  1189. results['exists'] = True
  1190. if results['returncode'] != 0 and '"{}" not found'.format(self.image_name) in results['stderr']:
  1191. results['returncode'] = 0
  1192. return results
  1193. def create(self, url=None, name=None, tag=None):
  1194. '''Create an image '''
  1195. return self._import_image(url, name, tag)
  1196. # pylint: disable=too-many-return-statements
  1197. @staticmethod
  1198. def run_ansible(params, check_mode):
  1199. ''' run the ansible idempotent code '''
  1200. ocimage = OCImage(params['namespace'],
  1201. params['registry_url'],
  1202. params['image_name'],
  1203. params['image_tag'],
  1204. kubeconfig=params['kubeconfig'],
  1205. verbose=params['debug'])
  1206. state = params['state']
  1207. api_rval = ocimage.get()
  1208. #####
  1209. # Get
  1210. #####
  1211. if state == 'list':
  1212. if api_rval['returncode'] != 0:
  1213. return {"failed": True, "msg": api_rval}
  1214. return {"changed": False, "results": api_rval, "state": "list"}
  1215. ########
  1216. # Create
  1217. ########
  1218. if state == 'present':
  1219. if not Utils.exists(api_rval['results'], params['image_name']):
  1220. if check_mode:
  1221. return {"changed": False, "msg": 'CHECK_MODE: Would have performed a create'}
  1222. api_rval = ocimage.create(params['registry_url'],
  1223. params['image_name'],
  1224. params['image_tag'])
  1225. if api_rval['returncode'] != 0:
  1226. return {"failed": True, "msg": api_rval}
  1227. # return the newly created object
  1228. api_rval = ocimage.get()
  1229. if api_rval['returncode'] != 0:
  1230. return {"failed": True, "msg": api_rval}
  1231. return {"changed": True, "results": api_rval, "state": "present"}
  1232. # image exists, no change
  1233. return {"changed": False, "results": api_rval, "state": "present"}
  1234. return {"failed": True, "changed": False, "msg": "Unknown state passed. {0}".format(state)}
  1235. # -*- -*- -*- End included fragment: class/oc_image.py -*- -*- -*-
  1236. # -*- -*- -*- Begin included fragment: ansible/oc_image.py -*- -*- -*-
  1237. def main():
  1238. '''
  1239. ansible oc module for image import
  1240. '''
  1241. module = AnsibleModule(
  1242. argument_spec=dict(
  1243. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1244. state=dict(default='present', type='str',
  1245. choices=['present', 'list']),
  1246. debug=dict(default=False, type='bool'),
  1247. namespace=dict(default='default', type='str'),
  1248. registry_url=dict(default=None, type='str'),
  1249. image_name=dict(default=None, required=True, type='str'),
  1250. image_tag=dict(default=None, type='str'),
  1251. force=dict(default=False, type='bool'),
  1252. ),
  1253. supports_check_mode=True,
  1254. )
  1255. rval = OCImage.run_ansible(module.params, module.check_mode)
  1256. if 'failed' in rval:
  1257. module.fail_json(**rval)
  1258. module.exit_json(**rval)
  1259. if __name__ == '__main__':
  1260. main()
  1261. # -*- -*- -*- End included fragment: ansible/oc_image.py -*- -*- -*-