oc_label.py 58 KB

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