oc_service.py 58 KB

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