oc_route.py 64 KB

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