oc_label.py 58 KB

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