oc_service.py 63 KB

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