oc_process.py 53 KB

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