oc_image.py 52 KB

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