oc_route.py 63 KB

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