oc_volume.py 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133
  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/volume -*- -*- -*-
  50. DOCUMENTATION = '''
  51. ---
  52. module: oc_volume
  53. short_description: Create, modify, and idempotently manage openshift volumes.
  54. description:
  55. - Modify openshift volumes programmatically.
  56. options:
  57. state:
  58. description:
  59. - State controls the action that will be taken with resource
  60. - 'present' will create or update and object to the desired state
  61. - 'absent' will ensure volumes are removed
  62. - 'list' will read the volumes
  63. default: present
  64. choices: ["present", "absent", "list"]
  65. aliases: []
  66. kubeconfig:
  67. description:
  68. - The path for the kubeconfig file to use for authentication
  69. required: false
  70. default: /etc/origin/master/admin.kubeconfig
  71. aliases: []
  72. debug:
  73. description:
  74. - Turn on debug output.
  75. required: false
  76. default: False
  77. aliases: []
  78. name:
  79. description:
  80. - Name of the object that is being queried.
  81. required: false
  82. default: None
  83. aliases: []
  84. vol_name:
  85. description:
  86. - Name of the volume that is being queried.
  87. required: false
  88. default: None
  89. aliases: []
  90. namespace:
  91. description:
  92. - The name of the namespace where the object lives
  93. required: false
  94. default: default
  95. aliases: []
  96. kind:
  97. description:
  98. - The kind of object that can be managed.
  99. default: dc
  100. choices:
  101. - dc
  102. - rc
  103. - pods
  104. aliases: []
  105. mount_type:
  106. description:
  107. - The type of volume to be used
  108. required: false
  109. default: None
  110. choices:
  111. - emptydir
  112. - hostpath
  113. - secret
  114. - pvc
  115. - configmap
  116. aliases: []
  117. mount_path:
  118. description:
  119. - The path to where the mount will be attached
  120. required: false
  121. default: None
  122. aliases: []
  123. secret_name:
  124. description:
  125. - The name of the secret. Used when mount_type is secret.
  126. required: false
  127. default: None
  128. aliases: []
  129. claim_size:
  130. description:
  131. - The size in GB of the pv claim. e.g. 100G
  132. required: false
  133. default: None
  134. aliases: []
  135. claim_name:
  136. description:
  137. - The name of the pv claim
  138. required: false
  139. default: None
  140. aliases: []
  141. configmap_name:
  142. description:
  143. - The name of the configmap
  144. required: false
  145. default: None
  146. aliases: []
  147. author:
  148. - "Kenny Woodson <kwoodson@redhat.com>"
  149. extends_documentation_fragment: []
  150. '''
  151. EXAMPLES = '''
  152. - name: attach storage volumes to deploymentconfig
  153. oc_volume:
  154. namespace: logging
  155. kind: dc
  156. name: name_of_the_dc
  157. mount_type: pvc
  158. claim_name: loggingclaim
  159. claim_size: 100G
  160. vol_name: logging-storage
  161. run_once: true
  162. '''
  163. # -*- -*- -*- End included fragment: doc/volume -*- -*- -*-
  164. # -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  165. class YeditException(Exception): # pragma: no cover
  166. ''' Exception class for Yedit '''
  167. pass
  168. # pylint: disable=too-many-public-methods
  169. class Yedit(object): # pragma: no cover
  170. ''' Class to modify yaml files '''
  171. re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
  172. re_key = r"(?:\[(-?\d+)\])|([0-9a-zA-Z{}/_-]+)"
  173. com_sep = set(['.', '#', '|', ':'])
  174. # pylint: disable=too-many-arguments
  175. def __init__(self,
  176. filename=None,
  177. content=None,
  178. content_type='yaml',
  179. separator='.',
  180. backup=False):
  181. self.content = content
  182. self._separator = separator
  183. self.filename = filename
  184. self.__yaml_dict = content
  185. self.content_type = content_type
  186. self.backup = backup
  187. self.load(content_type=self.content_type)
  188. if self.__yaml_dict is None:
  189. self.__yaml_dict = {}
  190. @property
  191. def separator(self):
  192. ''' getter method for separator '''
  193. return self._separator
  194. @separator.setter
  195. def separator(self, inc_sep):
  196. ''' setter method for separator '''
  197. self._separator = inc_sep
  198. @property
  199. def yaml_dict(self):
  200. ''' getter method for yaml_dict '''
  201. return self.__yaml_dict
  202. @yaml_dict.setter
  203. def yaml_dict(self, value):
  204. ''' setter method for yaml_dict '''
  205. self.__yaml_dict = value
  206. @staticmethod
  207. def parse_key(key, sep='.'):
  208. '''parse the key allowing the appropriate separator'''
  209. common_separators = list(Yedit.com_sep - set([sep]))
  210. return re.findall(Yedit.re_key.format(''.join(common_separators)), key)
  211. @staticmethod
  212. def valid_key(key, sep='.'):
  213. '''validate the incoming key'''
  214. common_separators = list(Yedit.com_sep - set([sep]))
  215. if not re.match(Yedit.re_valid_key.format(''.join(common_separators)), key):
  216. return False
  217. return True
  218. # pylint: disable=too-many-return-statements,too-many-branches
  219. @staticmethod
  220. def remove_entry(data, key, index=None, value=None, sep='.'):
  221. ''' remove data at location key '''
  222. if key == '' and isinstance(data, dict):
  223. if value is not None:
  224. data.pop(value)
  225. elif index is not None:
  226. raise YeditException("remove_entry for a dictionary does not have an index {}".format(index))
  227. else:
  228. data.clear()
  229. return True
  230. elif key == '' and isinstance(data, list):
  231. ind = None
  232. if value is not None:
  233. try:
  234. ind = data.index(value)
  235. except ValueError:
  236. return False
  237. elif index is not None:
  238. ind = index
  239. else:
  240. del data[:]
  241. if ind is not None:
  242. data.pop(ind)
  243. return True
  244. if not (key and Yedit.valid_key(key, sep)) and \
  245. isinstance(data, (list, dict)):
  246. return None
  247. key_indexes = Yedit.parse_key(key, sep)
  248. for arr_ind, dict_key in key_indexes[:-1]:
  249. if dict_key and isinstance(data, dict):
  250. data = data.get(dict_key)
  251. elif (arr_ind and isinstance(data, list) and
  252. int(arr_ind) <= len(data) - 1):
  253. data = data[int(arr_ind)]
  254. else:
  255. return None
  256. # process last index for remove
  257. # expected list entry
  258. if key_indexes[-1][0]:
  259. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  260. del data[int(key_indexes[-1][0])]
  261. return True
  262. # expected dict entry
  263. elif key_indexes[-1][1]:
  264. if isinstance(data, dict):
  265. del data[key_indexes[-1][1]]
  266. return True
  267. @staticmethod
  268. def add_entry(data, key, item=None, sep='.'):
  269. ''' Get an item from a dictionary with key notation a.b.c
  270. d = {'a': {'b': 'c'}}}
  271. key = a#b
  272. return c
  273. '''
  274. if key == '':
  275. pass
  276. elif (not (key and Yedit.valid_key(key, sep)) and
  277. isinstance(data, (list, dict))):
  278. return None
  279. key_indexes = Yedit.parse_key(key, sep)
  280. for arr_ind, dict_key in key_indexes[:-1]:
  281. if dict_key:
  282. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  283. data = data[dict_key]
  284. continue
  285. elif data and not isinstance(data, dict):
  286. raise YeditException("Unexpected item type found while going through key " +
  287. "path: {} (at key: {})".format(key, dict_key))
  288. data[dict_key] = {}
  289. data = data[dict_key]
  290. elif (arr_ind and isinstance(data, list) and
  291. int(arr_ind) <= len(data) - 1):
  292. data = data[int(arr_ind)]
  293. else:
  294. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  295. if key == '':
  296. data = item
  297. # process last index for add
  298. # expected list entry
  299. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  300. data[int(key_indexes[-1][0])] = item
  301. # expected dict entry
  302. elif key_indexes[-1][1] and isinstance(data, dict):
  303. data[key_indexes[-1][1]] = item
  304. # didn't add/update to an existing list, nor add/update key to a dict
  305. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  306. # non-existent array
  307. else:
  308. raise YeditException("Error adding to object at path: {}".format(key))
  309. return data
  310. @staticmethod
  311. def get_entry(data, key, sep='.'):
  312. ''' Get an item from a dictionary with key notation a.b.c
  313. d = {'a': {'b': 'c'}}}
  314. key = a.b
  315. return c
  316. '''
  317. if key == '':
  318. pass
  319. elif (not (key and Yedit.valid_key(key, sep)) and
  320. isinstance(data, (list, dict))):
  321. return None
  322. key_indexes = Yedit.parse_key(key, sep)
  323. for arr_ind, dict_key in key_indexes:
  324. if dict_key and isinstance(data, dict):
  325. data = data.get(dict_key)
  326. elif (arr_ind and isinstance(data, list) and
  327. int(arr_ind) <= len(data) - 1):
  328. data = data[int(arr_ind)]
  329. else:
  330. return None
  331. return data
  332. @staticmethod
  333. def _write(filename, contents):
  334. ''' Actually write the file contents to disk. This helps with mocking. '''
  335. tmp_filename = filename + '.yedit'
  336. with open(tmp_filename, 'w') as yfd:
  337. fcntl.flock(yfd, fcntl.LOCK_EX | fcntl.LOCK_NB)
  338. yfd.write(contents)
  339. fcntl.flock(yfd, fcntl.LOCK_UN)
  340. os.rename(tmp_filename, filename)
  341. def write(self):
  342. ''' write to file '''
  343. if not self.filename:
  344. raise YeditException('Please specify a filename.')
  345. if self.backup and self.file_exists():
  346. shutil.copy(self.filename, self.filename + '.orig')
  347. # Try to set format attributes if supported
  348. try:
  349. self.yaml_dict.fa.set_block_style()
  350. except AttributeError:
  351. pass
  352. # Try to use RoundTripDumper if supported.
  353. if self.content_type == 'yaml':
  354. try:
  355. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  356. except AttributeError:
  357. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  358. elif self.content_type == 'json':
  359. Yedit._write(self.filename, json.dumps(self.yaml_dict, indent=4, sort_keys=True))
  360. else:
  361. raise YeditException('Unsupported content_type: {}.'.format(self.content_type) +
  362. 'Please specify a content_type of yaml or json.')
  363. return (True, self.yaml_dict)
  364. def read(self):
  365. ''' read from file '''
  366. # check if it exists
  367. if self.filename is None or not self.file_exists():
  368. return None
  369. contents = None
  370. with open(self.filename) as yfd:
  371. contents = yfd.read()
  372. return contents
  373. def file_exists(self):
  374. ''' return whether file exists '''
  375. if os.path.exists(self.filename):
  376. return True
  377. return False
  378. def load(self, content_type='yaml'):
  379. ''' return yaml file '''
  380. contents = self.read()
  381. if not contents and not self.content:
  382. return None
  383. if self.content:
  384. if isinstance(self.content, dict):
  385. self.yaml_dict = self.content
  386. return self.yaml_dict
  387. elif isinstance(self.content, str):
  388. contents = self.content
  389. # check if it is yaml
  390. try:
  391. if content_type == 'yaml' and contents:
  392. # Try to set format attributes if supported
  393. try:
  394. self.yaml_dict.fa.set_block_style()
  395. except AttributeError:
  396. pass
  397. # Try to use RoundTripLoader if supported.
  398. try:
  399. self.yaml_dict = yaml.load(contents, yaml.RoundTripLoader)
  400. except AttributeError:
  401. self.yaml_dict = yaml.safe_load(contents)
  402. # Try to set format attributes if supported
  403. try:
  404. self.yaml_dict.fa.set_block_style()
  405. except AttributeError:
  406. pass
  407. elif content_type == 'json' and contents:
  408. self.yaml_dict = json.loads(contents)
  409. except yaml.YAMLError as err:
  410. # Error loading yaml or json
  411. raise YeditException('Problem with loading yaml file. {}'.format(err))
  412. return self.yaml_dict
  413. def get(self, key):
  414. ''' get a specified key'''
  415. try:
  416. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  417. except KeyError:
  418. entry = None
  419. return entry
  420. def pop(self, path, key_or_item):
  421. ''' remove a key, value pair from a dict or an item for 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. return (False, self.yaml_dict)
  428. if isinstance(entry, dict):
  429. # AUDIT:maybe-no-member makes sense due to fuzzy types
  430. # pylint: disable=maybe-no-member
  431. if key_or_item in entry:
  432. entry.pop(key_or_item)
  433. return (True, self.yaml_dict)
  434. return (False, self.yaml_dict)
  435. elif isinstance(entry, list):
  436. # AUDIT:maybe-no-member makes sense due to fuzzy types
  437. # pylint: disable=maybe-no-member
  438. ind = None
  439. try:
  440. ind = entry.index(key_or_item)
  441. except ValueError:
  442. return (False, self.yaml_dict)
  443. entry.pop(ind)
  444. return (True, self.yaml_dict)
  445. return (False, self.yaml_dict)
  446. def delete(self, path, index=None, value=None):
  447. ''' remove path from a dict'''
  448. try:
  449. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  450. except KeyError:
  451. entry = None
  452. if entry is None:
  453. return (False, self.yaml_dict)
  454. result = Yedit.remove_entry(self.yaml_dict, path, index, value, self.separator)
  455. if not result:
  456. return (False, self.yaml_dict)
  457. return (True, self.yaml_dict)
  458. def exists(self, path, value):
  459. ''' check if value exists at path'''
  460. try:
  461. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  462. except KeyError:
  463. entry = None
  464. if isinstance(entry, list):
  465. if value in entry:
  466. return True
  467. return False
  468. elif isinstance(entry, dict):
  469. if isinstance(value, dict):
  470. rval = False
  471. for key, val in value.items():
  472. if entry[key] != val:
  473. rval = False
  474. break
  475. else:
  476. rval = True
  477. return rval
  478. return value in entry
  479. return entry == value
  480. def append(self, path, value):
  481. '''append value to a list'''
  482. try:
  483. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  484. except KeyError:
  485. entry = None
  486. if entry is None:
  487. self.put(path, [])
  488. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  489. if not isinstance(entry, list):
  490. return (False, self.yaml_dict)
  491. # AUDIT:maybe-no-member makes sense due to loading data from
  492. # a serialized format.
  493. # pylint: disable=maybe-no-member
  494. entry.append(value)
  495. return (True, self.yaml_dict)
  496. # pylint: disable=too-many-arguments
  497. def update(self, path, value, index=None, curr_value=None):
  498. ''' put path, value into a dict '''
  499. try:
  500. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  501. except KeyError:
  502. entry = None
  503. if isinstance(entry, dict):
  504. # AUDIT:maybe-no-member makes sense due to fuzzy types
  505. # pylint: disable=maybe-no-member
  506. if not isinstance(value, dict):
  507. raise YeditException('Cannot replace key, value entry in dict with non-dict type. ' +
  508. 'value=[{}] type=[{}]'.format(value, type(value)))
  509. entry.update(value)
  510. return (True, self.yaml_dict)
  511. elif isinstance(entry, list):
  512. # AUDIT:maybe-no-member makes sense due to fuzzy types
  513. # pylint: disable=maybe-no-member
  514. ind = None
  515. if curr_value:
  516. try:
  517. ind = entry.index(curr_value)
  518. except ValueError:
  519. return (False, self.yaml_dict)
  520. elif index is not None:
  521. ind = index
  522. if ind is not None and entry[ind] != value:
  523. entry[ind] = value
  524. return (True, self.yaml_dict)
  525. # see if it exists in the list
  526. try:
  527. ind = entry.index(value)
  528. except ValueError:
  529. # doesn't exist, append it
  530. entry.append(value)
  531. return (True, self.yaml_dict)
  532. # already exists, return
  533. if ind is not None:
  534. return (False, self.yaml_dict)
  535. return (False, self.yaml_dict)
  536. def put(self, path, value):
  537. ''' put path, value into a dict '''
  538. try:
  539. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  540. except KeyError:
  541. entry = None
  542. if entry == value:
  543. return (False, self.yaml_dict)
  544. # deepcopy didn't work
  545. # Try to use ruamel.yaml and fallback to pyyaml
  546. try:
  547. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  548. default_flow_style=False),
  549. yaml.RoundTripLoader)
  550. except AttributeError:
  551. tmp_copy = copy.deepcopy(self.yaml_dict)
  552. # set the format attributes if available
  553. try:
  554. tmp_copy.fa.set_block_style()
  555. except AttributeError:
  556. pass
  557. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  558. if result is None:
  559. return (False, self.yaml_dict)
  560. # When path equals "" it is a special case.
  561. # "" refers to the root of the document
  562. # Only update the root path (entire document) when its a list or dict
  563. if path == '':
  564. if isinstance(result, list) or isinstance(result, dict):
  565. self.yaml_dict = result
  566. return (True, self.yaml_dict)
  567. return (False, self.yaml_dict)
  568. self.yaml_dict = tmp_copy
  569. return (True, self.yaml_dict)
  570. def create(self, path, value):
  571. ''' create a yaml file '''
  572. if not self.file_exists():
  573. # deepcopy didn't work
  574. # Try to use ruamel.yaml and fallback to pyyaml
  575. try:
  576. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  577. default_flow_style=False),
  578. yaml.RoundTripLoader)
  579. except AttributeError:
  580. tmp_copy = copy.deepcopy(self.yaml_dict)
  581. # set the format attributes if available
  582. try:
  583. tmp_copy.fa.set_block_style()
  584. except AttributeError:
  585. pass
  586. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  587. if result is not None:
  588. self.yaml_dict = tmp_copy
  589. return (True, self.yaml_dict)
  590. return (False, self.yaml_dict)
  591. @staticmethod
  592. def get_curr_value(invalue, val_type):
  593. '''return the current value'''
  594. if invalue is None:
  595. return None
  596. curr_value = invalue
  597. if val_type == 'yaml':
  598. try:
  599. # AUDIT:maybe-no-member makes sense due to different yaml libraries
  600. # pylint: disable=maybe-no-member
  601. curr_value = yaml.safe_load(invalue, Loader=yaml.RoundTripLoader)
  602. except AttributeError:
  603. curr_value = yaml.safe_load(invalue)
  604. elif val_type == 'json':
  605. curr_value = json.loads(invalue)
  606. return curr_value
  607. @staticmethod
  608. def parse_value(inc_value, vtype=''):
  609. '''determine value type passed'''
  610. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  611. 'on', 'On', 'ON', ]
  612. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  613. 'off', 'Off', 'OFF']
  614. # It came in as a string but you didn't specify value_type as string
  615. # we will convert to bool if it matches any of the above cases
  616. if isinstance(inc_value, str) and 'bool' in vtype:
  617. if inc_value not in true_bools and inc_value not in false_bools:
  618. raise YeditException('Not a boolean type. str=[{}] vtype=[{}]'.format(inc_value, vtype))
  619. elif isinstance(inc_value, bool) and 'str' in vtype:
  620. inc_value = str(inc_value)
  621. # There is a special case where '' will turn into None after yaml loading it so skip
  622. if isinstance(inc_value, str) and inc_value == '':
  623. pass
  624. # If vtype is not str then go ahead and attempt to yaml load it.
  625. elif isinstance(inc_value, str) and 'str' not in vtype:
  626. try:
  627. inc_value = yaml.safe_load(inc_value)
  628. except Exception:
  629. raise YeditException('Could not determine type of incoming value. ' +
  630. 'value=[{}] vtype=[{}]'.format(type(inc_value), vtype))
  631. return inc_value
  632. @staticmethod
  633. def process_edits(edits, yamlfile):
  634. '''run through a list of edits and process them one-by-one'''
  635. results = []
  636. for edit in edits:
  637. value = Yedit.parse_value(edit['value'], edit.get('value_type', ''))
  638. if edit.get('action') == 'update':
  639. # pylint: disable=line-too-long
  640. curr_value = Yedit.get_curr_value(
  641. Yedit.parse_value(edit.get('curr_value')),
  642. edit.get('curr_value_format'))
  643. rval = yamlfile.update(edit['key'],
  644. value,
  645. edit.get('index'),
  646. curr_value)
  647. elif edit.get('action') == 'append':
  648. rval = yamlfile.append(edit['key'], value)
  649. else:
  650. rval = yamlfile.put(edit['key'], value)
  651. if rval[0]:
  652. results.append({'key': edit['key'], 'edit': rval[1]})
  653. return {'changed': len(results) > 0, 'results': results}
  654. # pylint: disable=too-many-return-statements,too-many-branches
  655. @staticmethod
  656. def run_ansible(params):
  657. '''perform the idempotent crud operations'''
  658. yamlfile = Yedit(filename=params['src'],
  659. backup=params['backup'],
  660. content_type=params['content_type'],
  661. separator=params['separator'])
  662. state = params['state']
  663. if params['src']:
  664. rval = yamlfile.load()
  665. if yamlfile.yaml_dict is None and state != 'present':
  666. return {'failed': True,
  667. 'msg': 'Error opening file [{}]. Verify that the '.format(params['src']) +
  668. 'file exists, that it is has correct permissions, and is valid yaml.'}
  669. if state == 'list':
  670. if params['content']:
  671. content = Yedit.parse_value(params['content'], params['content_type'])
  672. yamlfile.yaml_dict = content
  673. if params['key']:
  674. rval = yamlfile.get(params['key'])
  675. return {'changed': False, 'result': rval, 'state': state}
  676. elif state == 'absent':
  677. if params['content']:
  678. content = Yedit.parse_value(params['content'], params['content_type'])
  679. yamlfile.yaml_dict = content
  680. if params['update']:
  681. rval = yamlfile.pop(params['key'], params['value'])
  682. else:
  683. rval = yamlfile.delete(params['key'], params['index'], params['value'])
  684. if rval[0] and params['src']:
  685. yamlfile.write()
  686. return {'changed': rval[0], 'result': rval[1], 'state': state}
  687. elif state == 'present':
  688. # check if content is different than what is in the file
  689. if params['content']:
  690. content = Yedit.parse_value(params['content'], params['content_type'])
  691. # We had no edits to make and the contents are the same
  692. if yamlfile.yaml_dict == content and \
  693. params['value'] is None:
  694. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  695. yamlfile.yaml_dict = content
  696. # If we were passed a key, value then
  697. # we enapsulate it in a list and process it
  698. # Key, Value passed to the module : Converted to Edits list #
  699. edits = []
  700. _edit = {}
  701. if params['value'] is not None:
  702. _edit['value'] = params['value']
  703. _edit['value_type'] = params['value_type']
  704. _edit['key'] = params['key']
  705. if params['update']:
  706. _edit['action'] = 'update'
  707. _edit['curr_value'] = params['curr_value']
  708. _edit['curr_value_format'] = params['curr_value_format']
  709. _edit['index'] = params['index']
  710. elif params['append']:
  711. _edit['action'] = 'append'
  712. edits.append(_edit)
  713. elif params['edits'] is not None:
  714. edits = params['edits']
  715. if edits:
  716. results = Yedit.process_edits(edits, yamlfile)
  717. # if there were changes and a src provided to us we need to write
  718. if results['changed'] and params['src']:
  719. yamlfile.write()
  720. return {'changed': results['changed'], 'result': results['results'], 'state': state}
  721. # no edits to make
  722. if params['src']:
  723. # pylint: disable=redefined-variable-type
  724. rval = yamlfile.write()
  725. return {'changed': rval[0],
  726. 'result': rval[1],
  727. 'state': state}
  728. # We were passed content but no src, key or value, or edits. Return contents in memory
  729. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  730. return {'failed': True, 'msg': 'Unkown state passed'}
  731. # -*- -*- -*- End included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  732. # -*- -*- -*- Begin included fragment: lib/base.py -*- -*- -*-
  733. # pylint: disable=too-many-lines
  734. # noqa: E301,E302,E303,T001
  735. class OpenShiftCLIError(Exception):
  736. '''Exception class for openshiftcli'''
  737. pass
  738. ADDITIONAL_PATH_LOOKUPS = ['/usr/local/bin', os.path.expanduser('~/bin')]
  739. def locate_oc_binary():
  740. ''' Find and return oc binary file '''
  741. # https://github.com/openshift/openshift-ansible/issues/3410
  742. # oc can be in /usr/local/bin in some cases, but that may not
  743. # be in $PATH due to ansible/sudo
  744. paths = os.environ.get("PATH", os.defpath).split(os.pathsep) + ADDITIONAL_PATH_LOOKUPS
  745. oc_binary = 'oc'
  746. # Use shutil.which if it is available, otherwise fallback to a naive path search
  747. try:
  748. which_result = shutil.which(oc_binary, path=os.pathsep.join(paths))
  749. if which_result is not None:
  750. oc_binary = which_result
  751. except AttributeError:
  752. for path in paths:
  753. if os.path.exists(os.path.join(path, oc_binary)):
  754. oc_binary = os.path.join(path, oc_binary)
  755. break
  756. return oc_binary
  757. # pylint: disable=too-few-public-methods
  758. class OpenShiftCLI(object):
  759. ''' Class to wrap the command line tools '''
  760. def __init__(self,
  761. namespace,
  762. kubeconfig='/etc/origin/master/admin.kubeconfig',
  763. verbose=False,
  764. all_namespaces=False):
  765. ''' Constructor for OpenshiftCLI '''
  766. self.namespace = namespace
  767. self.verbose = verbose
  768. self.kubeconfig = Utils.create_tmpfile_copy(kubeconfig)
  769. self.all_namespaces = all_namespaces
  770. self.oc_binary = locate_oc_binary()
  771. # Pylint allows only 5 arguments to be passed.
  772. # pylint: disable=too-many-arguments
  773. def _replace_content(self, resource, rname, content, edits=None, force=False, sep='.'):
  774. ''' replace the current object with the content '''
  775. res = self._get(resource, rname)
  776. if not res['results']:
  777. return res
  778. fname = Utils.create_tmpfile(rname + '-')
  779. yed = Yedit(fname, res['results'][0], separator=sep)
  780. updated = False
  781. if content is not None:
  782. changes = []
  783. for key, value in content.items():
  784. changes.append(yed.put(key, value))
  785. if any([change[0] for change in changes]):
  786. updated = True
  787. elif edits is not None:
  788. results = Yedit.process_edits(edits, yed)
  789. if results['changed']:
  790. updated = True
  791. if updated:
  792. yed.write()
  793. atexit.register(Utils.cleanup, [fname])
  794. return self._replace(fname, force)
  795. return {'returncode': 0, 'updated': False}
  796. def _replace(self, fname, force=False):
  797. '''replace the current object with oc replace'''
  798. # We are removing the 'resourceVersion' to handle
  799. # a race condition when modifying oc objects
  800. yed = Yedit(fname)
  801. results = yed.delete('metadata.resourceVersion')
  802. if results[0]:
  803. yed.write()
  804. cmd = ['replace', '-f', fname]
  805. if force:
  806. cmd.append('--force')
  807. return self.openshift_cmd(cmd)
  808. def _create_from_content(self, rname, content):
  809. '''create a temporary file and then call oc create on it'''
  810. fname = Utils.create_tmpfile(rname + '-')
  811. yed = Yedit(fname, content=content)
  812. yed.write()
  813. atexit.register(Utils.cleanup, [fname])
  814. return self._create(fname)
  815. def _create(self, fname):
  816. '''call oc create on a filename'''
  817. return self.openshift_cmd(['create', '-f', fname])
  818. def _delete(self, resource, name=None, selector=None):
  819. '''call oc delete on a resource'''
  820. cmd = ['delete', resource]
  821. if selector is not None:
  822. cmd.append('--selector={}'.format(selector))
  823. elif name is not None:
  824. cmd.append(name)
  825. else:
  826. raise OpenShiftCLIError('Either name or selector is required when calling delete.')
  827. return self.openshift_cmd(cmd)
  828. def _process(self, template_name, create=False, params=None, template_data=None): # noqa: E501
  829. '''process a template
  830. template_name: the name of the template to process
  831. create: whether to send to oc create after processing
  832. params: the parameters for the template
  833. template_data: the incoming template's data; instead of a file
  834. '''
  835. cmd = ['process']
  836. if template_data:
  837. cmd.extend(['-f', '-'])
  838. else:
  839. cmd.append(template_name)
  840. if params:
  841. param_str = ["{}={}".format(key, str(value).replace("'", r'"')) for key, value in params.items()]
  842. cmd.append('-v')
  843. cmd.extend(param_str)
  844. results = self.openshift_cmd(cmd, output=True, input_data=template_data)
  845. if results['returncode'] != 0 or not create:
  846. return results
  847. fname = Utils.create_tmpfile(template_name + '-')
  848. yed = Yedit(fname, results['results'])
  849. yed.write()
  850. atexit.register(Utils.cleanup, [fname])
  851. return self.openshift_cmd(['create', '-f', fname])
  852. def _get(self, resource, name=None, selector=None):
  853. '''return a resource by name '''
  854. cmd = ['get', resource]
  855. if selector is not None:
  856. cmd.append('--selector={}'.format(selector))
  857. elif name is not None:
  858. cmd.append(name)
  859. cmd.extend(['-o', 'json'])
  860. rval = self.openshift_cmd(cmd, output=True)
  861. # Ensure results are retuned in an array
  862. if 'items' in rval:
  863. rval['results'] = rval['items']
  864. elif not isinstance(rval['results'], list):
  865. rval['results'] = [rval['results']]
  866. return rval
  867. def _schedulable(self, node=None, selector=None, schedulable=True):
  868. ''' perform oadm manage-node scheduable '''
  869. cmd = ['manage-node']
  870. if node:
  871. cmd.extend(node)
  872. else:
  873. cmd.append('--selector={}'.format(selector))
  874. cmd.append('--schedulable={}'.format(schedulable))
  875. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  876. def _list_pods(self, node=None, selector=None, pod_selector=None):
  877. ''' perform oadm list pods
  878. node: the node in which to list pods
  879. selector: the label selector filter if provided
  880. pod_selector: the pod selector filter if provided
  881. '''
  882. cmd = ['manage-node']
  883. if node:
  884. cmd.extend(node)
  885. else:
  886. cmd.append('--selector={}'.format(selector))
  887. if pod_selector:
  888. cmd.append('--pod-selector={}'.format(pod_selector))
  889. cmd.extend(['--list-pods', '-o', 'json'])
  890. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  891. # pylint: disable=too-many-arguments
  892. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  893. ''' perform oadm manage-node evacuate '''
  894. cmd = ['manage-node']
  895. if node:
  896. cmd.extend(node)
  897. else:
  898. cmd.append('--selector={}'.format(selector))
  899. if dry_run:
  900. cmd.append('--dry-run')
  901. if pod_selector:
  902. cmd.append('--pod-selector={}'.format(pod_selector))
  903. if grace_period:
  904. cmd.append('--grace-period={}'.format(int(grace_period)))
  905. if force:
  906. cmd.append('--force')
  907. cmd.append('--evacuate')
  908. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  909. def _version(self):
  910. ''' return the openshift version'''
  911. return self.openshift_cmd(['version'], output=True, output_type='raw')
  912. def _import_image(self, url=None, name=None, tag=None):
  913. ''' perform image import '''
  914. cmd = ['import-image']
  915. image = '{0}'.format(name)
  916. if tag:
  917. image += ':{0}'.format(tag)
  918. cmd.append(image)
  919. if url:
  920. cmd.append('--from={0}/{1}'.format(url, image))
  921. cmd.append('-n{0}'.format(self.namespace))
  922. cmd.append('--confirm')
  923. return self.openshift_cmd(cmd)
  924. def _run(self, cmds, input_data):
  925. ''' Actually executes the command. This makes mocking easier. '''
  926. curr_env = os.environ.copy()
  927. curr_env.update({'KUBECONFIG': self.kubeconfig})
  928. proc = subprocess.Popen(cmds,
  929. stdin=subprocess.PIPE,
  930. stdout=subprocess.PIPE,
  931. stderr=subprocess.PIPE,
  932. env=curr_env)
  933. stdout, stderr = proc.communicate(input_data)
  934. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  935. # pylint: disable=too-many-arguments,too-many-branches
  936. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  937. '''Base command for oc '''
  938. cmds = [self.oc_binary]
  939. if oadm:
  940. cmds.append('adm')
  941. cmds.extend(cmd)
  942. if self.all_namespaces:
  943. cmds.extend(['--all-namespaces'])
  944. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  945. cmds.extend(['-n', self.namespace])
  946. if self.verbose:
  947. print(' '.join(cmds))
  948. try:
  949. returncode, stdout, stderr = self._run(cmds, input_data)
  950. except OSError as ex:
  951. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  952. rval = {"returncode": returncode,
  953. "cmd": ' '.join(cmds)}
  954. if output_type == 'json':
  955. rval['results'] = {}
  956. if output and stdout:
  957. try:
  958. rval['results'] = json.loads(stdout)
  959. except ValueError as verr:
  960. if "No JSON object could be decoded" in verr.args:
  961. rval['err'] = verr.args
  962. elif output_type == 'raw':
  963. rval['results'] = stdout if output else ''
  964. if self.verbose:
  965. print("STDOUT: {0}".format(stdout))
  966. print("STDERR: {0}".format(stderr))
  967. if 'err' in rval or returncode != 0:
  968. rval.update({"stderr": stderr,
  969. "stdout": stdout})
  970. return rval
  971. class Utils(object): # pragma: no cover
  972. ''' utilities for openshiftcli modules '''
  973. @staticmethod
  974. def _write(filename, contents):
  975. ''' Actually write the file contents to disk. This helps with mocking. '''
  976. with open(filename, 'w') as sfd:
  977. sfd.write(str(contents))
  978. @staticmethod
  979. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  980. ''' create a file in tmp with name and contents'''
  981. tmp = Utils.create_tmpfile(prefix=rname)
  982. if ftype == 'yaml':
  983. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  984. # pylint: disable=no-member
  985. if hasattr(yaml, 'RoundTripDumper'):
  986. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  987. else:
  988. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  989. elif ftype == 'json':
  990. Utils._write(tmp, json.dumps(data))
  991. else:
  992. Utils._write(tmp, data)
  993. # Register cleanup when module is done
  994. atexit.register(Utils.cleanup, [tmp])
  995. return tmp
  996. @staticmethod
  997. def create_tmpfile_copy(inc_file):
  998. '''create a temporary copy of a file'''
  999. tmpfile = Utils.create_tmpfile('lib_openshift-')
  1000. Utils._write(tmpfile, open(inc_file).read())
  1001. # Cleanup the tmpfile
  1002. atexit.register(Utils.cleanup, [tmpfile])
  1003. return tmpfile
  1004. @staticmethod
  1005. def create_tmpfile(prefix='tmp'):
  1006. ''' Generates and returns a temporary file name '''
  1007. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  1008. return tmp.name
  1009. @staticmethod
  1010. def create_tmp_files_from_contents(content, content_type=None):
  1011. '''Turn an array of dict: filename, content into a files array'''
  1012. if not isinstance(content, list):
  1013. content = [content]
  1014. files = []
  1015. for item in content:
  1016. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  1017. item['data'],
  1018. ftype=content_type)
  1019. files.append({'name': os.path.basename(item['path']),
  1020. 'path': path})
  1021. return files
  1022. @staticmethod
  1023. def cleanup(files):
  1024. '''Clean up on exit '''
  1025. for sfile in files:
  1026. if os.path.exists(sfile):
  1027. if os.path.isdir(sfile):
  1028. shutil.rmtree(sfile)
  1029. elif os.path.isfile(sfile):
  1030. os.remove(sfile)
  1031. @staticmethod
  1032. def exists(results, _name):
  1033. ''' Check to see if the results include the name '''
  1034. if not results:
  1035. return False
  1036. if Utils.find_result(results, _name):
  1037. return True
  1038. return False
  1039. @staticmethod
  1040. def find_result(results, _name):
  1041. ''' Find the specified result by name'''
  1042. rval = None
  1043. for result in results:
  1044. if 'metadata' in result and result['metadata']['name'] == _name:
  1045. rval = result
  1046. break
  1047. return rval
  1048. @staticmethod
  1049. def get_resource_file(sfile, sfile_type='yaml'):
  1050. ''' return the service file '''
  1051. contents = None
  1052. with open(sfile) as sfd:
  1053. contents = sfd.read()
  1054. if sfile_type == 'yaml':
  1055. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1056. # pylint: disable=no-member
  1057. if hasattr(yaml, 'RoundTripLoader'):
  1058. contents = yaml.load(contents, yaml.RoundTripLoader)
  1059. else:
  1060. contents = yaml.safe_load(contents)
  1061. elif sfile_type == 'json':
  1062. contents = json.loads(contents)
  1063. return contents
  1064. @staticmethod
  1065. def filter_versions(stdout):
  1066. ''' filter the oc version output '''
  1067. version_dict = {}
  1068. version_search = ['oc', 'openshift', 'kubernetes']
  1069. for line in stdout.strip().split('\n'):
  1070. for term in version_search:
  1071. if not line:
  1072. continue
  1073. if line.startswith(term):
  1074. version_dict[term] = line.split()[-1]
  1075. # horrible hack to get openshift version in Openshift 3.2
  1076. # By default "oc version in 3.2 does not return an "openshift" version
  1077. if "openshift" not in version_dict:
  1078. version_dict["openshift"] = version_dict["oc"]
  1079. return version_dict
  1080. @staticmethod
  1081. def add_custom_versions(versions):
  1082. ''' create custom versions strings '''
  1083. versions_dict = {}
  1084. for tech, version in versions.items():
  1085. # clean up "-" from version
  1086. if "-" in version:
  1087. version = version.split("-")[0]
  1088. if version.startswith('v'):
  1089. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1090. # "v3.3.0.33" is what we have, we want "3.3"
  1091. versions_dict[tech + '_short'] = version[1:4]
  1092. return versions_dict
  1093. @staticmethod
  1094. def openshift_installed():
  1095. ''' check if openshift is installed '''
  1096. import rpm
  1097. transaction_set = rpm.TransactionSet()
  1098. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  1099. return rpmquery.count() > 0
  1100. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1101. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1102. @staticmethod
  1103. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1104. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1105. # Currently these values are autogenerated and we do not need to check them
  1106. skip = ['metadata', 'status']
  1107. if skip_keys:
  1108. skip.extend(skip_keys)
  1109. for key, value in result_def.items():
  1110. if key in skip:
  1111. continue
  1112. # Both are lists
  1113. if isinstance(value, list):
  1114. if key not in user_def:
  1115. if debug:
  1116. print('User data does not have key [%s]' % key)
  1117. print('User data: %s' % user_def)
  1118. return False
  1119. if not isinstance(user_def[key], list):
  1120. if debug:
  1121. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1122. return False
  1123. if len(user_def[key]) != len(value):
  1124. if debug:
  1125. print("List lengths are not equal.")
  1126. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1127. print("user_def: %s" % user_def[key])
  1128. print("value: %s" % value)
  1129. return False
  1130. for values in zip(user_def[key], value):
  1131. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1132. if debug:
  1133. print('sending list - list')
  1134. print(type(values[0]))
  1135. print(type(values[1]))
  1136. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1137. if not result:
  1138. print('list compare returned false')
  1139. return False
  1140. elif value != user_def[key]:
  1141. if debug:
  1142. print('value should be identical')
  1143. print(user_def[key])
  1144. print(value)
  1145. return False
  1146. # recurse on a dictionary
  1147. elif isinstance(value, dict):
  1148. if key not in user_def:
  1149. if debug:
  1150. print("user_def does not have key [%s]" % key)
  1151. return False
  1152. if not isinstance(user_def[key], dict):
  1153. if debug:
  1154. print("dict returned false: not instance of dict")
  1155. return False
  1156. # before passing ensure keys match
  1157. api_values = set(value.keys()) - set(skip)
  1158. user_values = set(user_def[key].keys()) - set(skip)
  1159. if api_values != user_values:
  1160. if debug:
  1161. print("keys are not equal in dict")
  1162. print(user_values)
  1163. print(api_values)
  1164. return False
  1165. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1166. if not result:
  1167. if debug:
  1168. print("dict returned false")
  1169. print(result)
  1170. return False
  1171. # Verify each key, value pair is the same
  1172. else:
  1173. if key not in user_def or value != user_def[key]:
  1174. if debug:
  1175. print("value not equal; user_def does not have key")
  1176. print(key)
  1177. print(value)
  1178. if key in user_def:
  1179. print(user_def[key])
  1180. return False
  1181. if debug:
  1182. print('returning true')
  1183. return True
  1184. class OpenShiftCLIConfig(object):
  1185. '''Generic Config'''
  1186. def __init__(self, rname, namespace, kubeconfig, options):
  1187. self.kubeconfig = kubeconfig
  1188. self.name = rname
  1189. self.namespace = namespace
  1190. self._options = options
  1191. @property
  1192. def config_options(self):
  1193. ''' return config options '''
  1194. return self._options
  1195. def to_option_list(self, ascommalist=''):
  1196. '''return all options as a string
  1197. if ascommalist is set to the name of a key, and
  1198. the value of that key is a dict, format the dict
  1199. as a list of comma delimited key=value pairs'''
  1200. return self.stringify(ascommalist)
  1201. def stringify(self, ascommalist=''):
  1202. ''' return the options hash as cli params in a string
  1203. if ascommalist is set to the name of a key, and
  1204. the value of that key is a dict, format the dict
  1205. as a list of comma delimited key=value pairs '''
  1206. rval = []
  1207. for key in sorted(self.config_options.keys()):
  1208. data = self.config_options[key]
  1209. if data['include'] \
  1210. and (data['value'] is not None or isinstance(data['value'], int)):
  1211. if key == ascommalist:
  1212. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1213. else:
  1214. val = data['value']
  1215. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1216. return rval
  1217. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1218. # -*- -*- -*- Begin included fragment: lib/deploymentconfig.py -*- -*- -*-
  1219. # pylint: disable=too-many-public-methods
  1220. class DeploymentConfig(Yedit):
  1221. ''' Class to model an openshift DeploymentConfig'''
  1222. default_deployment_config = '''
  1223. apiVersion: v1
  1224. kind: DeploymentConfig
  1225. metadata:
  1226. name: default_dc
  1227. namespace: default
  1228. spec:
  1229. replicas: 0
  1230. selector:
  1231. default_dc: default_dc
  1232. strategy:
  1233. resources: {}
  1234. rollingParams:
  1235. intervalSeconds: 1
  1236. maxSurge: 0
  1237. maxUnavailable: 25%
  1238. timeoutSeconds: 600
  1239. updatePercent: -25
  1240. updatePeriodSeconds: 1
  1241. type: Rolling
  1242. template:
  1243. metadata:
  1244. spec:
  1245. containers:
  1246. - env:
  1247. - name: default
  1248. value: default
  1249. image: default
  1250. imagePullPolicy: IfNotPresent
  1251. name: default_dc
  1252. ports:
  1253. - containerPort: 8000
  1254. hostPort: 8000
  1255. protocol: TCP
  1256. name: default_port
  1257. resources: {}
  1258. terminationMessagePath: /dev/termination-log
  1259. dnsPolicy: ClusterFirst
  1260. hostNetwork: true
  1261. nodeSelector:
  1262. type: compute
  1263. restartPolicy: Always
  1264. securityContext: {}
  1265. serviceAccount: default
  1266. serviceAccountName: default
  1267. terminationGracePeriodSeconds: 30
  1268. triggers:
  1269. - type: ConfigChange
  1270. '''
  1271. replicas_path = "spec.replicas"
  1272. env_path = "spec.template.spec.containers[0].env"
  1273. volumes_path = "spec.template.spec.volumes"
  1274. container_path = "spec.template.spec.containers"
  1275. volume_mounts_path = "spec.template.spec.containers[0].volumeMounts"
  1276. def __init__(self, content=None):
  1277. ''' Constructor for deploymentconfig '''
  1278. if not content:
  1279. content = DeploymentConfig.default_deployment_config
  1280. super(DeploymentConfig, self).__init__(content=content)
  1281. def add_env_value(self, key, value):
  1282. ''' add key, value pair to env array '''
  1283. rval = False
  1284. env = self.get_env_vars()
  1285. if env:
  1286. env.append({'name': key, 'value': value})
  1287. rval = True
  1288. else:
  1289. result = self.put(DeploymentConfig.env_path, {'name': key, 'value': value})
  1290. rval = result[0]
  1291. return rval
  1292. def exists_env_value(self, key, value):
  1293. ''' return whether a key, value pair exists '''
  1294. results = self.get_env_vars()
  1295. if not results:
  1296. return False
  1297. for result in results:
  1298. if result['name'] == key and result['value'] == value:
  1299. return True
  1300. return False
  1301. def exists_env_key(self, key):
  1302. ''' return whether a key, value pair exists '''
  1303. results = self.get_env_vars()
  1304. if not results:
  1305. return False
  1306. for result in results:
  1307. if result['name'] == key:
  1308. return True
  1309. return False
  1310. def get_env_var(self, key):
  1311. '''return a environment variables '''
  1312. results = self.get(DeploymentConfig.env_path) or []
  1313. if not results:
  1314. return None
  1315. for env_var in results:
  1316. if env_var['name'] == key:
  1317. return env_var
  1318. return None
  1319. def get_env_vars(self):
  1320. '''return a environment variables '''
  1321. return self.get(DeploymentConfig.env_path) or []
  1322. def delete_env_var(self, keys):
  1323. '''delete a list of keys '''
  1324. if not isinstance(keys, list):
  1325. keys = [keys]
  1326. env_vars_array = self.get_env_vars()
  1327. modified = False
  1328. idx = None
  1329. for key in keys:
  1330. for env_idx, env_var in enumerate(env_vars_array):
  1331. if env_var['name'] == key:
  1332. idx = env_idx
  1333. break
  1334. if idx:
  1335. modified = True
  1336. del env_vars_array[idx]
  1337. if modified:
  1338. return True
  1339. return False
  1340. def update_env_var(self, key, value):
  1341. '''place an env in the env var list'''
  1342. env_vars_array = self.get_env_vars()
  1343. idx = None
  1344. for env_idx, env_var in enumerate(env_vars_array):
  1345. if env_var['name'] == key:
  1346. idx = env_idx
  1347. break
  1348. if idx:
  1349. env_vars_array[idx]['value'] = value
  1350. else:
  1351. self.add_env_value(key, value)
  1352. return True
  1353. def exists_volume_mount(self, volume_mount):
  1354. ''' return whether a volume mount exists '''
  1355. exist_volume_mounts = self.get_volume_mounts()
  1356. if not exist_volume_mounts:
  1357. return False
  1358. volume_mount_found = False
  1359. for exist_volume_mount in exist_volume_mounts:
  1360. if exist_volume_mount['name'] == volume_mount['name']:
  1361. volume_mount_found = True
  1362. break
  1363. return volume_mount_found
  1364. def exists_volume(self, volume):
  1365. ''' return whether a volume exists '''
  1366. exist_volumes = self.get_volumes()
  1367. volume_found = False
  1368. for exist_volume in exist_volumes:
  1369. if exist_volume['name'] == volume['name']:
  1370. volume_found = True
  1371. break
  1372. return volume_found
  1373. def find_volume_by_name(self, volume, mounts=False):
  1374. ''' return the index of a volume '''
  1375. volumes = []
  1376. if mounts:
  1377. volumes = self.get_volume_mounts()
  1378. else:
  1379. volumes = self.get_volumes()
  1380. for exist_volume in volumes:
  1381. if exist_volume['name'] == volume['name']:
  1382. return exist_volume
  1383. return None
  1384. def get_replicas(self):
  1385. ''' return replicas setting '''
  1386. return self.get(DeploymentConfig.replicas_path)
  1387. def get_volume_mounts(self):
  1388. '''return volume mount information '''
  1389. return self.get_volumes(mounts=True)
  1390. def get_volumes(self, mounts=False):
  1391. '''return volume mount information '''
  1392. if mounts:
  1393. return self.get(DeploymentConfig.volume_mounts_path) or []
  1394. return self.get(DeploymentConfig.volumes_path) or []
  1395. def delete_volume_by_name(self, volume):
  1396. '''delete a volume '''
  1397. modified = False
  1398. exist_volume_mounts = self.get_volume_mounts()
  1399. exist_volumes = self.get_volumes()
  1400. del_idx = None
  1401. for idx, exist_volume in enumerate(exist_volumes):
  1402. if 'name' in exist_volume and exist_volume['name'] == volume['name']:
  1403. del_idx = idx
  1404. break
  1405. if del_idx != None:
  1406. del exist_volumes[del_idx]
  1407. modified = True
  1408. del_idx = None
  1409. for idx, exist_volume_mount in enumerate(exist_volume_mounts):
  1410. if 'name' in exist_volume_mount and exist_volume_mount['name'] == volume['name']:
  1411. del_idx = idx
  1412. break
  1413. if del_idx != None:
  1414. del exist_volume_mounts[idx]
  1415. modified = True
  1416. return modified
  1417. def add_volume_mount(self, volume_mount):
  1418. ''' add a volume or volume mount to the proper location '''
  1419. exist_volume_mounts = self.get_volume_mounts()
  1420. if not exist_volume_mounts and volume_mount:
  1421. self.put(DeploymentConfig.volume_mounts_path, [volume_mount])
  1422. else:
  1423. exist_volume_mounts.append(volume_mount)
  1424. def add_volume(self, volume):
  1425. ''' add a volume or volume mount to the proper location '''
  1426. exist_volumes = self.get_volumes()
  1427. if not volume:
  1428. return
  1429. if not exist_volumes:
  1430. self.put(DeploymentConfig.volumes_path, [volume])
  1431. else:
  1432. exist_volumes.append(volume)
  1433. def update_replicas(self, replicas):
  1434. ''' update replicas value '''
  1435. self.put(DeploymentConfig.replicas_path, replicas)
  1436. def update_volume(self, volume):
  1437. '''place an env in the env var list'''
  1438. exist_volumes = self.get_volumes()
  1439. if not volume:
  1440. return False
  1441. # update the volume
  1442. update_idx = None
  1443. for idx, exist_vol in enumerate(exist_volumes):
  1444. if exist_vol['name'] == volume['name']:
  1445. update_idx = idx
  1446. break
  1447. if update_idx != None:
  1448. exist_volumes[update_idx] = volume
  1449. else:
  1450. self.add_volume(volume)
  1451. return True
  1452. def update_volume_mount(self, volume_mount):
  1453. '''place an env in the env var list'''
  1454. modified = False
  1455. exist_volume_mounts = self.get_volume_mounts()
  1456. if not volume_mount:
  1457. return False
  1458. # update the volume mount
  1459. for exist_vol_mount in exist_volume_mounts:
  1460. if exist_vol_mount['name'] == volume_mount['name']:
  1461. if 'mountPath' in exist_vol_mount and \
  1462. str(exist_vol_mount['mountPath']) != str(volume_mount['mountPath']):
  1463. exist_vol_mount['mountPath'] = volume_mount['mountPath']
  1464. modified = True
  1465. break
  1466. if not modified:
  1467. self.add_volume_mount(volume_mount)
  1468. modified = True
  1469. return modified
  1470. def needs_update_volume(self, volume, volume_mount):
  1471. ''' verify a volume update is needed '''
  1472. exist_volume = self.find_volume_by_name(volume)
  1473. exist_volume_mount = self.find_volume_by_name(volume, mounts=True)
  1474. results = []
  1475. results.append(exist_volume['name'] == volume['name'])
  1476. if 'secret' in volume:
  1477. results.append('secret' in exist_volume)
  1478. results.append(exist_volume['secret']['secretName'] == volume['secret']['secretName'])
  1479. results.append(exist_volume_mount['name'] == volume_mount['name'])
  1480. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1481. elif 'emptyDir' in volume:
  1482. results.append(exist_volume_mount['name'] == volume['name'])
  1483. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1484. elif 'persistentVolumeClaim' in volume:
  1485. pvc = 'persistentVolumeClaim'
  1486. results.append(pvc in exist_volume)
  1487. if results[-1]:
  1488. results.append(exist_volume[pvc]['claimName'] == volume[pvc]['claimName'])
  1489. if 'claimSize' in volume[pvc]:
  1490. results.append(exist_volume[pvc]['claimSize'] == volume[pvc]['claimSize'])
  1491. elif 'hostpath' in volume:
  1492. results.append('hostPath' in exist_volume)
  1493. results.append(exist_volume['hostPath']['path'] == volume_mount['mountPath'])
  1494. return not all(results)
  1495. def needs_update_replicas(self, replicas):
  1496. ''' verify whether a replica update is needed '''
  1497. current_reps = self.get(DeploymentConfig.replicas_path)
  1498. return not current_reps == replicas
  1499. # -*- -*- -*- End included fragment: lib/deploymentconfig.py -*- -*- -*-
  1500. # -*- -*- -*- Begin included fragment: lib/volume.py -*- -*- -*-
  1501. class Volume(object):
  1502. ''' Class to represent an openshift volume object'''
  1503. volume_mounts_path = {"pod": "spec.containers[0].volumeMounts",
  1504. "dc": "spec.template.spec.containers[0].volumeMounts",
  1505. "rc": "spec.template.spec.containers[0].volumeMounts",
  1506. }
  1507. volumes_path = {"pod": "spec.volumes",
  1508. "dc": "spec.template.spec.volumes",
  1509. "rc": "spec.template.spec.volumes",
  1510. }
  1511. @staticmethod
  1512. def create_volume_structure(volume_info):
  1513. ''' return a properly structured volume '''
  1514. volume_mount = None
  1515. volume = {'name': volume_info['name']}
  1516. volume_type = volume_info['type'].lower()
  1517. if volume_type == 'secret':
  1518. volume['secret'] = {}
  1519. volume[volume_info['type']] = {'secretName': volume_info['secret_name']}
  1520. volume_mount = {'mountPath': volume_info['path'],
  1521. 'name': volume_info['name']}
  1522. elif volume_type == 'emptydir':
  1523. volume['emptyDir'] = {}
  1524. volume_mount = {'mountPath': volume_info['path'],
  1525. 'name': volume_info['name']}
  1526. elif volume_type == 'pvc' or volume_type == 'persistentvolumeclaim':
  1527. volume['persistentVolumeClaim'] = {}
  1528. volume['persistentVolumeClaim']['claimName'] = volume_info['claimName']
  1529. volume['persistentVolumeClaim']['claimSize'] = volume_info['claimSize']
  1530. elif volume_type == 'hostpath':
  1531. volume['hostPath'] = {}
  1532. volume['hostPath']['path'] = volume_info['path']
  1533. elif volume_type == 'configmap':
  1534. volume['configMap'] = {}
  1535. volume['configMap']['name'] = volume_info['configmap_name']
  1536. volume_mount = {'mountPath': volume_info['path'],
  1537. 'name': volume_info['name']}
  1538. return (volume, volume_mount)
  1539. # -*- -*- -*- End included fragment: lib/volume.py -*- -*- -*-
  1540. # -*- -*- -*- Begin included fragment: class/oc_volume.py -*- -*- -*-
  1541. # pylint: disable=too-many-instance-attributes
  1542. class OCVolume(OpenShiftCLI):
  1543. ''' Class to wrap the oc command line tools '''
  1544. volume_mounts_path = {"pod": "spec.containers[0].volumeMounts",
  1545. "dc": "spec.template.spec.containers[0].volumeMounts",
  1546. "rc": "spec.template.spec.containers[0].volumeMounts",
  1547. }
  1548. volumes_path = {"pod": "spec.volumes",
  1549. "dc": "spec.template.spec.volumes",
  1550. "rc": "spec.template.spec.volumes",
  1551. }
  1552. # pylint allows 5
  1553. # pylint: disable=too-many-arguments
  1554. def __init__(self,
  1555. kind,
  1556. resource_name,
  1557. namespace,
  1558. vol_name,
  1559. mount_path,
  1560. mount_type,
  1561. secret_name,
  1562. claim_size,
  1563. claim_name,
  1564. configmap_name,
  1565. kubeconfig='/etc/origin/master/admin.kubeconfig',
  1566. verbose=False):
  1567. ''' Constructor for OCVolume '''
  1568. super(OCVolume, self).__init__(namespace, kubeconfig)
  1569. self.kind = kind
  1570. self.volume_info = {'name': vol_name,
  1571. 'secret_name': secret_name,
  1572. 'path': mount_path,
  1573. 'type': mount_type,
  1574. 'claimSize': claim_size,
  1575. 'claimName': claim_name,
  1576. 'configmap_name': configmap_name}
  1577. self.volume, self.volume_mount = Volume.create_volume_structure(self.volume_info)
  1578. self.name = resource_name
  1579. self.namespace = namespace
  1580. self.kubeconfig = kubeconfig
  1581. self.verbose = verbose
  1582. self._resource = None
  1583. @property
  1584. def resource(self):
  1585. ''' property function for resource var '''
  1586. if not self._resource:
  1587. self.get()
  1588. return self._resource
  1589. @resource.setter
  1590. def resource(self, data):
  1591. ''' setter function for resource var '''
  1592. self._resource = data
  1593. def exists(self):
  1594. ''' return whether a volume exists '''
  1595. volume_mount_found = False
  1596. volume_found = self.resource.exists_volume(self.volume)
  1597. if not self.volume_mount and volume_found:
  1598. return True
  1599. if self.volume_mount:
  1600. volume_mount_found = self.resource.exists_volume_mount(self.volume_mount)
  1601. if volume_found and self.volume_mount and volume_mount_found:
  1602. return True
  1603. return False
  1604. def get(self):
  1605. '''return volume information '''
  1606. vol = self._get(self.kind, self.name)
  1607. if vol['returncode'] == 0:
  1608. if self.kind == 'dc':
  1609. self.resource = DeploymentConfig(content=vol['results'][0])
  1610. vol['results'] = self.resource.get_volumes()
  1611. return vol
  1612. def delete(self):
  1613. '''remove a volume'''
  1614. self.resource.delete_volume_by_name(self.volume)
  1615. return self._replace_content(self.kind, self.name, self.resource.yaml_dict)
  1616. def put(self):
  1617. '''place volume into dc '''
  1618. self.resource.update_volume(self.volume)
  1619. self.resource.get_volumes()
  1620. self.resource.update_volume_mount(self.volume_mount)
  1621. return self._replace_content(self.kind, self.name, self.resource.yaml_dict)
  1622. def needs_update(self):
  1623. ''' verify an update is needed '''
  1624. return self.resource.needs_update_volume(self.volume, self.volume_mount)
  1625. # pylint: disable=too-many-branches,too-many-return-statements
  1626. @staticmethod
  1627. def run_ansible(params, check_mode=False):
  1628. '''run the idempotent ansible code'''
  1629. oc_volume = OCVolume(params['kind'],
  1630. params['name'],
  1631. params['namespace'],
  1632. params['vol_name'],
  1633. params['mount_path'],
  1634. params['mount_type'],
  1635. # secrets
  1636. params['secret_name'],
  1637. # pvc
  1638. params['claim_size'],
  1639. params['claim_name'],
  1640. # configmap
  1641. params['configmap_name'],
  1642. kubeconfig=params['kubeconfig'],
  1643. verbose=params['debug'])
  1644. state = params['state']
  1645. api_rval = oc_volume.get()
  1646. if api_rval['returncode'] != 0:
  1647. return {'failed': True, 'msg': api_rval}
  1648. #####
  1649. # Get
  1650. #####
  1651. if state == 'list':
  1652. return {'changed': False, 'results': api_rval['results'], 'state': state}
  1653. ########
  1654. # Delete
  1655. ########
  1656. if state == 'absent':
  1657. if oc_volume.exists():
  1658. if check_mode:
  1659. return {'changed': False, 'msg': 'CHECK_MODE: Would have performed a delete.'}
  1660. api_rval = oc_volume.delete()
  1661. if api_rval['returncode'] != 0:
  1662. return {'failed': True, 'msg': api_rval}
  1663. return {'changed': True, 'results': api_rval, 'state': state}
  1664. return {'changed': False, 'state': state}
  1665. if state == 'present':
  1666. ########
  1667. # Create
  1668. ########
  1669. if not oc_volume.exists():
  1670. if check_mode:
  1671. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a create.'}
  1672. # Create it here
  1673. api_rval = oc_volume.put()
  1674. if api_rval['returncode'] != 0:
  1675. return {'failed': True, 'msg': api_rval}
  1676. # return the created object
  1677. api_rval = oc_volume.get()
  1678. if api_rval['returncode'] != 0:
  1679. return {'failed': True, 'msg': api_rval}
  1680. return {'changed': True, 'results': api_rval, 'state': state}
  1681. ########
  1682. # Update
  1683. ########
  1684. if oc_volume.needs_update():
  1685. api_rval = oc_volume.put()
  1686. if api_rval['returncode'] != 0:
  1687. return {'failed': True, 'msg': api_rval}
  1688. # return the created object
  1689. api_rval = oc_volume.get()
  1690. if api_rval['returncode'] != 0:
  1691. return {'failed': True, 'msg': api_rval}
  1692. return {'changed': True, 'results': api_rval, state: state}
  1693. return {'changed': False, 'results': api_rval, state: state}
  1694. return {'failed': True, 'msg': 'Unknown state passed. {}'.format(state)}
  1695. # -*- -*- -*- End included fragment: class/oc_volume.py -*- -*- -*-
  1696. # -*- -*- -*- Begin included fragment: ansible/oc_volume.py -*- -*- -*-
  1697. def main():
  1698. '''
  1699. ansible oc module for volumes
  1700. '''
  1701. module = AnsibleModule(
  1702. argument_spec=dict(
  1703. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1704. state=dict(default='present', type='str',
  1705. choices=['present', 'absent', 'list']),
  1706. debug=dict(default=False, type='bool'),
  1707. kind=dict(default='dc', choices=['dc', 'rc', 'pods'], type='str'),
  1708. namespace=dict(default='default', type='str'),
  1709. vol_name=dict(default=None, type='str'),
  1710. name=dict(default=None, type='str'),
  1711. mount_type=dict(default=None,
  1712. choices=['emptydir', 'hostpath', 'secret', 'pvc', 'configmap'],
  1713. type='str'),
  1714. mount_path=dict(default=None, type='str'),
  1715. # secrets require a name
  1716. secret_name=dict(default=None, type='str'),
  1717. # pvc requires a size
  1718. claim_size=dict(default=None, type='str'),
  1719. claim_name=dict(default=None, type='str'),
  1720. # configmap requires a name
  1721. configmap_name=dict(default=None, type='str'),
  1722. ),
  1723. supports_check_mode=True,
  1724. )
  1725. rval = OCVolume.run_ansible(module.params, module.check_mode)
  1726. if 'failed' in rval:
  1727. module.fail_json(**rval)
  1728. module.exit_json(**rval)
  1729. if __name__ == '__main__':
  1730. main()
  1731. # -*- -*- -*- End included fragment: ansible/oc_volume.py -*- -*- -*-