oc_service.py 61 KB

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