oc_volume.py 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139
  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, field_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. if field_selector is not None:
  858. cmd.append('--field-selector={}'.format(field_selector))
  859. # Name cannot be used with selector or field_selector.
  860. if selector is None and field_selector is None and name is not None:
  861. cmd.append(name)
  862. cmd.extend(['-o', 'json'])
  863. rval = self.openshift_cmd(cmd, output=True)
  864. # Ensure results are retuned in an array
  865. if 'items' in rval:
  866. rval['results'] = rval['items']
  867. elif not isinstance(rval['results'], list):
  868. rval['results'] = [rval['results']]
  869. return rval
  870. def _schedulable(self, node=None, selector=None, schedulable=True):
  871. ''' perform oadm manage-node scheduable '''
  872. cmd = ['manage-node']
  873. if node:
  874. cmd.extend(node)
  875. else:
  876. cmd.append('--selector={}'.format(selector))
  877. cmd.append('--schedulable={}'.format(schedulable))
  878. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  879. def _list_pods(self, node=None, selector=None, pod_selector=None):
  880. ''' perform oadm list pods
  881. node: the node in which to list pods
  882. selector: the label selector filter if provided
  883. pod_selector: the pod selector filter if provided
  884. '''
  885. cmd = ['manage-node']
  886. if node:
  887. cmd.extend(node)
  888. else:
  889. cmd.append('--selector={}'.format(selector))
  890. if pod_selector:
  891. cmd.append('--pod-selector={}'.format(pod_selector))
  892. cmd.extend(['--list-pods', '-o', 'json'])
  893. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  894. # pylint: disable=too-many-arguments
  895. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  896. ''' perform oadm manage-node evacuate '''
  897. cmd = ['manage-node']
  898. if node:
  899. cmd.extend(node)
  900. else:
  901. cmd.append('--selector={}'.format(selector))
  902. if dry_run:
  903. cmd.append('--dry-run')
  904. if pod_selector:
  905. cmd.append('--pod-selector={}'.format(pod_selector))
  906. if grace_period:
  907. cmd.append('--grace-period={}'.format(int(grace_period)))
  908. if force:
  909. cmd.append('--force')
  910. cmd.append('--evacuate')
  911. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  912. def _version(self):
  913. ''' return the openshift version'''
  914. return self.openshift_cmd(['version'], output=True, output_type='raw')
  915. def _import_image(self, url=None, name=None, tag=None):
  916. ''' perform image import '''
  917. cmd = ['import-image']
  918. image = '{0}'.format(name)
  919. if tag:
  920. image += ':{0}'.format(tag)
  921. cmd.append(image)
  922. if url:
  923. cmd.append('--from={0}/{1}'.format(url, image))
  924. cmd.append('-n{0}'.format(self.namespace))
  925. cmd.append('--confirm')
  926. return self.openshift_cmd(cmd)
  927. def _run(self, cmds, input_data):
  928. ''' Actually executes the command. This makes mocking easier. '''
  929. curr_env = os.environ.copy()
  930. curr_env.update({'KUBECONFIG': self.kubeconfig})
  931. proc = subprocess.Popen(cmds,
  932. stdin=subprocess.PIPE,
  933. stdout=subprocess.PIPE,
  934. stderr=subprocess.PIPE,
  935. env=curr_env)
  936. stdout, stderr = proc.communicate(input_data)
  937. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  938. # pylint: disable=too-many-arguments,too-many-branches
  939. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  940. '''Base command for oc '''
  941. cmds = [self.oc_binary]
  942. if oadm:
  943. cmds.append('adm')
  944. cmds.extend(cmd)
  945. if self.all_namespaces:
  946. cmds.extend(['--all-namespaces'])
  947. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  948. cmds.extend(['-n', self.namespace])
  949. if self.verbose:
  950. print(' '.join(cmds))
  951. try:
  952. returncode, stdout, stderr = self._run(cmds, input_data)
  953. except OSError as ex:
  954. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  955. rval = {"returncode": returncode,
  956. "cmd": ' '.join(cmds)}
  957. if output_type == 'json':
  958. rval['results'] = {}
  959. if output and stdout:
  960. try:
  961. rval['results'] = json.loads(stdout)
  962. except ValueError as verr:
  963. if "No JSON object could be decoded" in verr.args:
  964. rval['err'] = verr.args
  965. elif output_type == 'raw':
  966. rval['results'] = stdout if output else ''
  967. if self.verbose:
  968. print("STDOUT: {0}".format(stdout))
  969. print("STDERR: {0}".format(stderr))
  970. if 'err' in rval or returncode != 0:
  971. rval.update({"stderr": stderr,
  972. "stdout": stdout})
  973. return rval
  974. class Utils(object): # pragma: no cover
  975. ''' utilities for openshiftcli modules '''
  976. @staticmethod
  977. def _write(filename, contents):
  978. ''' Actually write the file contents to disk. This helps with mocking. '''
  979. with open(filename, 'w') as sfd:
  980. sfd.write(str(contents))
  981. @staticmethod
  982. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  983. ''' create a file in tmp with name and contents'''
  984. tmp = Utils.create_tmpfile(prefix=rname)
  985. if ftype == 'yaml':
  986. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  987. # pylint: disable=no-member
  988. if hasattr(yaml, 'RoundTripDumper'):
  989. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  990. else:
  991. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  992. elif ftype == 'json':
  993. Utils._write(tmp, json.dumps(data))
  994. else:
  995. Utils._write(tmp, data)
  996. # Register cleanup when module is done
  997. atexit.register(Utils.cleanup, [tmp])
  998. return tmp
  999. @staticmethod
  1000. def create_tmpfile_copy(inc_file):
  1001. '''create a temporary copy of a file'''
  1002. tmpfile = Utils.create_tmpfile('lib_openshift-')
  1003. Utils._write(tmpfile, open(inc_file).read())
  1004. # Cleanup the tmpfile
  1005. atexit.register(Utils.cleanup, [tmpfile])
  1006. return tmpfile
  1007. @staticmethod
  1008. def create_tmpfile(prefix='tmp'):
  1009. ''' Generates and returns a temporary file name '''
  1010. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  1011. return tmp.name
  1012. @staticmethod
  1013. def create_tmp_files_from_contents(content, content_type=None):
  1014. '''Turn an array of dict: filename, content into a files array'''
  1015. if not isinstance(content, list):
  1016. content = [content]
  1017. files = []
  1018. for item in content:
  1019. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  1020. item['data'],
  1021. ftype=content_type)
  1022. files.append({'name': os.path.basename(item['path']),
  1023. 'path': path})
  1024. return files
  1025. @staticmethod
  1026. def cleanup(files):
  1027. '''Clean up on exit '''
  1028. for sfile in files:
  1029. if os.path.exists(sfile):
  1030. if os.path.isdir(sfile):
  1031. shutil.rmtree(sfile)
  1032. elif os.path.isfile(sfile):
  1033. os.remove(sfile)
  1034. @staticmethod
  1035. def exists(results, _name):
  1036. ''' Check to see if the results include the name '''
  1037. if not results:
  1038. return False
  1039. if Utils.find_result(results, _name):
  1040. return True
  1041. return False
  1042. @staticmethod
  1043. def find_result(results, _name):
  1044. ''' Find the specified result by name'''
  1045. rval = None
  1046. for result in results:
  1047. if 'metadata' in result and result['metadata']['name'] == _name:
  1048. rval = result
  1049. break
  1050. return rval
  1051. @staticmethod
  1052. def get_resource_file(sfile, sfile_type='yaml'):
  1053. ''' return the service file '''
  1054. contents = None
  1055. with open(sfile) as sfd:
  1056. contents = sfd.read()
  1057. if sfile_type == 'yaml':
  1058. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1059. # pylint: disable=no-member
  1060. if hasattr(yaml, 'RoundTripLoader'):
  1061. contents = yaml.load(contents, yaml.RoundTripLoader)
  1062. else:
  1063. contents = yaml.safe_load(contents)
  1064. elif sfile_type == 'json':
  1065. contents = json.loads(contents)
  1066. return contents
  1067. @staticmethod
  1068. def filter_versions(stdout):
  1069. ''' filter the oc version output '''
  1070. version_dict = {}
  1071. version_search = ['oc', 'openshift', 'kubernetes']
  1072. for line in stdout.strip().split('\n'):
  1073. for term in version_search:
  1074. if not line:
  1075. continue
  1076. if line.startswith(term):
  1077. version_dict[term] = line.split()[-1]
  1078. # horrible hack to get openshift version in Openshift 3.2
  1079. # By default "oc version in 3.2 does not return an "openshift" version
  1080. if "openshift" not in version_dict:
  1081. version_dict["openshift"] = version_dict["oc"]
  1082. return version_dict
  1083. @staticmethod
  1084. def add_custom_versions(versions):
  1085. ''' create custom versions strings '''
  1086. versions_dict = {}
  1087. for tech, version in versions.items():
  1088. # clean up "-" from version
  1089. if "-" in version:
  1090. version = version.split("-")[0]
  1091. if version.startswith('v'):
  1092. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1093. # "v3.3.0.33" is what we have, we want "3.3"
  1094. versions_dict[tech + '_short'] = version[1:4]
  1095. return versions_dict
  1096. @staticmethod
  1097. def openshift_installed():
  1098. ''' check if openshift is installed '''
  1099. import rpm
  1100. transaction_set = rpm.TransactionSet()
  1101. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  1102. return rpmquery.count() > 0
  1103. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1104. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1105. @staticmethod
  1106. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1107. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1108. # Currently these values are autogenerated and we do not need to check them
  1109. skip = ['metadata', 'status']
  1110. if skip_keys:
  1111. skip.extend(skip_keys)
  1112. for key, value in result_def.items():
  1113. if key in skip:
  1114. continue
  1115. # Both are lists
  1116. if isinstance(value, list):
  1117. if key not in user_def:
  1118. if debug:
  1119. print('User data does not have key [%s]' % key)
  1120. print('User data: %s' % user_def)
  1121. return False
  1122. if not isinstance(user_def[key], list):
  1123. if debug:
  1124. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1125. return False
  1126. if len(user_def[key]) != len(value):
  1127. if debug:
  1128. print("List lengths are not equal.")
  1129. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1130. print("user_def: %s" % user_def[key])
  1131. print("value: %s" % value)
  1132. return False
  1133. for values in zip(user_def[key], value):
  1134. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1135. if debug:
  1136. print('sending list - list')
  1137. print(type(values[0]))
  1138. print(type(values[1]))
  1139. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1140. if not result:
  1141. print('list compare returned false')
  1142. return False
  1143. elif value != user_def[key]:
  1144. if debug:
  1145. print('value should be identical')
  1146. print(user_def[key])
  1147. print(value)
  1148. return False
  1149. # recurse on a dictionary
  1150. elif isinstance(value, dict):
  1151. if key not in user_def:
  1152. if debug:
  1153. print("user_def does not have key [%s]" % key)
  1154. return False
  1155. if not isinstance(user_def[key], dict):
  1156. if debug:
  1157. print("dict returned false: not instance of dict")
  1158. return False
  1159. # before passing ensure keys match
  1160. api_values = set(value.keys()) - set(skip)
  1161. user_values = set(user_def[key].keys()) - set(skip)
  1162. if api_values != user_values:
  1163. if debug:
  1164. print("keys are not equal in dict")
  1165. print(user_values)
  1166. print(api_values)
  1167. return False
  1168. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1169. if not result:
  1170. if debug:
  1171. print("dict returned false")
  1172. print(result)
  1173. return False
  1174. # Verify each key, value pair is the same
  1175. else:
  1176. if key not in user_def or value != user_def[key]:
  1177. if debug:
  1178. print("value not equal; user_def does not have key")
  1179. print(key)
  1180. print(value)
  1181. if key in user_def:
  1182. print(user_def[key])
  1183. return False
  1184. if debug:
  1185. print('returning true')
  1186. return True
  1187. class OpenShiftCLIConfig(object):
  1188. '''Generic Config'''
  1189. def __init__(self, rname, namespace, kubeconfig, options):
  1190. self.kubeconfig = kubeconfig
  1191. self.name = rname
  1192. self.namespace = namespace
  1193. self._options = options
  1194. @property
  1195. def config_options(self):
  1196. ''' return config options '''
  1197. return self._options
  1198. def to_option_list(self, ascommalist=''):
  1199. '''return all options as a string
  1200. if ascommalist is set to the name of a key, and
  1201. the value of that key is a dict, format the dict
  1202. as a list of comma delimited key=value pairs'''
  1203. return self.stringify(ascommalist)
  1204. def stringify(self, ascommalist=''):
  1205. ''' return the options hash as cli params in a string
  1206. if ascommalist is set to the name of a key, and
  1207. the value of that key is a dict, format the dict
  1208. as a list of comma delimited key=value pairs '''
  1209. rval = []
  1210. for key in sorted(self.config_options.keys()):
  1211. data = self.config_options[key]
  1212. if data['include'] \
  1213. and (data['value'] is not None or isinstance(data['value'], int)):
  1214. if key == ascommalist:
  1215. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1216. else:
  1217. val = data['value']
  1218. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1219. return rval
  1220. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1221. # -*- -*- -*- Begin included fragment: lib/deploymentconfig.py -*- -*- -*-
  1222. # pylint: disable=too-many-public-methods
  1223. class DeploymentConfig(Yedit):
  1224. ''' Class to model an openshift DeploymentConfig'''
  1225. default_deployment_config = '''
  1226. apiVersion: v1
  1227. kind: DeploymentConfig
  1228. metadata:
  1229. name: default_dc
  1230. namespace: default
  1231. spec:
  1232. replicas: 0
  1233. selector:
  1234. default_dc: default_dc
  1235. strategy:
  1236. resources: {}
  1237. rollingParams:
  1238. intervalSeconds: 1
  1239. maxSurge: 0
  1240. maxUnavailable: 25%
  1241. timeoutSeconds: 600
  1242. updatePercent: -25
  1243. updatePeriodSeconds: 1
  1244. type: Rolling
  1245. template:
  1246. metadata:
  1247. spec:
  1248. containers:
  1249. - env:
  1250. - name: default
  1251. value: default
  1252. image: default
  1253. imagePullPolicy: IfNotPresent
  1254. name: default_dc
  1255. ports:
  1256. - containerPort: 8000
  1257. hostPort: 8000
  1258. protocol: TCP
  1259. name: default_port
  1260. resources: {}
  1261. terminationMessagePath: /dev/termination-log
  1262. dnsPolicy: ClusterFirst
  1263. hostNetwork: true
  1264. nodeSelector:
  1265. type: compute
  1266. restartPolicy: Always
  1267. securityContext: {}
  1268. serviceAccount: default
  1269. serviceAccountName: default
  1270. terminationGracePeriodSeconds: 30
  1271. triggers:
  1272. - type: ConfigChange
  1273. '''
  1274. replicas_path = "spec.replicas"
  1275. env_path = "spec.template.spec.containers[0].env"
  1276. volumes_path = "spec.template.spec.volumes"
  1277. container_path = "spec.template.spec.containers"
  1278. volume_mounts_path = "spec.template.spec.containers[0].volumeMounts"
  1279. def __init__(self, content=None):
  1280. ''' Constructor for deploymentconfig '''
  1281. if not content:
  1282. content = DeploymentConfig.default_deployment_config
  1283. super(DeploymentConfig, self).__init__(content=content)
  1284. def add_env_value(self, key, value):
  1285. ''' add key, value pair to env array '''
  1286. rval = False
  1287. env = self.get_env_vars()
  1288. if env:
  1289. env.append({'name': key, 'value': value})
  1290. rval = True
  1291. else:
  1292. result = self.put(DeploymentConfig.env_path, {'name': key, 'value': value})
  1293. rval = result[0]
  1294. return rval
  1295. def exists_env_value(self, key, value):
  1296. ''' return whether a key, value pair exists '''
  1297. results = self.get_env_vars()
  1298. if not results:
  1299. return False
  1300. for result in results:
  1301. if result['name'] == key and result['value'] == value:
  1302. return True
  1303. return False
  1304. def exists_env_key(self, key):
  1305. ''' return whether a key, value pair exists '''
  1306. results = self.get_env_vars()
  1307. if not results:
  1308. return False
  1309. for result in results:
  1310. if result['name'] == key:
  1311. return True
  1312. return False
  1313. def get_env_var(self, key):
  1314. '''return a environment variables '''
  1315. results = self.get(DeploymentConfig.env_path) or []
  1316. if not results:
  1317. return None
  1318. for env_var in results:
  1319. if env_var['name'] == key:
  1320. return env_var
  1321. return None
  1322. def get_env_vars(self):
  1323. '''return a environment variables '''
  1324. return self.get(DeploymentConfig.env_path) or []
  1325. def delete_env_var(self, keys):
  1326. '''delete a list of keys '''
  1327. if not isinstance(keys, list):
  1328. keys = [keys]
  1329. env_vars_array = self.get_env_vars()
  1330. modified = False
  1331. idx = None
  1332. for key in keys:
  1333. for env_idx, env_var in enumerate(env_vars_array):
  1334. if env_var['name'] == key:
  1335. idx = env_idx
  1336. break
  1337. if idx:
  1338. modified = True
  1339. del env_vars_array[idx]
  1340. if modified:
  1341. return True
  1342. return False
  1343. def update_env_var(self, key, value):
  1344. '''place an env in the env var list'''
  1345. env_vars_array = self.get_env_vars()
  1346. idx = None
  1347. for env_idx, env_var in enumerate(env_vars_array):
  1348. if env_var['name'] == key:
  1349. idx = env_idx
  1350. break
  1351. if idx:
  1352. env_vars_array[idx]['value'] = value
  1353. else:
  1354. self.add_env_value(key, value)
  1355. return True
  1356. def exists_volume_mount(self, volume_mount):
  1357. ''' return whether a volume mount exists '''
  1358. exist_volume_mounts = self.get_volume_mounts()
  1359. if not exist_volume_mounts:
  1360. return False
  1361. volume_mount_found = False
  1362. for exist_volume_mount in exist_volume_mounts:
  1363. if exist_volume_mount['name'] == volume_mount['name']:
  1364. volume_mount_found = True
  1365. break
  1366. return volume_mount_found
  1367. def exists_volume(self, volume):
  1368. ''' return whether a volume exists '''
  1369. exist_volumes = self.get_volumes()
  1370. volume_found = False
  1371. for exist_volume in exist_volumes:
  1372. if exist_volume['name'] == volume['name']:
  1373. volume_found = True
  1374. break
  1375. return volume_found
  1376. def find_volume_by_name(self, volume, mounts=False):
  1377. ''' return the index of a volume '''
  1378. volumes = []
  1379. if mounts:
  1380. volumes = self.get_volume_mounts()
  1381. else:
  1382. volumes = self.get_volumes()
  1383. for exist_volume in volumes:
  1384. if exist_volume['name'] == volume['name']:
  1385. return exist_volume
  1386. return None
  1387. def get_replicas(self):
  1388. ''' return replicas setting '''
  1389. return self.get(DeploymentConfig.replicas_path)
  1390. def get_volume_mounts(self):
  1391. '''return volume mount information '''
  1392. return self.get_volumes(mounts=True)
  1393. def get_volumes(self, mounts=False):
  1394. '''return volume mount information '''
  1395. if mounts:
  1396. return self.get(DeploymentConfig.volume_mounts_path) or []
  1397. return self.get(DeploymentConfig.volumes_path) or []
  1398. def delete_volume_by_name(self, volume):
  1399. '''delete a volume '''
  1400. modified = False
  1401. exist_volume_mounts = self.get_volume_mounts()
  1402. exist_volumes = self.get_volumes()
  1403. del_idx = None
  1404. for idx, exist_volume in enumerate(exist_volumes):
  1405. if 'name' in exist_volume and exist_volume['name'] == volume['name']:
  1406. del_idx = idx
  1407. break
  1408. if del_idx != None:
  1409. del exist_volumes[del_idx]
  1410. modified = True
  1411. del_idx = None
  1412. for idx, exist_volume_mount in enumerate(exist_volume_mounts):
  1413. if 'name' in exist_volume_mount and exist_volume_mount['name'] == volume['name']:
  1414. del_idx = idx
  1415. break
  1416. if del_idx != None:
  1417. del exist_volume_mounts[idx]
  1418. modified = True
  1419. return modified
  1420. def add_volume_mount(self, volume_mount):
  1421. ''' add a volume or volume mount to the proper location '''
  1422. exist_volume_mounts = self.get_volume_mounts()
  1423. if not exist_volume_mounts and volume_mount:
  1424. self.put(DeploymentConfig.volume_mounts_path, [volume_mount])
  1425. else:
  1426. exist_volume_mounts.append(volume_mount)
  1427. def add_volume(self, volume):
  1428. ''' add a volume or volume mount to the proper location '''
  1429. exist_volumes = self.get_volumes()
  1430. if not volume:
  1431. return
  1432. if not exist_volumes:
  1433. self.put(DeploymentConfig.volumes_path, [volume])
  1434. else:
  1435. exist_volumes.append(volume)
  1436. def update_replicas(self, replicas):
  1437. ''' update replicas value '''
  1438. self.put(DeploymentConfig.replicas_path, replicas)
  1439. def update_volume(self, volume):
  1440. '''place an env in the env var list'''
  1441. exist_volumes = self.get_volumes()
  1442. if not volume:
  1443. return False
  1444. # update the volume
  1445. update_idx = None
  1446. for idx, exist_vol in enumerate(exist_volumes):
  1447. if exist_vol['name'] == volume['name']:
  1448. update_idx = idx
  1449. break
  1450. if update_idx != None:
  1451. exist_volumes[update_idx] = volume
  1452. else:
  1453. self.add_volume(volume)
  1454. return True
  1455. def update_volume_mount(self, volume_mount):
  1456. '''place an env in the env var list'''
  1457. modified = False
  1458. exist_volume_mounts = self.get_volume_mounts()
  1459. if not volume_mount:
  1460. return False
  1461. # update the volume mount
  1462. for exist_vol_mount in exist_volume_mounts:
  1463. if exist_vol_mount['name'] == volume_mount['name']:
  1464. if 'mountPath' in exist_vol_mount and \
  1465. str(exist_vol_mount['mountPath']) != str(volume_mount['mountPath']):
  1466. exist_vol_mount['mountPath'] = volume_mount['mountPath']
  1467. modified = True
  1468. break
  1469. if not modified:
  1470. self.add_volume_mount(volume_mount)
  1471. modified = True
  1472. return modified
  1473. def needs_update_volume(self, volume, volume_mount):
  1474. ''' verify a volume update is needed '''
  1475. exist_volume = self.find_volume_by_name(volume)
  1476. exist_volume_mount = self.find_volume_by_name(volume, mounts=True)
  1477. results = []
  1478. results.append(exist_volume['name'] == volume['name'])
  1479. if 'secret' in volume:
  1480. results.append('secret' in exist_volume)
  1481. results.append(exist_volume['secret']['secretName'] == volume['secret']['secretName'])
  1482. results.append(exist_volume_mount['name'] == volume_mount['name'])
  1483. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1484. elif 'emptyDir' in volume:
  1485. results.append(exist_volume_mount['name'] == volume['name'])
  1486. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1487. elif 'persistentVolumeClaim' in volume:
  1488. pvc = 'persistentVolumeClaim'
  1489. results.append(pvc in exist_volume)
  1490. if results[-1]:
  1491. results.append(exist_volume[pvc]['claimName'] == volume[pvc]['claimName'])
  1492. if 'claimSize' in volume[pvc]:
  1493. results.append(exist_volume[pvc]['claimSize'] == volume[pvc]['claimSize'])
  1494. elif 'hostpath' in volume:
  1495. results.append('hostPath' in exist_volume)
  1496. results.append(exist_volume['hostPath']['path'] == volume_mount['mountPath'])
  1497. return not all(results)
  1498. def needs_update_replicas(self, replicas):
  1499. ''' verify whether a replica update is needed '''
  1500. current_reps = self.get(DeploymentConfig.replicas_path)
  1501. return not current_reps == replicas
  1502. # -*- -*- -*- End included fragment: lib/deploymentconfig.py -*- -*- -*-
  1503. # -*- -*- -*- Begin included fragment: lib/volume.py -*- -*- -*-
  1504. class Volume(object):
  1505. ''' Class to represent an openshift volume object'''
  1506. volume_mounts_path = {"pod": "spec.containers[0].volumeMounts",
  1507. "dc": "spec.template.spec.containers[0].volumeMounts",
  1508. "rc": "spec.template.spec.containers[0].volumeMounts",
  1509. }
  1510. volumes_path = {"pod": "spec.volumes",
  1511. "dc": "spec.template.spec.volumes",
  1512. "rc": "spec.template.spec.volumes",
  1513. }
  1514. @staticmethod
  1515. def create_volume_structure(volume_info):
  1516. ''' return a properly structured volume '''
  1517. volume_mount = None
  1518. volume = {'name': volume_info['name']}
  1519. volume_type = volume_info['type'].lower()
  1520. if volume_type == 'secret':
  1521. volume['secret'] = {}
  1522. volume[volume_info['type']] = {'secretName': volume_info['secret_name']}
  1523. volume_mount = {'mountPath': volume_info['path'],
  1524. 'name': volume_info['name']}
  1525. elif volume_type == 'emptydir':
  1526. volume['emptyDir'] = {}
  1527. volume_mount = {'mountPath': volume_info['path'],
  1528. 'name': volume_info['name']}
  1529. elif volume_type == 'pvc' or volume_type == 'persistentvolumeclaim':
  1530. volume['persistentVolumeClaim'] = {}
  1531. volume['persistentVolumeClaim']['claimName'] = volume_info['claimName']
  1532. volume['persistentVolumeClaim']['claimSize'] = volume_info['claimSize']
  1533. elif volume_type == 'hostpath':
  1534. volume['hostPath'] = {}
  1535. volume['hostPath']['path'] = volume_info['path']
  1536. elif volume_type == 'configmap':
  1537. volume['configMap'] = {}
  1538. volume['configMap']['name'] = volume_info['configmap_name']
  1539. volume_mount = {'mountPath': volume_info['path'],
  1540. 'name': volume_info['name']}
  1541. return (volume, volume_mount)
  1542. # -*- -*- -*- End included fragment: lib/volume.py -*- -*- -*-
  1543. # -*- -*- -*- Begin included fragment: class/oc_volume.py -*- -*- -*-
  1544. # pylint: disable=too-many-instance-attributes
  1545. class OCVolume(OpenShiftCLI):
  1546. ''' Class to wrap the oc command line tools '''
  1547. volume_mounts_path = {"pod": "spec.containers[0].volumeMounts",
  1548. "dc": "spec.template.spec.containers[0].volumeMounts",
  1549. "rc": "spec.template.spec.containers[0].volumeMounts",
  1550. }
  1551. volumes_path = {"pod": "spec.volumes",
  1552. "dc": "spec.template.spec.volumes",
  1553. "rc": "spec.template.spec.volumes",
  1554. }
  1555. # pylint allows 5
  1556. # pylint: disable=too-many-arguments
  1557. def __init__(self,
  1558. kind,
  1559. resource_name,
  1560. namespace,
  1561. vol_name,
  1562. mount_path,
  1563. mount_type,
  1564. secret_name,
  1565. claim_size,
  1566. claim_name,
  1567. configmap_name,
  1568. kubeconfig='/etc/origin/master/admin.kubeconfig',
  1569. verbose=False):
  1570. ''' Constructor for OCVolume '''
  1571. super(OCVolume, self).__init__(namespace, kubeconfig)
  1572. self.kind = kind
  1573. self.volume_info = {'name': vol_name,
  1574. 'secret_name': secret_name,
  1575. 'path': mount_path,
  1576. 'type': mount_type,
  1577. 'claimSize': claim_size,
  1578. 'claimName': claim_name,
  1579. 'configmap_name': configmap_name}
  1580. self.volume, self.volume_mount = Volume.create_volume_structure(self.volume_info)
  1581. self.name = resource_name
  1582. self.namespace = namespace
  1583. self.kubeconfig = kubeconfig
  1584. self.verbose = verbose
  1585. self._resource = None
  1586. @property
  1587. def resource(self):
  1588. ''' property function for resource var '''
  1589. if not self._resource:
  1590. self.get()
  1591. return self._resource
  1592. @resource.setter
  1593. def resource(self, data):
  1594. ''' setter function for resource var '''
  1595. self._resource = data
  1596. def exists(self):
  1597. ''' return whether a volume exists '''
  1598. volume_mount_found = False
  1599. volume_found = self.resource.exists_volume(self.volume)
  1600. if not self.volume_mount and volume_found:
  1601. return True
  1602. if self.volume_mount:
  1603. volume_mount_found = self.resource.exists_volume_mount(self.volume_mount)
  1604. if volume_found and self.volume_mount and volume_mount_found:
  1605. return True
  1606. return False
  1607. def get(self):
  1608. '''return volume information '''
  1609. vol = self._get(self.kind, self.name)
  1610. if vol['returncode'] == 0:
  1611. if self.kind == 'dc':
  1612. self.resource = DeploymentConfig(content=vol['results'][0])
  1613. vol['results'] = self.resource.get_volumes()
  1614. return vol
  1615. def delete(self):
  1616. '''remove a volume'''
  1617. self.resource.delete_volume_by_name(self.volume)
  1618. return self._replace_content(self.kind, self.name, self.resource.yaml_dict)
  1619. def put(self):
  1620. '''place volume into dc '''
  1621. self.resource.update_volume(self.volume)
  1622. self.resource.get_volumes()
  1623. self.resource.update_volume_mount(self.volume_mount)
  1624. return self._replace_content(self.kind, self.name, self.resource.yaml_dict)
  1625. def needs_update(self):
  1626. ''' verify an update is needed '''
  1627. return self.resource.needs_update_volume(self.volume, self.volume_mount)
  1628. # pylint: disable=too-many-branches,too-many-return-statements
  1629. @staticmethod
  1630. def run_ansible(params, check_mode=False):
  1631. '''run the idempotent ansible code'''
  1632. oc_volume = OCVolume(params['kind'],
  1633. params['name'],
  1634. params['namespace'],
  1635. params['vol_name'],
  1636. params['mount_path'],
  1637. params['mount_type'],
  1638. # secrets
  1639. params['secret_name'],
  1640. # pvc
  1641. params['claim_size'],
  1642. params['claim_name'],
  1643. # configmap
  1644. params['configmap_name'],
  1645. kubeconfig=params['kubeconfig'],
  1646. verbose=params['debug'])
  1647. state = params['state']
  1648. api_rval = oc_volume.get()
  1649. if api_rval['returncode'] != 0:
  1650. return {'failed': True, 'msg': api_rval}
  1651. #####
  1652. # Get
  1653. #####
  1654. if state == 'list':
  1655. return {'changed': False, 'results': api_rval['results'], 'state': state}
  1656. ########
  1657. # Delete
  1658. ########
  1659. if state == 'absent':
  1660. if oc_volume.exists():
  1661. if check_mode:
  1662. return {'changed': False, 'msg': 'CHECK_MODE: Would have performed a delete.'}
  1663. api_rval = oc_volume.delete()
  1664. if api_rval['returncode'] != 0:
  1665. return {'failed': True, 'msg': api_rval}
  1666. return {'changed': True, 'results': api_rval, 'state': state}
  1667. return {'changed': False, 'state': state}
  1668. if state == 'present':
  1669. ########
  1670. # Create
  1671. ########
  1672. if not oc_volume.exists():
  1673. if check_mode:
  1674. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a create.'}
  1675. # Create it here
  1676. api_rval = oc_volume.put()
  1677. if api_rval['returncode'] != 0:
  1678. return {'failed': True, 'msg': api_rval}
  1679. # return the created object
  1680. api_rval = oc_volume.get()
  1681. if api_rval['returncode'] != 0:
  1682. return {'failed': True, 'msg': api_rval}
  1683. return {'changed': True, 'results': api_rval, 'state': state}
  1684. ########
  1685. # Update
  1686. ########
  1687. if oc_volume.needs_update():
  1688. api_rval = oc_volume.put()
  1689. if api_rval['returncode'] != 0:
  1690. return {'failed': True, 'msg': api_rval}
  1691. # return the created object
  1692. api_rval = oc_volume.get()
  1693. if api_rval['returncode'] != 0:
  1694. return {'failed': True, 'msg': api_rval}
  1695. return {'changed': True, 'results': api_rval, state: state}
  1696. return {'changed': False, 'results': api_rval, state: state}
  1697. return {'failed': True, 'msg': 'Unknown state passed. {}'.format(state)}
  1698. # -*- -*- -*- End included fragment: class/oc_volume.py -*- -*- -*-
  1699. # -*- -*- -*- Begin included fragment: ansible/oc_volume.py -*- -*- -*-
  1700. def main():
  1701. '''
  1702. ansible oc module for volumes
  1703. '''
  1704. module = AnsibleModule(
  1705. argument_spec=dict(
  1706. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1707. state=dict(default='present', type='str',
  1708. choices=['present', 'absent', 'list']),
  1709. debug=dict(default=False, type='bool'),
  1710. kind=dict(default='dc', choices=['dc', 'rc', 'pods'], type='str'),
  1711. namespace=dict(default='default', type='str'),
  1712. vol_name=dict(default=None, type='str'),
  1713. name=dict(default=None, type='str'),
  1714. mount_type=dict(default=None,
  1715. choices=['emptydir', 'hostpath', 'secret', 'pvc', 'configmap'],
  1716. type='str'),
  1717. mount_path=dict(default=None, type='str'),
  1718. # secrets require a name
  1719. secret_name=dict(default=None, type='str'),
  1720. # pvc requires a size
  1721. claim_size=dict(default=None, type='str'),
  1722. claim_name=dict(default=None, type='str'),
  1723. # configmap requires a name
  1724. configmap_name=dict(default=None, type='str'),
  1725. ),
  1726. supports_check_mode=True,
  1727. )
  1728. rval = OCVolume.run_ansible(module.params, module.check_mode)
  1729. if 'failed' in rval:
  1730. module.fail_json(**rval)
  1731. module.exit_json(**rval)
  1732. if __name__ == '__main__':
  1733. main()
  1734. # -*- -*- -*- End included fragment: ansible/oc_volume.py -*- -*- -*-