oc_process.py 56 KB

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