oc_service.py 63 KB

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