oc_service.py 56 KB

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