oc_label.py 60 KB

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