oc_route.py 63 KB

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