oc_image.py 53 KB

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