oc_env.py 61 KB

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