oc_label.py 55 KB

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