oc_route.py 63 KB

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