oc_label.py 59 KB

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