oc_volume.py 71 KB

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