oc_project.py 59 KB

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