oc_route.py 62 KB

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