oc_image.py 52 KB

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