oc_label.py 60 KB

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