oc_route.py 64 KB

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