oc_env.py 63 KB

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