oc_scale.py 65 KB

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