oc_adm_registry.py 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688
  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/registry -*- -*- -*-
  49. DOCUMENTATION = '''
  50. ---
  51. module: oc_adm_registry
  52. short_description: Module to manage openshift registry
  53. description:
  54. - Manage openshift registry programmatically.
  55. options:
  56. state:
  57. description:
  58. - The desired action when managing openshift registry
  59. - present - update or create the registry
  60. - absent - tear down the registry service and deploymentconfig
  61. - list - returns the current representiation of a registry
  62. required: false
  63. default: False
  64. aliases: []
  65. kubeconfig:
  66. description:
  67. - The path for the kubeconfig file to use for authentication
  68. required: false
  69. default: /etc/origin/master/admin.kubeconfig
  70. aliases: []
  71. debug:
  72. description:
  73. - Turn on debug output.
  74. required: false
  75. default: False
  76. aliases: []
  77. name:
  78. description:
  79. - The name of the registry
  80. required: false
  81. default: None
  82. aliases: []
  83. namespace:
  84. description:
  85. - The selector when filtering on node labels
  86. required: false
  87. default: None
  88. aliases: []
  89. images:
  90. description:
  91. - The image to base this registry on - ${component} will be replaced with --type
  92. required: 'openshift3/ose-${component}:${version}'
  93. default: None
  94. aliases: []
  95. latest_images:
  96. description:
  97. - If true, attempt to use the latest image for the registry instead of the latest release.
  98. required: false
  99. default: False
  100. aliases: []
  101. labels:
  102. description:
  103. - A set of labels to uniquely identify the registry and its components.
  104. required: false
  105. default: None
  106. aliases: []
  107. enforce_quota:
  108. description:
  109. - If set, the registry will refuse to write blobs if they exceed quota limits
  110. required: False
  111. default: False
  112. aliases: []
  113. mount_host:
  114. description:
  115. - If set, the registry volume will be created as a host-mount at this path.
  116. required: False
  117. default: False
  118. aliases: []
  119. ports:
  120. description:
  121. - A comma delimited list of ports or port pairs to expose on the registry pod. The default is set for 5000.
  122. required: False
  123. default: [5000]
  124. aliases: []
  125. replicas:
  126. description:
  127. - The replication factor of the registry; commonly 2 when high availability is desired.
  128. required: False
  129. default: 1
  130. aliases: []
  131. selector:
  132. description:
  133. - Selector used to filter nodes on deployment. Used to run registries on a specific set of nodes.
  134. required: False
  135. default: None
  136. aliases: []
  137. service_account:
  138. description:
  139. - Name of the service account to use to run the registry pod.
  140. required: False
  141. default: 'registry'
  142. aliases: []
  143. tls_certificate:
  144. description:
  145. - An optional path to a PEM encoded certificate (which may contain the private key) for serving over TLS
  146. required: false
  147. default: None
  148. aliases: []
  149. tls_key:
  150. description:
  151. - An optional path to a PEM encoded private key for serving over TLS
  152. required: false
  153. default: None
  154. aliases: []
  155. volume_mounts:
  156. description:
  157. - The volume mounts for the registry.
  158. required: false
  159. default: None
  160. aliases: []
  161. daemonset:
  162. description:
  163. - Use a daemonset instead of a deployment config.
  164. required: false
  165. default: False
  166. aliases: []
  167. edits:
  168. description:
  169. - A list of modifications to make on the deploymentconfig
  170. required: false
  171. default: None
  172. aliases: []
  173. env_vars:
  174. description:
  175. - A dictionary of modifications to make on the deploymentconfig. e.g. FOO: BAR
  176. required: false
  177. default: None
  178. aliases: []
  179. force:
  180. description:
  181. - Force a registry update.
  182. required: false
  183. default: False
  184. aliases: []
  185. author:
  186. - "Kenny Woodson <kwoodson@redhat.com>"
  187. extends_documentation_fragment: []
  188. '''
  189. EXAMPLES = '''
  190. - name: create a secure registry
  191. oc_adm_registry:
  192. name: docker-registry
  193. service_account: registry
  194. replicas: 2
  195. namespace: default
  196. selector: type=infra
  197. images: "registry.ops.openshift.com/openshift3/ose-${component}:${version}"
  198. env_vars:
  199. REGISTRY_CONFIGURATION_PATH: /etc/registryconfig/config.yml
  200. REGISTRY_HTTP_TLS_CERTIFICATE: /etc/secrets/registry.crt
  201. REGISTRY_HTTP_TLS_KEY: /etc/secrets/registry.key
  202. REGISTRY_HTTP_SECRET: supersecret
  203. volume_mounts:
  204. - path: /etc/secrets
  205. name: dockercerts
  206. type: secret
  207. secret_name: registry-secret
  208. - path: /etc/registryconfig
  209. name: dockersecrets
  210. type: secret
  211. secret_name: docker-registry-config
  212. edits:
  213. - key: spec.template.spec.containers[0].livenessProbe.httpGet.scheme
  214. value: HTTPS
  215. action: put
  216. - key: spec.template.spec.containers[0].readinessProbe.httpGet.scheme
  217. value: HTTPS
  218. action: put
  219. - key: spec.strategy.rollingParams
  220. value:
  221. intervalSeconds: 1
  222. maxSurge: 50%
  223. maxUnavailable: 50%
  224. timeoutSeconds: 600
  225. updatePeriodSeconds: 1
  226. action: put
  227. - key: spec.template.spec.containers[0].resources.limits.memory
  228. value: 2G
  229. action: update
  230. - key: spec.template.spec.containers[0].resources.requests.memory
  231. value: 1G
  232. action: update
  233. register: registryout
  234. '''
  235. # -*- -*- -*- End included fragment: doc/registry -*- -*- -*-
  236. # -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  237. class YeditException(Exception): # pragma: no cover
  238. ''' Exception class for Yedit '''
  239. pass
  240. # pylint: disable=too-many-public-methods
  241. class Yedit(object): # pragma: no cover
  242. ''' Class to modify yaml files '''
  243. re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
  244. re_key = r"(?:\[(-?\d+)\])|([0-9a-zA-Z{}/_-]+)"
  245. com_sep = set(['.', '#', '|', ':'])
  246. # pylint: disable=too-many-arguments
  247. def __init__(self,
  248. filename=None,
  249. content=None,
  250. content_type='yaml',
  251. separator='.',
  252. backup=False):
  253. self.content = content
  254. self._separator = separator
  255. self.filename = filename
  256. self.__yaml_dict = content
  257. self.content_type = content_type
  258. self.backup = backup
  259. self.load(content_type=self.content_type)
  260. if self.__yaml_dict is None:
  261. self.__yaml_dict = {}
  262. @property
  263. def separator(self):
  264. ''' getter method for separator '''
  265. return self._separator
  266. @separator.setter
  267. def separator(self, inc_sep):
  268. ''' setter method for separator '''
  269. self._separator = inc_sep
  270. @property
  271. def yaml_dict(self):
  272. ''' getter method for yaml_dict '''
  273. return self.__yaml_dict
  274. @yaml_dict.setter
  275. def yaml_dict(self, value):
  276. ''' setter method for yaml_dict '''
  277. self.__yaml_dict = value
  278. @staticmethod
  279. def parse_key(key, sep='.'):
  280. '''parse the key allowing the appropriate separator'''
  281. common_separators = list(Yedit.com_sep - set([sep]))
  282. return re.findall(Yedit.re_key.format(''.join(common_separators)), key)
  283. @staticmethod
  284. def valid_key(key, sep='.'):
  285. '''validate the incoming key'''
  286. common_separators = list(Yedit.com_sep - set([sep]))
  287. if not re.match(Yedit.re_valid_key.format(''.join(common_separators)), key):
  288. return False
  289. return True
  290. @staticmethod
  291. def remove_entry(data, key, sep='.'):
  292. ''' remove data at location key '''
  293. if key == '' and isinstance(data, dict):
  294. data.clear()
  295. return True
  296. elif key == '' and isinstance(data, list):
  297. del data[:]
  298. return True
  299. if not (key and Yedit.valid_key(key, sep)) and \
  300. isinstance(data, (list, dict)):
  301. return None
  302. key_indexes = Yedit.parse_key(key, sep)
  303. for arr_ind, dict_key in key_indexes[:-1]:
  304. if dict_key and isinstance(data, dict):
  305. data = data.get(dict_key)
  306. elif (arr_ind and isinstance(data, list) and
  307. int(arr_ind) <= len(data) - 1):
  308. data = data[int(arr_ind)]
  309. else:
  310. return None
  311. # process last index for remove
  312. # expected list entry
  313. if key_indexes[-1][0]:
  314. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  315. del data[int(key_indexes[-1][0])]
  316. return True
  317. # expected dict entry
  318. elif key_indexes[-1][1]:
  319. if isinstance(data, dict):
  320. del data[key_indexes[-1][1]]
  321. return True
  322. @staticmethod
  323. def add_entry(data, key, item=None, sep='.'):
  324. ''' Get an item from a dictionary with key notation a.b.c
  325. d = {'a': {'b': 'c'}}}
  326. key = a#b
  327. return c
  328. '''
  329. if key == '':
  330. pass
  331. elif (not (key and Yedit.valid_key(key, sep)) and
  332. isinstance(data, (list, dict))):
  333. return None
  334. key_indexes = Yedit.parse_key(key, sep)
  335. for arr_ind, dict_key in key_indexes[:-1]:
  336. if dict_key:
  337. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  338. data = data[dict_key]
  339. continue
  340. elif data and not isinstance(data, dict):
  341. raise YeditException("Unexpected item type found while going through key " +
  342. "path: {} (at key: {})".format(key, dict_key))
  343. data[dict_key] = {}
  344. data = data[dict_key]
  345. elif (arr_ind and isinstance(data, list) and
  346. int(arr_ind) <= len(data) - 1):
  347. data = data[int(arr_ind)]
  348. else:
  349. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  350. if key == '':
  351. data = item
  352. # process last index for add
  353. # expected list entry
  354. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  355. data[int(key_indexes[-1][0])] = item
  356. # expected dict entry
  357. elif key_indexes[-1][1] and isinstance(data, dict):
  358. data[key_indexes[-1][1]] = item
  359. # didn't add/update to an existing list, nor add/update key to a dict
  360. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  361. # non-existent array
  362. else:
  363. raise YeditException("Error adding to object at path: {}".format(key))
  364. return data
  365. @staticmethod
  366. def get_entry(data, key, sep='.'):
  367. ''' Get an item from a dictionary with key notation a.b.c
  368. d = {'a': {'b': 'c'}}}
  369. key = a.b
  370. return c
  371. '''
  372. if key == '':
  373. pass
  374. elif (not (key and Yedit.valid_key(key, sep)) and
  375. isinstance(data, (list, dict))):
  376. return None
  377. key_indexes = Yedit.parse_key(key, sep)
  378. for arr_ind, dict_key in key_indexes:
  379. if dict_key and isinstance(data, dict):
  380. data = data.get(dict_key)
  381. elif (arr_ind and isinstance(data, list) and
  382. int(arr_ind) <= len(data) - 1):
  383. data = data[int(arr_ind)]
  384. else:
  385. return None
  386. return data
  387. @staticmethod
  388. def _write(filename, contents):
  389. ''' Actually write the file contents to disk. This helps with mocking. '''
  390. tmp_filename = filename + '.yedit'
  391. with open(tmp_filename, 'w') as yfd:
  392. yfd.write(contents)
  393. os.rename(tmp_filename, filename)
  394. def write(self):
  395. ''' write to file '''
  396. if not self.filename:
  397. raise YeditException('Please specify a filename.')
  398. if self.backup and self.file_exists():
  399. shutil.copy(self.filename, self.filename + '.orig')
  400. # Try to set format attributes if supported
  401. try:
  402. self.yaml_dict.fa.set_block_style()
  403. except AttributeError:
  404. pass
  405. # Try to use RoundTripDumper if supported.
  406. try:
  407. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  408. except AttributeError:
  409. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  410. return (True, self.yaml_dict)
  411. def read(self):
  412. ''' read from file '''
  413. # check if it exists
  414. if self.filename is None or not self.file_exists():
  415. return None
  416. contents = None
  417. with open(self.filename) as yfd:
  418. contents = yfd.read()
  419. return contents
  420. def file_exists(self):
  421. ''' return whether file exists '''
  422. if os.path.exists(self.filename):
  423. return True
  424. return False
  425. def load(self, content_type='yaml'):
  426. ''' return yaml file '''
  427. contents = self.read()
  428. if not contents and not self.content:
  429. return None
  430. if self.content:
  431. if isinstance(self.content, dict):
  432. self.yaml_dict = self.content
  433. return self.yaml_dict
  434. elif isinstance(self.content, str):
  435. contents = self.content
  436. # check if it is yaml
  437. try:
  438. if content_type == 'yaml' and contents:
  439. # Try to set format attributes if supported
  440. try:
  441. self.yaml_dict.fa.set_block_style()
  442. except AttributeError:
  443. pass
  444. # Try to use RoundTripLoader if supported.
  445. try:
  446. self.yaml_dict = yaml.safe_load(contents, yaml.RoundTripLoader)
  447. except AttributeError:
  448. self.yaml_dict = yaml.safe_load(contents)
  449. # Try to set format attributes if supported
  450. try:
  451. self.yaml_dict.fa.set_block_style()
  452. except AttributeError:
  453. pass
  454. elif content_type == 'json' and contents:
  455. self.yaml_dict = json.loads(contents)
  456. except yaml.YAMLError as err:
  457. # Error loading yaml or json
  458. raise YeditException('Problem with loading yaml file. {}'.format(err))
  459. return self.yaml_dict
  460. def get(self, key):
  461. ''' get a specified key'''
  462. try:
  463. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  464. except KeyError:
  465. entry = None
  466. return entry
  467. def pop(self, path, key_or_item):
  468. ''' remove a key, value pair from a dict or an item for a list'''
  469. try:
  470. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  471. except KeyError:
  472. entry = None
  473. if entry is None:
  474. return (False, self.yaml_dict)
  475. if isinstance(entry, dict):
  476. # AUDIT:maybe-no-member makes sense due to fuzzy types
  477. # pylint: disable=maybe-no-member
  478. if key_or_item in entry:
  479. entry.pop(key_or_item)
  480. return (True, self.yaml_dict)
  481. return (False, self.yaml_dict)
  482. elif isinstance(entry, list):
  483. # AUDIT:maybe-no-member makes sense due to fuzzy types
  484. # pylint: disable=maybe-no-member
  485. ind = None
  486. try:
  487. ind = entry.index(key_or_item)
  488. except ValueError:
  489. return (False, self.yaml_dict)
  490. entry.pop(ind)
  491. return (True, self.yaml_dict)
  492. return (False, self.yaml_dict)
  493. def delete(self, path):
  494. ''' remove path from a dict'''
  495. try:
  496. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  497. except KeyError:
  498. entry = None
  499. if entry is None:
  500. return (False, self.yaml_dict)
  501. result = Yedit.remove_entry(self.yaml_dict, path, self.separator)
  502. if not result:
  503. return (False, self.yaml_dict)
  504. return (True, self.yaml_dict)
  505. def exists(self, path, value):
  506. ''' check if value exists at path'''
  507. try:
  508. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  509. except KeyError:
  510. entry = None
  511. if isinstance(entry, list):
  512. if value in entry:
  513. return True
  514. return False
  515. elif isinstance(entry, dict):
  516. if isinstance(value, dict):
  517. rval = False
  518. for key, val in value.items():
  519. if entry[key] != val:
  520. rval = False
  521. break
  522. else:
  523. rval = True
  524. return rval
  525. return value in entry
  526. return entry == value
  527. def append(self, path, value):
  528. '''append value to a list'''
  529. try:
  530. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  531. except KeyError:
  532. entry = None
  533. if entry is None:
  534. self.put(path, [])
  535. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  536. if not isinstance(entry, list):
  537. return (False, self.yaml_dict)
  538. # AUDIT:maybe-no-member makes sense due to loading data from
  539. # a serialized format.
  540. # pylint: disable=maybe-no-member
  541. entry.append(value)
  542. return (True, self.yaml_dict)
  543. # pylint: disable=too-many-arguments
  544. def update(self, path, value, index=None, curr_value=None):
  545. ''' put path, value into a dict '''
  546. try:
  547. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  548. except KeyError:
  549. entry = None
  550. if isinstance(entry, dict):
  551. # AUDIT:maybe-no-member makes sense due to fuzzy types
  552. # pylint: disable=maybe-no-member
  553. if not isinstance(value, dict):
  554. raise YeditException('Cannot replace key, value entry in dict with non-dict type. ' +
  555. 'value=[{}] type=[{}]'.format(value, type(value)))
  556. entry.update(value)
  557. return (True, self.yaml_dict)
  558. elif isinstance(entry, list):
  559. # AUDIT:maybe-no-member makes sense due to fuzzy types
  560. # pylint: disable=maybe-no-member
  561. ind = None
  562. if curr_value:
  563. try:
  564. ind = entry.index(curr_value)
  565. except ValueError:
  566. return (False, self.yaml_dict)
  567. elif index is not None:
  568. ind = index
  569. if ind is not None and entry[ind] != value:
  570. entry[ind] = value
  571. return (True, self.yaml_dict)
  572. # see if it exists in the list
  573. try:
  574. ind = entry.index(value)
  575. except ValueError:
  576. # doesn't exist, append it
  577. entry.append(value)
  578. return (True, self.yaml_dict)
  579. # already exists, return
  580. if ind is not None:
  581. return (False, self.yaml_dict)
  582. return (False, self.yaml_dict)
  583. def put(self, path, value):
  584. ''' put path, value into a dict '''
  585. try:
  586. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  587. except KeyError:
  588. entry = None
  589. if entry == value:
  590. return (False, self.yaml_dict)
  591. # deepcopy didn't work
  592. # Try to use ruamel.yaml and fallback to pyyaml
  593. try:
  594. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  595. default_flow_style=False),
  596. yaml.RoundTripLoader)
  597. except AttributeError:
  598. tmp_copy = copy.deepcopy(self.yaml_dict)
  599. # set the format attributes if available
  600. try:
  601. tmp_copy.fa.set_block_style()
  602. except AttributeError:
  603. pass
  604. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  605. if result is None:
  606. return (False, self.yaml_dict)
  607. # When path equals "" it is a special case.
  608. # "" refers to the root of the document
  609. # Only update the root path (entire document) when its a list or dict
  610. if path == '':
  611. if isinstance(result, list) or isinstance(result, dict):
  612. self.yaml_dict = result
  613. return (True, self.yaml_dict)
  614. return (False, self.yaml_dict)
  615. self.yaml_dict = tmp_copy
  616. return (True, self.yaml_dict)
  617. def create(self, path, value):
  618. ''' create a yaml file '''
  619. if not self.file_exists():
  620. # deepcopy didn't work
  621. # Try to use ruamel.yaml and fallback to pyyaml
  622. try:
  623. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  624. default_flow_style=False),
  625. yaml.RoundTripLoader)
  626. except AttributeError:
  627. tmp_copy = copy.deepcopy(self.yaml_dict)
  628. # set the format attributes if available
  629. try:
  630. tmp_copy.fa.set_block_style()
  631. except AttributeError:
  632. pass
  633. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  634. if result is not None:
  635. self.yaml_dict = tmp_copy
  636. return (True, self.yaml_dict)
  637. return (False, self.yaml_dict)
  638. @staticmethod
  639. def get_curr_value(invalue, val_type):
  640. '''return the current value'''
  641. if invalue is None:
  642. return None
  643. curr_value = invalue
  644. if val_type == 'yaml':
  645. curr_value = yaml.load(invalue)
  646. elif val_type == 'json':
  647. curr_value = json.loads(invalue)
  648. return curr_value
  649. @staticmethod
  650. def parse_value(inc_value, vtype=''):
  651. '''determine value type passed'''
  652. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  653. 'on', 'On', 'ON', ]
  654. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  655. 'off', 'Off', 'OFF']
  656. # It came in as a string but you didn't specify value_type as string
  657. # we will convert to bool if it matches any of the above cases
  658. if isinstance(inc_value, str) and 'bool' in vtype:
  659. if inc_value not in true_bools and inc_value not in false_bools:
  660. raise YeditException('Not a boolean type. str=[{}] vtype=[{}]'.format(inc_value, vtype))
  661. elif isinstance(inc_value, bool) and 'str' in vtype:
  662. inc_value = str(inc_value)
  663. # There is a special case where '' will turn into None after yaml loading it so skip
  664. if isinstance(inc_value, str) and inc_value == '':
  665. pass
  666. # If vtype is not str then go ahead and attempt to yaml load it.
  667. elif isinstance(inc_value, str) and 'str' not in vtype:
  668. try:
  669. inc_value = yaml.safe_load(inc_value)
  670. except Exception:
  671. raise YeditException('Could not determine type of incoming value. ' +
  672. 'value=[{}] vtype=[{}]'.format(type(inc_value), vtype))
  673. return inc_value
  674. @staticmethod
  675. def process_edits(edits, yamlfile):
  676. '''run through a list of edits and process them one-by-one'''
  677. results = []
  678. for edit in edits:
  679. value = Yedit.parse_value(edit['value'], edit.get('value_type', ''))
  680. if edit.get('action') == 'update':
  681. # pylint: disable=line-too-long
  682. curr_value = Yedit.get_curr_value(
  683. Yedit.parse_value(edit.get('curr_value')),
  684. edit.get('curr_value_format'))
  685. rval = yamlfile.update(edit['key'],
  686. value,
  687. edit.get('index'),
  688. curr_value)
  689. elif edit.get('action') == 'append':
  690. rval = yamlfile.append(edit['key'], value)
  691. else:
  692. rval = yamlfile.put(edit['key'], value)
  693. if rval[0]:
  694. results.append({'key': edit['key'], 'edit': rval[1]})
  695. return {'changed': len(results) > 0, 'results': results}
  696. # pylint: disable=too-many-return-statements,too-many-branches
  697. @staticmethod
  698. def run_ansible(params):
  699. '''perform the idempotent crud operations'''
  700. yamlfile = Yedit(filename=params['src'],
  701. backup=params['backup'],
  702. separator=params['separator'])
  703. state = params['state']
  704. if params['src']:
  705. rval = yamlfile.load()
  706. if yamlfile.yaml_dict is None and state != 'present':
  707. return {'failed': True,
  708. 'msg': 'Error opening file [{}]. Verify that the '.format(params['src']) +
  709. 'file exists, that it is has correct permissions, and is valid yaml.'}
  710. if state == 'list':
  711. if params['content']:
  712. content = Yedit.parse_value(params['content'], params['content_type'])
  713. yamlfile.yaml_dict = content
  714. if params['key']:
  715. rval = yamlfile.get(params['key']) or {}
  716. return {'changed': False, 'result': rval, 'state': state}
  717. elif state == 'absent':
  718. if params['content']:
  719. content = Yedit.parse_value(params['content'], params['content_type'])
  720. yamlfile.yaml_dict = content
  721. if params['update']:
  722. rval = yamlfile.pop(params['key'], params['value'])
  723. else:
  724. rval = yamlfile.delete(params['key'])
  725. if rval[0] and params['src']:
  726. yamlfile.write()
  727. return {'changed': rval[0], 'result': rval[1], 'state': state}
  728. elif state == 'present':
  729. # check if content is different than what is in the file
  730. if params['content']:
  731. content = Yedit.parse_value(params['content'], params['content_type'])
  732. # We had no edits to make and the contents are the same
  733. if yamlfile.yaml_dict == content and \
  734. params['value'] is None:
  735. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  736. yamlfile.yaml_dict = content
  737. # If we were passed a key, value then
  738. # we enapsulate it in a list and process it
  739. # Key, Value passed to the module : Converted to Edits list #
  740. edits = []
  741. _edit = {}
  742. if params['value'] is not None:
  743. _edit['value'] = params['value']
  744. _edit['value_type'] = params['value_type']
  745. _edit['key'] = params['key']
  746. if params['update']:
  747. _edit['action'] = 'update'
  748. _edit['curr_value'] = params['curr_value']
  749. _edit['curr_value_format'] = params['curr_value_format']
  750. _edit['index'] = params['index']
  751. elif params['append']:
  752. _edit['action'] = 'append'
  753. edits.append(_edit)
  754. elif params['edits'] is not None:
  755. edits = params['edits']
  756. if edits:
  757. results = Yedit.process_edits(edits, yamlfile)
  758. # if there were changes and a src provided to us we need to write
  759. if results['changed'] and params['src']:
  760. yamlfile.write()
  761. return {'changed': results['changed'], 'result': results['results'], 'state': state}
  762. # no edits to make
  763. if params['src']:
  764. # pylint: disable=redefined-variable-type
  765. rval = yamlfile.write()
  766. return {'changed': rval[0],
  767. 'result': rval[1],
  768. 'state': state}
  769. # We were passed content but no src, key or value, or edits. Return contents in memory
  770. return {'changed': False, 'result': yamlfile.yaml_dict, 'state': state}
  771. return {'failed': True, 'msg': 'Unkown state passed'}
  772. # -*- -*- -*- End included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  773. # -*- -*- -*- Begin included fragment: lib/base.py -*- -*- -*-
  774. # pylint: disable=too-many-lines
  775. # noqa: E301,E302,E303,T001
  776. class OpenShiftCLIError(Exception):
  777. '''Exception class for openshiftcli'''
  778. pass
  779. ADDITIONAL_PATH_LOOKUPS = ['/usr/local/bin', os.path.expanduser('~/bin')]
  780. def locate_oc_binary():
  781. ''' Find and return oc binary file '''
  782. # https://github.com/openshift/openshift-ansible/issues/3410
  783. # oc can be in /usr/local/bin in some cases, but that may not
  784. # be in $PATH due to ansible/sudo
  785. paths = os.environ.get("PATH", os.defpath).split(os.pathsep) + ADDITIONAL_PATH_LOOKUPS
  786. oc_binary = 'oc'
  787. # Use shutil.which if it is available, otherwise fallback to a naive path search
  788. try:
  789. which_result = shutil.which(oc_binary, path=os.pathsep.join(paths))
  790. if which_result is not None:
  791. oc_binary = which_result
  792. except AttributeError:
  793. for path in paths:
  794. if os.path.exists(os.path.join(path, oc_binary)):
  795. oc_binary = os.path.join(path, oc_binary)
  796. break
  797. return oc_binary
  798. # pylint: disable=too-few-public-methods
  799. class OpenShiftCLI(object):
  800. ''' Class to wrap the command line tools '''
  801. def __init__(self,
  802. namespace,
  803. kubeconfig='/etc/origin/master/admin.kubeconfig',
  804. verbose=False,
  805. all_namespaces=False):
  806. ''' Constructor for OpenshiftCLI '''
  807. self.namespace = namespace
  808. self.verbose = verbose
  809. self.kubeconfig = Utils.create_tmpfile_copy(kubeconfig)
  810. self.all_namespaces = all_namespaces
  811. self.oc_binary = locate_oc_binary()
  812. # Pylint allows only 5 arguments to be passed.
  813. # pylint: disable=too-many-arguments
  814. def _replace_content(self, resource, rname, content, force=False, sep='.'):
  815. ''' replace the current object with the content '''
  816. res = self._get(resource, rname)
  817. if not res['results']:
  818. return res
  819. fname = Utils.create_tmpfile(rname + '-')
  820. yed = Yedit(fname, res['results'][0], separator=sep)
  821. changes = []
  822. for key, value in content.items():
  823. changes.append(yed.put(key, value))
  824. if any([change[0] for change in changes]):
  825. yed.write()
  826. atexit.register(Utils.cleanup, [fname])
  827. return self._replace(fname, force)
  828. return {'returncode': 0, 'updated': False}
  829. def _replace(self, fname, force=False):
  830. '''replace the current object with oc replace'''
  831. # We are removing the 'resourceVersion' to handle
  832. # a race condition when modifying oc objects
  833. yed = Yedit(fname)
  834. results = yed.delete('metadata.resourceVersion')
  835. if results[0]:
  836. yed.write()
  837. cmd = ['replace', '-f', fname]
  838. if force:
  839. cmd.append('--force')
  840. return self.openshift_cmd(cmd)
  841. def _create_from_content(self, rname, content):
  842. '''create a temporary file and then call oc create on it'''
  843. fname = Utils.create_tmpfile(rname + '-')
  844. yed = Yedit(fname, content=content)
  845. yed.write()
  846. atexit.register(Utils.cleanup, [fname])
  847. return self._create(fname)
  848. def _create(self, fname):
  849. '''call oc create on a filename'''
  850. return self.openshift_cmd(['create', '-f', fname])
  851. def _delete(self, resource, name=None, selector=None):
  852. '''call oc delete on a resource'''
  853. cmd = ['delete', resource]
  854. if selector is not None:
  855. cmd.append('--selector={}'.format(selector))
  856. elif name is not None:
  857. cmd.append(name)
  858. else:
  859. raise OpenShiftCLIError('Either name or selector is required when calling delete.')
  860. return self.openshift_cmd(cmd)
  861. def _process(self, template_name, create=False, params=None, template_data=None): # noqa: E501
  862. '''process a template
  863. template_name: the name of the template to process
  864. create: whether to send to oc create after processing
  865. params: the parameters for the template
  866. template_data: the incoming template's data; instead of a file
  867. '''
  868. cmd = ['process']
  869. if template_data:
  870. cmd.extend(['-f', '-'])
  871. else:
  872. cmd.append(template_name)
  873. if params:
  874. param_str = ["{}={}".format(key, str(value).replace("'", r'"')) for key, value in params.items()]
  875. cmd.append('-v')
  876. cmd.extend(param_str)
  877. results = self.openshift_cmd(cmd, output=True, input_data=template_data)
  878. if results['returncode'] != 0 or not create:
  879. return results
  880. fname = Utils.create_tmpfile(template_name + '-')
  881. yed = Yedit(fname, results['results'])
  882. yed.write()
  883. atexit.register(Utils.cleanup, [fname])
  884. return self.openshift_cmd(['create', '-f', fname])
  885. def _get(self, resource, name=None, selector=None):
  886. '''return a resource by name '''
  887. cmd = ['get', resource]
  888. if selector is not None:
  889. cmd.append('--selector={}'.format(selector))
  890. elif name is not None:
  891. cmd.append(name)
  892. cmd.extend(['-o', 'json'])
  893. rval = self.openshift_cmd(cmd, output=True)
  894. # Ensure results are retuned in an array
  895. if 'items' in rval:
  896. rval['results'] = rval['items']
  897. elif not isinstance(rval['results'], list):
  898. rval['results'] = [rval['results']]
  899. return rval
  900. def _schedulable(self, node=None, selector=None, schedulable=True):
  901. ''' perform oadm manage-node scheduable '''
  902. cmd = ['manage-node']
  903. if node:
  904. cmd.extend(node)
  905. else:
  906. cmd.append('--selector={}'.format(selector))
  907. cmd.append('--schedulable={}'.format(schedulable))
  908. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  909. def _list_pods(self, node=None, selector=None, pod_selector=None):
  910. ''' perform oadm list pods
  911. node: the node in which to list pods
  912. selector: the label selector filter if provided
  913. pod_selector: the pod selector filter if provided
  914. '''
  915. cmd = ['manage-node']
  916. if node:
  917. cmd.extend(node)
  918. else:
  919. cmd.append('--selector={}'.format(selector))
  920. if pod_selector:
  921. cmd.append('--pod-selector={}'.format(pod_selector))
  922. cmd.extend(['--list-pods', '-o', 'json'])
  923. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  924. # pylint: disable=too-many-arguments
  925. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  926. ''' perform oadm manage-node evacuate '''
  927. cmd = ['manage-node']
  928. if node:
  929. cmd.extend(node)
  930. else:
  931. cmd.append('--selector={}'.format(selector))
  932. if dry_run:
  933. cmd.append('--dry-run')
  934. if pod_selector:
  935. cmd.append('--pod-selector={}'.format(pod_selector))
  936. if grace_period:
  937. cmd.append('--grace-period={}'.format(int(grace_period)))
  938. if force:
  939. cmd.append('--force')
  940. cmd.append('--evacuate')
  941. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  942. def _version(self):
  943. ''' return the openshift version'''
  944. return self.openshift_cmd(['version'], output=True, output_type='raw')
  945. def _import_image(self, url=None, name=None, tag=None):
  946. ''' perform image import '''
  947. cmd = ['import-image']
  948. image = '{0}'.format(name)
  949. if tag:
  950. image += ':{0}'.format(tag)
  951. cmd.append(image)
  952. if url:
  953. cmd.append('--from={0}/{1}'.format(url, image))
  954. cmd.append('-n{0}'.format(self.namespace))
  955. cmd.append('--confirm')
  956. return self.openshift_cmd(cmd)
  957. def _run(self, cmds, input_data):
  958. ''' Actually executes the command. This makes mocking easier. '''
  959. curr_env = os.environ.copy()
  960. curr_env.update({'KUBECONFIG': self.kubeconfig})
  961. proc = subprocess.Popen(cmds,
  962. stdin=subprocess.PIPE,
  963. stdout=subprocess.PIPE,
  964. stderr=subprocess.PIPE,
  965. env=curr_env)
  966. stdout, stderr = proc.communicate(input_data)
  967. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  968. # pylint: disable=too-many-arguments,too-many-branches
  969. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  970. '''Base command for oc '''
  971. cmds = [self.oc_binary]
  972. if oadm:
  973. cmds.append('adm')
  974. cmds.extend(cmd)
  975. if self.all_namespaces:
  976. cmds.extend(['--all-namespaces'])
  977. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  978. cmds.extend(['-n', self.namespace])
  979. rval = {}
  980. results = ''
  981. err = None
  982. if self.verbose:
  983. print(' '.join(cmds))
  984. try:
  985. returncode, stdout, stderr = self._run(cmds, input_data)
  986. except OSError as ex:
  987. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  988. rval = {"returncode": returncode,
  989. "results": results,
  990. "cmd": ' '.join(cmds)}
  991. if returncode == 0:
  992. if output:
  993. if output_type == 'json':
  994. try:
  995. rval['results'] = json.loads(stdout)
  996. except ValueError as verr:
  997. if "No JSON object could be decoded" in verr.args:
  998. err = verr.args
  999. elif output_type == 'raw':
  1000. rval['results'] = stdout
  1001. if self.verbose:
  1002. print("STDOUT: {0}".format(stdout))
  1003. print("STDERR: {0}".format(stderr))
  1004. if err:
  1005. rval.update({"err": err,
  1006. "stderr": stderr,
  1007. "stdout": stdout,
  1008. "cmd": cmds})
  1009. else:
  1010. rval.update({"stderr": stderr,
  1011. "stdout": stdout,
  1012. "results": {}})
  1013. return rval
  1014. class Utils(object): # pragma: no cover
  1015. ''' utilities for openshiftcli modules '''
  1016. @staticmethod
  1017. def _write(filename, contents):
  1018. ''' Actually write the file contents to disk. This helps with mocking. '''
  1019. with open(filename, 'w') as sfd:
  1020. sfd.write(contents)
  1021. @staticmethod
  1022. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  1023. ''' create a file in tmp with name and contents'''
  1024. tmp = Utils.create_tmpfile(prefix=rname)
  1025. if ftype == 'yaml':
  1026. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1027. # pylint: disable=no-member
  1028. if hasattr(yaml, 'RoundTripDumper'):
  1029. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  1030. else:
  1031. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  1032. elif ftype == 'json':
  1033. Utils._write(tmp, json.dumps(data))
  1034. else:
  1035. Utils._write(tmp, data)
  1036. # Register cleanup when module is done
  1037. atexit.register(Utils.cleanup, [tmp])
  1038. return tmp
  1039. @staticmethod
  1040. def create_tmpfile_copy(inc_file):
  1041. '''create a temporary copy of a file'''
  1042. tmpfile = Utils.create_tmpfile('lib_openshift-')
  1043. Utils._write(tmpfile, open(inc_file).read())
  1044. # Cleanup the tmpfile
  1045. atexit.register(Utils.cleanup, [tmpfile])
  1046. return tmpfile
  1047. @staticmethod
  1048. def create_tmpfile(prefix='tmp'):
  1049. ''' Generates and returns a temporary file name '''
  1050. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  1051. return tmp.name
  1052. @staticmethod
  1053. def create_tmp_files_from_contents(content, content_type=None):
  1054. '''Turn an array of dict: filename, content into a files array'''
  1055. if not isinstance(content, list):
  1056. content = [content]
  1057. files = []
  1058. for item in content:
  1059. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  1060. item['data'],
  1061. ftype=content_type)
  1062. files.append({'name': os.path.basename(item['path']),
  1063. 'path': path})
  1064. return files
  1065. @staticmethod
  1066. def cleanup(files):
  1067. '''Clean up on exit '''
  1068. for sfile in files:
  1069. if os.path.exists(sfile):
  1070. if os.path.isdir(sfile):
  1071. shutil.rmtree(sfile)
  1072. elif os.path.isfile(sfile):
  1073. os.remove(sfile)
  1074. @staticmethod
  1075. def exists(results, _name):
  1076. ''' Check to see if the results include the name '''
  1077. if not results:
  1078. return False
  1079. if Utils.find_result(results, _name):
  1080. return True
  1081. return False
  1082. @staticmethod
  1083. def find_result(results, _name):
  1084. ''' Find the specified result by name'''
  1085. rval = None
  1086. for result in results:
  1087. if 'metadata' in result and result['metadata']['name'] == _name:
  1088. rval = result
  1089. break
  1090. return rval
  1091. @staticmethod
  1092. def get_resource_file(sfile, sfile_type='yaml'):
  1093. ''' return the service file '''
  1094. contents = None
  1095. with open(sfile) as sfd:
  1096. contents = sfd.read()
  1097. if sfile_type == 'yaml':
  1098. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1099. # pylint: disable=no-member
  1100. if hasattr(yaml, 'RoundTripLoader'):
  1101. contents = yaml.load(contents, yaml.RoundTripLoader)
  1102. else:
  1103. contents = yaml.safe_load(contents)
  1104. elif sfile_type == 'json':
  1105. contents = json.loads(contents)
  1106. return contents
  1107. @staticmethod
  1108. def filter_versions(stdout):
  1109. ''' filter the oc version output '''
  1110. version_dict = {}
  1111. version_search = ['oc', 'openshift', 'kubernetes']
  1112. for line in stdout.strip().split('\n'):
  1113. for term in version_search:
  1114. if not line:
  1115. continue
  1116. if line.startswith(term):
  1117. version_dict[term] = line.split()[-1]
  1118. # horrible hack to get openshift version in Openshift 3.2
  1119. # By default "oc version in 3.2 does not return an "openshift" version
  1120. if "openshift" not in version_dict:
  1121. version_dict["openshift"] = version_dict["oc"]
  1122. return version_dict
  1123. @staticmethod
  1124. def add_custom_versions(versions):
  1125. ''' create custom versions strings '''
  1126. versions_dict = {}
  1127. for tech, version in versions.items():
  1128. # clean up "-" from version
  1129. if "-" in version:
  1130. version = version.split("-")[0]
  1131. if version.startswith('v'):
  1132. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1133. # "v3.3.0.33" is what we have, we want "3.3"
  1134. versions_dict[tech + '_short'] = version[1:4]
  1135. return versions_dict
  1136. @staticmethod
  1137. def openshift_installed():
  1138. ''' check if openshift is installed '''
  1139. import yum
  1140. yum_base = yum.YumBase()
  1141. if yum_base.rpmdb.searchNevra(name='atomic-openshift'):
  1142. return True
  1143. return False
  1144. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1145. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1146. @staticmethod
  1147. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1148. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1149. # Currently these values are autogenerated and we do not need to check them
  1150. skip = ['metadata', 'status']
  1151. if skip_keys:
  1152. skip.extend(skip_keys)
  1153. for key, value in result_def.items():
  1154. if key in skip:
  1155. continue
  1156. # Both are lists
  1157. if isinstance(value, list):
  1158. if key not in user_def:
  1159. if debug:
  1160. print('User data does not have key [%s]' % key)
  1161. print('User data: %s' % user_def)
  1162. return False
  1163. if not isinstance(user_def[key], list):
  1164. if debug:
  1165. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1166. return False
  1167. if len(user_def[key]) != len(value):
  1168. if debug:
  1169. print("List lengths are not equal.")
  1170. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1171. print("user_def: %s" % user_def[key])
  1172. print("value: %s" % value)
  1173. return False
  1174. for values in zip(user_def[key], value):
  1175. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1176. if debug:
  1177. print('sending list - list')
  1178. print(type(values[0]))
  1179. print(type(values[1]))
  1180. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1181. if not result:
  1182. print('list compare returned false')
  1183. return False
  1184. elif value != user_def[key]:
  1185. if debug:
  1186. print('value should be identical')
  1187. print(user_def[key])
  1188. print(value)
  1189. return False
  1190. # recurse on a dictionary
  1191. elif isinstance(value, dict):
  1192. if key not in user_def:
  1193. if debug:
  1194. print("user_def does not have key [%s]" % key)
  1195. return False
  1196. if not isinstance(user_def[key], dict):
  1197. if debug:
  1198. print("dict returned false: not instance of dict")
  1199. return False
  1200. # before passing ensure keys match
  1201. api_values = set(value.keys()) - set(skip)
  1202. user_values = set(user_def[key].keys()) - set(skip)
  1203. if api_values != user_values:
  1204. if debug:
  1205. print("keys are not equal in dict")
  1206. print(user_values)
  1207. print(api_values)
  1208. return False
  1209. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1210. if not result:
  1211. if debug:
  1212. print("dict returned false")
  1213. print(result)
  1214. return False
  1215. # Verify each key, value pair is the same
  1216. else:
  1217. if key not in user_def or value != user_def[key]:
  1218. if debug:
  1219. print("value not equal; user_def does not have key")
  1220. print(key)
  1221. print(value)
  1222. if key in user_def:
  1223. print(user_def[key])
  1224. return False
  1225. if debug:
  1226. print('returning true')
  1227. return True
  1228. class OpenShiftCLIConfig(object):
  1229. '''Generic Config'''
  1230. def __init__(self, rname, namespace, kubeconfig, options):
  1231. self.kubeconfig = kubeconfig
  1232. self.name = rname
  1233. self.namespace = namespace
  1234. self._options = options
  1235. @property
  1236. def config_options(self):
  1237. ''' return config options '''
  1238. return self._options
  1239. def to_option_list(self):
  1240. '''return all options as a string'''
  1241. return self.stringify()
  1242. def stringify(self):
  1243. ''' return the options hash as cli params in a string '''
  1244. rval = []
  1245. for key in sorted(self.config_options.keys()):
  1246. data = self.config_options[key]
  1247. if data['include'] \
  1248. and (data['value'] or isinstance(data['value'], int)):
  1249. rval.append('--{}={}'.format(key.replace('_', '-'), data['value']))
  1250. return rval
  1251. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1252. # -*- -*- -*- Begin included fragment: lib/deploymentconfig.py -*- -*- -*-
  1253. # pylint: disable=too-many-public-methods
  1254. class DeploymentConfig(Yedit):
  1255. ''' Class to model an openshift DeploymentConfig'''
  1256. default_deployment_config = '''
  1257. apiVersion: v1
  1258. kind: DeploymentConfig
  1259. metadata:
  1260. name: default_dc
  1261. namespace: default
  1262. spec:
  1263. replicas: 0
  1264. selector:
  1265. default_dc: default_dc
  1266. strategy:
  1267. resources: {}
  1268. rollingParams:
  1269. intervalSeconds: 1
  1270. maxSurge: 0
  1271. maxUnavailable: 25%
  1272. timeoutSeconds: 600
  1273. updatePercent: -25
  1274. updatePeriodSeconds: 1
  1275. type: Rolling
  1276. template:
  1277. metadata:
  1278. spec:
  1279. containers:
  1280. - env:
  1281. - name: default
  1282. value: default
  1283. image: default
  1284. imagePullPolicy: IfNotPresent
  1285. name: default_dc
  1286. ports:
  1287. - containerPort: 8000
  1288. hostPort: 8000
  1289. protocol: TCP
  1290. name: default_port
  1291. resources: {}
  1292. terminationMessagePath: /dev/termination-log
  1293. dnsPolicy: ClusterFirst
  1294. hostNetwork: true
  1295. nodeSelector:
  1296. type: compute
  1297. restartPolicy: Always
  1298. securityContext: {}
  1299. serviceAccount: default
  1300. serviceAccountName: default
  1301. terminationGracePeriodSeconds: 30
  1302. triggers:
  1303. - type: ConfigChange
  1304. '''
  1305. replicas_path = "spec.replicas"
  1306. env_path = "spec.template.spec.containers[0].env"
  1307. volumes_path = "spec.template.spec.volumes"
  1308. container_path = "spec.template.spec.containers"
  1309. volume_mounts_path = "spec.template.spec.containers[0].volumeMounts"
  1310. def __init__(self, content=None):
  1311. ''' Constructor for deploymentconfig '''
  1312. if not content:
  1313. content = DeploymentConfig.default_deployment_config
  1314. super(DeploymentConfig, self).__init__(content=content)
  1315. def add_env_value(self, key, value):
  1316. ''' add key, value pair to env array '''
  1317. rval = False
  1318. env = self.get_env_vars()
  1319. if env:
  1320. env.append({'name': key, 'value': value})
  1321. rval = True
  1322. else:
  1323. result = self.put(DeploymentConfig.env_path, {'name': key, 'value': value})
  1324. rval = result[0]
  1325. return rval
  1326. def exists_env_value(self, key, value):
  1327. ''' return whether a key, value pair exists '''
  1328. results = self.get_env_vars()
  1329. if not results:
  1330. return False
  1331. for result in results:
  1332. if result['name'] == key and result['value'] == value:
  1333. return True
  1334. return False
  1335. def exists_env_key(self, key):
  1336. ''' return whether a key, value pair exists '''
  1337. results = self.get_env_vars()
  1338. if not results:
  1339. return False
  1340. for result in results:
  1341. if result['name'] == key:
  1342. return True
  1343. return False
  1344. def get_env_var(self, key):
  1345. '''return a environment variables '''
  1346. results = self.get(DeploymentConfig.env_path) or []
  1347. if not results:
  1348. return None
  1349. for env_var in results:
  1350. if env_var['name'] == key:
  1351. return env_var
  1352. return None
  1353. def get_env_vars(self):
  1354. '''return a environment variables '''
  1355. return self.get(DeploymentConfig.env_path) or []
  1356. def delete_env_var(self, keys):
  1357. '''delete a list of keys '''
  1358. if not isinstance(keys, list):
  1359. keys = [keys]
  1360. env_vars_array = self.get_env_vars()
  1361. modified = False
  1362. idx = None
  1363. for key in keys:
  1364. for env_idx, env_var in enumerate(env_vars_array):
  1365. if env_var['name'] == key:
  1366. idx = env_idx
  1367. break
  1368. if idx:
  1369. modified = True
  1370. del env_vars_array[idx]
  1371. if modified:
  1372. return True
  1373. return False
  1374. def update_env_var(self, key, value):
  1375. '''place an env in the env var list'''
  1376. env_vars_array = self.get_env_vars()
  1377. idx = None
  1378. for env_idx, env_var in enumerate(env_vars_array):
  1379. if env_var['name'] == key:
  1380. idx = env_idx
  1381. break
  1382. if idx:
  1383. env_vars_array[idx]['value'] = value
  1384. else:
  1385. self.add_env_value(key, value)
  1386. return True
  1387. def exists_volume_mount(self, volume_mount):
  1388. ''' return whether a volume mount exists '''
  1389. exist_volume_mounts = self.get_volume_mounts()
  1390. if not exist_volume_mounts:
  1391. return False
  1392. volume_mount_found = False
  1393. for exist_volume_mount in exist_volume_mounts:
  1394. if exist_volume_mount['name'] == volume_mount['name']:
  1395. volume_mount_found = True
  1396. break
  1397. return volume_mount_found
  1398. def exists_volume(self, volume):
  1399. ''' return whether a volume exists '''
  1400. exist_volumes = self.get_volumes()
  1401. volume_found = False
  1402. for exist_volume in exist_volumes:
  1403. if exist_volume['name'] == volume['name']:
  1404. volume_found = True
  1405. break
  1406. return volume_found
  1407. def find_volume_by_name(self, volume, mounts=False):
  1408. ''' return the index of a volume '''
  1409. volumes = []
  1410. if mounts:
  1411. volumes = self.get_volume_mounts()
  1412. else:
  1413. volumes = self.get_volumes()
  1414. for exist_volume in volumes:
  1415. if exist_volume['name'] == volume['name']:
  1416. return exist_volume
  1417. return None
  1418. def get_replicas(self):
  1419. ''' return replicas setting '''
  1420. return self.get(DeploymentConfig.replicas_path)
  1421. def get_volume_mounts(self):
  1422. '''return volume mount information '''
  1423. return self.get_volumes(mounts=True)
  1424. def get_volumes(self, mounts=False):
  1425. '''return volume mount information '''
  1426. if mounts:
  1427. return self.get(DeploymentConfig.volume_mounts_path) or []
  1428. return self.get(DeploymentConfig.volumes_path) or []
  1429. def delete_volume_by_name(self, volume):
  1430. '''delete a volume '''
  1431. modified = False
  1432. exist_volume_mounts = self.get_volume_mounts()
  1433. exist_volumes = self.get_volumes()
  1434. del_idx = None
  1435. for idx, exist_volume in enumerate(exist_volumes):
  1436. if 'name' in exist_volume and exist_volume['name'] == volume['name']:
  1437. del_idx = idx
  1438. break
  1439. if del_idx != None:
  1440. del exist_volumes[del_idx]
  1441. modified = True
  1442. del_idx = None
  1443. for idx, exist_volume_mount in enumerate(exist_volume_mounts):
  1444. if 'name' in exist_volume_mount and exist_volume_mount['name'] == volume['name']:
  1445. del_idx = idx
  1446. break
  1447. if del_idx != None:
  1448. del exist_volume_mounts[idx]
  1449. modified = True
  1450. return modified
  1451. def add_volume_mount(self, volume_mount):
  1452. ''' add a volume or volume mount to the proper location '''
  1453. exist_volume_mounts = self.get_volume_mounts()
  1454. if not exist_volume_mounts and volume_mount:
  1455. self.put(DeploymentConfig.volume_mounts_path, [volume_mount])
  1456. else:
  1457. exist_volume_mounts.append(volume_mount)
  1458. def add_volume(self, volume):
  1459. ''' add a volume or volume mount to the proper location '''
  1460. exist_volumes = self.get_volumes()
  1461. if not volume:
  1462. return
  1463. if not exist_volumes:
  1464. self.put(DeploymentConfig.volumes_path, [volume])
  1465. else:
  1466. exist_volumes.append(volume)
  1467. def update_replicas(self, replicas):
  1468. ''' update replicas value '''
  1469. self.put(DeploymentConfig.replicas_path, replicas)
  1470. def update_volume(self, volume):
  1471. '''place an env in the env var list'''
  1472. exist_volumes = self.get_volumes()
  1473. if not volume:
  1474. return False
  1475. # update the volume
  1476. update_idx = None
  1477. for idx, exist_vol in enumerate(exist_volumes):
  1478. if exist_vol['name'] == volume['name']:
  1479. update_idx = idx
  1480. break
  1481. if update_idx != None:
  1482. exist_volumes[update_idx] = volume
  1483. else:
  1484. self.add_volume(volume)
  1485. return True
  1486. def update_volume_mount(self, volume_mount):
  1487. '''place an env in the env var list'''
  1488. modified = False
  1489. exist_volume_mounts = self.get_volume_mounts()
  1490. if not volume_mount:
  1491. return False
  1492. # update the volume mount
  1493. for exist_vol_mount in exist_volume_mounts:
  1494. if exist_vol_mount['name'] == volume_mount['name']:
  1495. if 'mountPath' in exist_vol_mount and \
  1496. str(exist_vol_mount['mountPath']) != str(volume_mount['mountPath']):
  1497. exist_vol_mount['mountPath'] = volume_mount['mountPath']
  1498. modified = True
  1499. break
  1500. if not modified:
  1501. self.add_volume_mount(volume_mount)
  1502. modified = True
  1503. return modified
  1504. def needs_update_volume(self, volume, volume_mount):
  1505. ''' verify a volume update is needed '''
  1506. exist_volume = self.find_volume_by_name(volume)
  1507. exist_volume_mount = self.find_volume_by_name(volume, mounts=True)
  1508. results = []
  1509. results.append(exist_volume['name'] == volume['name'])
  1510. if 'secret' in volume:
  1511. results.append('secret' in exist_volume)
  1512. results.append(exist_volume['secret']['secretName'] == volume['secret']['secretName'])
  1513. results.append(exist_volume_mount['name'] == volume_mount['name'])
  1514. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1515. elif 'emptyDir' in volume:
  1516. results.append(exist_volume_mount['name'] == volume['name'])
  1517. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1518. elif 'persistentVolumeClaim' in volume:
  1519. pvc = 'persistentVolumeClaim'
  1520. results.append(pvc in exist_volume)
  1521. if results[-1]:
  1522. results.append(exist_volume[pvc]['claimName'] == volume[pvc]['claimName'])
  1523. if 'claimSize' in volume[pvc]:
  1524. results.append(exist_volume[pvc]['claimSize'] == volume[pvc]['claimSize'])
  1525. elif 'hostpath' in volume:
  1526. results.append('hostPath' in exist_volume)
  1527. results.append(exist_volume['hostPath']['path'] == volume_mount['mountPath'])
  1528. return not all(results)
  1529. def needs_update_replicas(self, replicas):
  1530. ''' verify whether a replica update is needed '''
  1531. current_reps = self.get(DeploymentConfig.replicas_path)
  1532. return not current_reps == replicas
  1533. # -*- -*- -*- End included fragment: lib/deploymentconfig.py -*- -*- -*-
  1534. # -*- -*- -*- Begin included fragment: lib/secret.py -*- -*- -*-
  1535. # pylint: disable=too-many-instance-attributes
  1536. class SecretConfig(object):
  1537. ''' Handle secret options '''
  1538. # pylint: disable=too-many-arguments
  1539. def __init__(self,
  1540. sname,
  1541. namespace,
  1542. kubeconfig,
  1543. secrets=None):
  1544. ''' constructor for handling secret options '''
  1545. self.kubeconfig = kubeconfig
  1546. self.name = sname
  1547. self.namespace = namespace
  1548. self.secrets = secrets
  1549. self.data = {}
  1550. self.create_dict()
  1551. def create_dict(self):
  1552. ''' assign the correct properties for a secret dict '''
  1553. self.data['apiVersion'] = 'v1'
  1554. self.data['kind'] = 'Secret'
  1555. self.data['metadata'] = {}
  1556. self.data['metadata']['name'] = self.name
  1557. self.data['metadata']['namespace'] = self.namespace
  1558. self.data['data'] = {}
  1559. if self.secrets:
  1560. for key, value in self.secrets.items():
  1561. self.data['data'][key] = value
  1562. # pylint: disable=too-many-instance-attributes
  1563. class Secret(Yedit):
  1564. ''' Class to wrap the oc command line tools '''
  1565. secret_path = "data"
  1566. kind = 'secret'
  1567. def __init__(self, content):
  1568. '''secret constructor'''
  1569. super(Secret, self).__init__(content=content)
  1570. self._secrets = None
  1571. @property
  1572. def secrets(self):
  1573. '''secret property getter'''
  1574. if self._secrets is None:
  1575. self._secrets = self.get_secrets()
  1576. return self._secrets
  1577. @secrets.setter
  1578. def secrets(self):
  1579. '''secret property setter'''
  1580. if self._secrets is None:
  1581. self._secrets = self.get_secrets()
  1582. return self._secrets
  1583. def get_secrets(self):
  1584. ''' returns all of the defined secrets '''
  1585. return self.get(Secret.secret_path) or {}
  1586. def add_secret(self, key, value):
  1587. ''' add a secret '''
  1588. if self.secrets:
  1589. self.secrets[key] = value
  1590. else:
  1591. self.put(Secret.secret_path, {key: value})
  1592. return True
  1593. def delete_secret(self, key):
  1594. ''' delete secret'''
  1595. try:
  1596. del self.secrets[key]
  1597. except KeyError as _:
  1598. return False
  1599. return True
  1600. def find_secret(self, key):
  1601. ''' find secret'''
  1602. rval = None
  1603. try:
  1604. rval = self.secrets[key]
  1605. except KeyError as _:
  1606. return None
  1607. return {'key': key, 'value': rval}
  1608. def update_secret(self, key, value):
  1609. ''' update a secret'''
  1610. if key in self.secrets:
  1611. self.secrets[key] = value
  1612. else:
  1613. self.add_secret(key, value)
  1614. return True
  1615. # -*- -*- -*- End included fragment: lib/secret.py -*- -*- -*-
  1616. # -*- -*- -*- Begin included fragment: lib/service.py -*- -*- -*-
  1617. # pylint: disable=too-many-instance-attributes
  1618. class ServiceConfig(object):
  1619. ''' Handle service options '''
  1620. # pylint: disable=too-many-arguments
  1621. def __init__(self,
  1622. sname,
  1623. namespace,
  1624. ports,
  1625. selector=None,
  1626. labels=None,
  1627. cluster_ip=None,
  1628. portal_ip=None,
  1629. session_affinity=None,
  1630. service_type=None):
  1631. ''' constructor for handling service options '''
  1632. self.name = sname
  1633. self.namespace = namespace
  1634. self.ports = ports
  1635. self.selector = selector
  1636. self.labels = labels
  1637. self.cluster_ip = cluster_ip
  1638. self.portal_ip = portal_ip
  1639. self.session_affinity = session_affinity
  1640. self.service_type = service_type
  1641. self.data = {}
  1642. self.create_dict()
  1643. def create_dict(self):
  1644. ''' instantiates a service dict '''
  1645. self.data['apiVersion'] = 'v1'
  1646. self.data['kind'] = 'Service'
  1647. self.data['metadata'] = {}
  1648. self.data['metadata']['name'] = self.name
  1649. self.data['metadata']['namespace'] = self.namespace
  1650. if self.labels:
  1651. for lab, lab_value in self.labels.items():
  1652. self.data['metadata'][lab] = lab_value
  1653. self.data['spec'] = {}
  1654. if self.ports:
  1655. self.data['spec']['ports'] = self.ports
  1656. else:
  1657. self.data['spec']['ports'] = []
  1658. if self.selector:
  1659. self.data['spec']['selector'] = self.selector
  1660. self.data['spec']['sessionAffinity'] = self.session_affinity or 'None'
  1661. if self.cluster_ip:
  1662. self.data['spec']['clusterIP'] = self.cluster_ip
  1663. if self.portal_ip:
  1664. self.data['spec']['portalIP'] = self.portal_ip
  1665. if self.service_type:
  1666. self.data['spec']['type'] = self.service_type
  1667. # pylint: disable=too-many-instance-attributes,too-many-public-methods
  1668. class Service(Yedit):
  1669. ''' Class to model the oc service object '''
  1670. port_path = "spec.ports"
  1671. portal_ip = "spec.portalIP"
  1672. cluster_ip = "spec.clusterIP"
  1673. selector_path = 'spec.selector'
  1674. kind = 'Service'
  1675. def __init__(self, content):
  1676. '''Service constructor'''
  1677. super(Service, self).__init__(content=content)
  1678. def get_ports(self):
  1679. ''' get a list of ports '''
  1680. return self.get(Service.port_path) or []
  1681. def get_selector(self):
  1682. ''' get the service selector'''
  1683. return self.get(Service.selector_path) or {}
  1684. def add_ports(self, inc_ports):
  1685. ''' add a port object to the ports list '''
  1686. if not isinstance(inc_ports, list):
  1687. inc_ports = [inc_ports]
  1688. ports = self.get_ports()
  1689. if not ports:
  1690. self.put(Service.port_path, inc_ports)
  1691. else:
  1692. ports.extend(inc_ports)
  1693. return True
  1694. def find_ports(self, inc_port):
  1695. ''' find a specific port '''
  1696. for port in self.get_ports():
  1697. if port['port'] == inc_port['port']:
  1698. return port
  1699. return None
  1700. def delete_ports(self, inc_ports):
  1701. ''' remove a port from a service '''
  1702. if not isinstance(inc_ports, list):
  1703. inc_ports = [inc_ports]
  1704. ports = self.get(Service.port_path) or []
  1705. if not ports:
  1706. return True
  1707. removed = False
  1708. for inc_port in inc_ports:
  1709. port = self.find_ports(inc_port)
  1710. if port:
  1711. ports.remove(port)
  1712. removed = True
  1713. return removed
  1714. def add_cluster_ip(self, sip):
  1715. '''add cluster ip'''
  1716. self.put(Service.cluster_ip, sip)
  1717. def add_portal_ip(self, pip):
  1718. '''add cluster ip'''
  1719. self.put(Service.portal_ip, pip)
  1720. # -*- -*- -*- End included fragment: lib/service.py -*- -*- -*-
  1721. # -*- -*- -*- Begin included fragment: lib/volume.py -*- -*- -*-
  1722. class Volume(object):
  1723. ''' Class to represent an openshift volume object'''
  1724. volume_mounts_path = {"pod": "spec.containers[0].volumeMounts",
  1725. "dc": "spec.template.spec.containers[0].volumeMounts",
  1726. "rc": "spec.template.spec.containers[0].volumeMounts",
  1727. }
  1728. volumes_path = {"pod": "spec.volumes",
  1729. "dc": "spec.template.spec.volumes",
  1730. "rc": "spec.template.spec.volumes",
  1731. }
  1732. @staticmethod
  1733. def create_volume_structure(volume_info):
  1734. ''' return a properly structured volume '''
  1735. volume_mount = None
  1736. volume = {'name': volume_info['name']}
  1737. volume_type = volume_info['type'].lower()
  1738. if volume_type == 'secret':
  1739. volume['secret'] = {}
  1740. volume[volume_info['type']] = {'secretName': volume_info['secret_name']}
  1741. volume_mount = {'mountPath': volume_info['path'],
  1742. 'name': volume_info['name']}
  1743. elif volume_type == 'emptydir':
  1744. volume['emptyDir'] = {}
  1745. volume_mount = {'mountPath': volume_info['path'],
  1746. 'name': volume_info['name']}
  1747. elif volume_type == 'pvc' or volume_type == 'persistentvolumeclaim':
  1748. volume['persistentVolumeClaim'] = {}
  1749. volume['persistentVolumeClaim']['claimName'] = volume_info['claimName']
  1750. volume['persistentVolumeClaim']['claimSize'] = volume_info['claimSize']
  1751. elif volume_type == 'hostpath':
  1752. volume['hostPath'] = {}
  1753. volume['hostPath']['path'] = volume_info['path']
  1754. elif volume_type == 'configmap':
  1755. volume['configMap'] = {}
  1756. volume['configMap']['name'] = volume_info['configmap_name']
  1757. volume_mount = {'mountPath': volume_info['path'],
  1758. 'name': volume_info['name']}
  1759. return (volume, volume_mount)
  1760. # -*- -*- -*- End included fragment: lib/volume.py -*- -*- -*-
  1761. # -*- -*- -*- Begin included fragment: class/oc_version.py -*- -*- -*-
  1762. # pylint: disable=too-many-instance-attributes
  1763. class OCVersion(OpenShiftCLI):
  1764. ''' Class to wrap the oc command line tools '''
  1765. # pylint allows 5
  1766. # pylint: disable=too-many-arguments
  1767. def __init__(self,
  1768. config,
  1769. debug):
  1770. ''' Constructor for OCVersion '''
  1771. super(OCVersion, self).__init__(None, config)
  1772. self.debug = debug
  1773. def get(self):
  1774. '''get and return version information '''
  1775. results = {}
  1776. version_results = self._version()
  1777. if version_results['returncode'] == 0:
  1778. filtered_vers = Utils.filter_versions(version_results['results'])
  1779. custom_vers = Utils.add_custom_versions(filtered_vers)
  1780. results['returncode'] = version_results['returncode']
  1781. results.update(filtered_vers)
  1782. results.update(custom_vers)
  1783. return results
  1784. raise OpenShiftCLIError('Problem detecting openshift version.')
  1785. @staticmethod
  1786. def run_ansible(params):
  1787. '''run the idempotent ansible code'''
  1788. oc_version = OCVersion(params['kubeconfig'], params['debug'])
  1789. if params['state'] == 'list':
  1790. #pylint: disable=protected-access
  1791. result = oc_version.get()
  1792. return {'state': params['state'],
  1793. 'results': result,
  1794. 'changed': False}
  1795. # -*- -*- -*- End included fragment: class/oc_version.py -*- -*- -*-
  1796. # -*- -*- -*- Begin included fragment: class/oc_adm_registry.py -*- -*- -*-
  1797. class RegistryException(Exception):
  1798. ''' Registry Exception Class '''
  1799. pass
  1800. class RegistryConfig(OpenShiftCLIConfig):
  1801. ''' RegistryConfig is a DTO for the registry. '''
  1802. def __init__(self, rname, namespace, kubeconfig, registry_options):
  1803. super(RegistryConfig, self).__init__(rname, namespace, kubeconfig, registry_options)
  1804. class Registry(OpenShiftCLI):
  1805. ''' Class to wrap the oc command line tools '''
  1806. volume_mount_path = 'spec.template.spec.containers[0].volumeMounts'
  1807. volume_path = 'spec.template.spec.volumes'
  1808. env_path = 'spec.template.spec.containers[0].env'
  1809. def __init__(self,
  1810. registry_config,
  1811. verbose=False):
  1812. ''' Constructor for Registry
  1813. a registry consists of 3 or more parts
  1814. - dc/docker-registry
  1815. - svc/docker-registry
  1816. Parameters:
  1817. :registry_config:
  1818. :verbose:
  1819. '''
  1820. super(Registry, self).__init__(registry_config.namespace, registry_config.kubeconfig, verbose)
  1821. self.version = OCVersion(registry_config.kubeconfig, verbose)
  1822. self.svc_ip = None
  1823. self.portal_ip = None
  1824. self.config = registry_config
  1825. self.verbose = verbose
  1826. self.registry_parts = [{'kind': 'dc', 'name': self.config.name},
  1827. {'kind': 'svc', 'name': self.config.name},
  1828. ]
  1829. self.__prepared_registry = None
  1830. self.volume_mounts = []
  1831. self.volumes = []
  1832. if self.config.config_options['volume_mounts']['value']:
  1833. for volume in self.config.config_options['volume_mounts']['value']:
  1834. volume_info = {'secret_name': volume.get('secret_name', None),
  1835. 'name': volume.get('name', None),
  1836. 'type': volume.get('type', None),
  1837. 'path': volume.get('path', None),
  1838. 'claimName': volume.get('claim_name', None),
  1839. 'claimSize': volume.get('claim_size', None),
  1840. }
  1841. vol, vol_mount = Volume.create_volume_structure(volume_info)
  1842. self.volumes.append(vol)
  1843. self.volume_mounts.append(vol_mount)
  1844. self.dconfig = None
  1845. self.svc = None
  1846. @property
  1847. def deploymentconfig(self):
  1848. ''' deploymentconfig property '''
  1849. return self.dconfig
  1850. @deploymentconfig.setter
  1851. def deploymentconfig(self, config):
  1852. ''' setter for deploymentconfig property '''
  1853. self.dconfig = config
  1854. @property
  1855. def service(self):
  1856. ''' service property '''
  1857. return self.svc
  1858. @service.setter
  1859. def service(self, config):
  1860. ''' setter for service property '''
  1861. self.svc = config
  1862. @property
  1863. def prepared_registry(self):
  1864. ''' prepared_registry property '''
  1865. if not self.__prepared_registry:
  1866. results = self.prepare_registry()
  1867. if not results or ('returncode' in results and results['returncode'] != 0):
  1868. raise RegistryException('Could not perform registry preparation. {}'.format(results))
  1869. self.__prepared_registry = results
  1870. return self.__prepared_registry
  1871. @prepared_registry.setter
  1872. def prepared_registry(self, data):
  1873. ''' setter method for prepared_registry attribute '''
  1874. self.__prepared_registry = data
  1875. def get(self):
  1876. ''' return the self.registry_parts '''
  1877. self.deploymentconfig = None
  1878. self.service = None
  1879. rval = 0
  1880. for part in self.registry_parts:
  1881. result = self._get(part['kind'], name=part['name'])
  1882. if result['returncode'] == 0 and part['kind'] == 'dc':
  1883. self.deploymentconfig = DeploymentConfig(result['results'][0])
  1884. elif result['returncode'] == 0 and part['kind'] == 'svc':
  1885. self.service = Service(result['results'][0])
  1886. if result['returncode'] != 0:
  1887. rval = result['returncode']
  1888. return {'returncode': rval, 'deploymentconfig': self.deploymentconfig, 'service': self.service}
  1889. def exists(self):
  1890. '''does the object exist?'''
  1891. if self.deploymentconfig and self.service:
  1892. return True
  1893. return False
  1894. def delete(self, complete=True):
  1895. '''return all pods '''
  1896. parts = []
  1897. for part in self.registry_parts:
  1898. if not complete and part['kind'] == 'svc':
  1899. continue
  1900. parts.append(self._delete(part['kind'], part['name']))
  1901. # Clean up returned results
  1902. rval = 0
  1903. for part in parts:
  1904. # pylint: disable=invalid-sequence-index
  1905. if 'returncode' in part and part['returncode'] != 0:
  1906. rval = part['returncode']
  1907. return {'returncode': rval, 'results': parts}
  1908. def prepare_registry(self):
  1909. ''' prepare a registry for instantiation '''
  1910. options = self.config.to_option_list()
  1911. cmd = ['registry']
  1912. cmd.extend(options)
  1913. cmd.extend(['--dry-run=True', '-o', 'json'])
  1914. results = self.openshift_cmd(cmd, oadm=True, output=True, output_type='json')
  1915. # probably need to parse this
  1916. # pylint thinks results is a string
  1917. # pylint: disable=no-member
  1918. if results['returncode'] != 0 and 'items' not in results['results']:
  1919. raise RegistryException('Could not perform registry preparation. {}'.format(results))
  1920. service = None
  1921. deploymentconfig = None
  1922. # pylint: disable=invalid-sequence-index
  1923. for res in results['results']['items']:
  1924. if res['kind'] == 'DeploymentConfig':
  1925. deploymentconfig = DeploymentConfig(res)
  1926. elif res['kind'] == 'Service':
  1927. service = Service(res)
  1928. # Verify we got a service and a deploymentconfig
  1929. if not service or not deploymentconfig:
  1930. return results
  1931. # results will need to get parsed here and modifications added
  1932. deploymentconfig = DeploymentConfig(self.add_modifications(deploymentconfig))
  1933. # modify service ip
  1934. if self.svc_ip:
  1935. service.put('spec.clusterIP', self.svc_ip)
  1936. if self.portal_ip:
  1937. service.put('spec.portalIP', self.portal_ip)
  1938. # the dry-run doesn't apply the selector correctly
  1939. if self.service:
  1940. service.put('spec.selector', self.service.get_selector())
  1941. # need to create the service and the deploymentconfig
  1942. service_file = Utils.create_tmp_file_from_contents('service', service.yaml_dict)
  1943. deployment_file = Utils.create_tmp_file_from_contents('deploymentconfig', deploymentconfig.yaml_dict)
  1944. return {"service": service,
  1945. "service_file": service_file,
  1946. "service_update": False,
  1947. "deployment": deploymentconfig,
  1948. "deployment_file": deployment_file,
  1949. "deployment_update": False}
  1950. def create(self):
  1951. '''Create a registry'''
  1952. results = []
  1953. self.needs_update()
  1954. # if the object is none, then we need to create it
  1955. # if the object needs an update, then we should call replace
  1956. # Handle the deploymentconfig
  1957. if self.deploymentconfig is None:
  1958. results.append(self._create(self.prepared_registry['deployment_file']))
  1959. elif self.prepared_registry['deployment_update']:
  1960. results.append(self._replace(self.prepared_registry['deployment_file']))
  1961. # Handle the service
  1962. if self.service is None:
  1963. results.append(self._create(self.prepared_registry['service_file']))
  1964. elif self.prepared_registry['service_update']:
  1965. results.append(self._replace(self.prepared_registry['service_file']))
  1966. # Clean up returned results
  1967. rval = 0
  1968. for result in results:
  1969. # pylint: disable=invalid-sequence-index
  1970. if 'returncode' in result and result['returncode'] != 0:
  1971. rval = result['returncode']
  1972. return {'returncode': rval, 'results': results}
  1973. def update(self):
  1974. '''run update for the registry. This performs a replace if required'''
  1975. # Store the current service IP
  1976. if self.service:
  1977. svcip = self.service.get('spec.clusterIP')
  1978. if svcip:
  1979. self.svc_ip = svcip
  1980. portip = self.service.get('spec.portalIP')
  1981. if portip:
  1982. self.portal_ip = portip
  1983. results = []
  1984. if self.prepared_registry['deployment_update']:
  1985. results.append(self._replace(self.prepared_registry['deployment_file']))
  1986. if self.prepared_registry['service_update']:
  1987. results.append(self._replace(self.prepared_registry['service_file']))
  1988. # Clean up returned results
  1989. rval = 0
  1990. for result in results:
  1991. if result['returncode'] != 0:
  1992. rval = result['returncode']
  1993. return {'returncode': rval, 'results': results}
  1994. def add_modifications(self, deploymentconfig):
  1995. ''' update a deployment config with changes '''
  1996. # The environment variable for REGISTRY_HTTP_SECRET is autogenerated
  1997. # We should set the generated deploymentconfig to the in memory version
  1998. # the following modifications will overwrite if needed
  1999. if self.deploymentconfig:
  2000. result = self.deploymentconfig.get_env_var('REGISTRY_HTTP_SECRET')
  2001. if result:
  2002. deploymentconfig.update_env_var('REGISTRY_HTTP_SECRET', result['value'])
  2003. # Currently we know that our deployment of a registry requires a few extra modifications
  2004. # Modification 1
  2005. # we need specific environment variables to be set
  2006. for key, value in self.config.config_options['env_vars'].get('value', {}).items():
  2007. if not deploymentconfig.exists_env_key(key):
  2008. deploymentconfig.add_env_value(key, value)
  2009. else:
  2010. deploymentconfig.update_env_var(key, value)
  2011. # Modification 2
  2012. # we need specific volume variables to be set
  2013. for volume in self.volumes:
  2014. deploymentconfig.update_volume(volume)
  2015. for vol_mount in self.volume_mounts:
  2016. deploymentconfig.update_volume_mount(vol_mount)
  2017. # Modification 3
  2018. # Edits
  2019. edit_results = []
  2020. for edit in self.config.config_options['edits'].get('value', []):
  2021. if edit['action'] == 'put':
  2022. edit_results.append(deploymentconfig.put(edit['key'],
  2023. edit['value']))
  2024. if edit['action'] == 'update':
  2025. edit_results.append(deploymentconfig.update(edit['key'],
  2026. edit['value'],
  2027. edit.get('index', None),
  2028. edit.get('curr_value', None)))
  2029. if edit['action'] == 'append':
  2030. edit_results.append(deploymentconfig.append(edit['key'],
  2031. edit['value']))
  2032. if edit_results and not any([res[0] for res in edit_results]):
  2033. return None
  2034. return deploymentconfig.yaml_dict
  2035. def needs_update(self):
  2036. ''' check to see if we need to update '''
  2037. exclude_list = ['clusterIP', 'portalIP', 'type', 'protocol']
  2038. if self.service is None or \
  2039. not Utils.check_def_equal(self.prepared_registry['service'].yaml_dict,
  2040. self.service.yaml_dict,
  2041. exclude_list,
  2042. debug=self.verbose):
  2043. self.prepared_registry['service_update'] = True
  2044. exclude_list = ['dnsPolicy',
  2045. 'terminationGracePeriodSeconds',
  2046. 'restartPolicy', 'timeoutSeconds',
  2047. 'livenessProbe', 'readinessProbe',
  2048. 'terminationMessagePath',
  2049. 'securityContext',
  2050. 'imagePullPolicy',
  2051. 'protocol', # ports.portocol: TCP
  2052. 'type', # strategy: {'type': 'rolling'}
  2053. 'defaultMode', # added on secrets
  2054. 'activeDeadlineSeconds', # added in 1.5 for timeouts
  2055. ]
  2056. if self.deploymentconfig is None or \
  2057. not Utils.check_def_equal(self.prepared_registry['deployment'].yaml_dict,
  2058. self.deploymentconfig.yaml_dict,
  2059. exclude_list,
  2060. debug=self.verbose):
  2061. self.prepared_registry['deployment_update'] = True
  2062. return self.prepared_registry['deployment_update'] or self.prepared_registry['service_update'] or False
  2063. # In the future, we would like to break out each ansible state into a function.
  2064. # pylint: disable=too-many-branches,too-many-return-statements
  2065. @staticmethod
  2066. def run_ansible(params, check_mode):
  2067. '''run idempotent ansible code'''
  2068. registry_options = {'images': {'value': params['images'], 'include': True},
  2069. 'latest_images': {'value': params['latest_images'], 'include': True},
  2070. 'labels': {'value': params['labels'], 'include': True},
  2071. 'ports': {'value': ','.join(params['ports']), 'include': True},
  2072. 'replicas': {'value': params['replicas'], 'include': True},
  2073. 'selector': {'value': params['selector'], 'include': True},
  2074. 'service_account': {'value': params['service_account'], 'include': True},
  2075. 'mount_host': {'value': params['mount_host'], 'include': True},
  2076. 'env_vars': {'value': params['env_vars'], 'include': False},
  2077. 'volume_mounts': {'value': params['volume_mounts'], 'include': False},
  2078. 'edits': {'value': params['edits'], 'include': False},
  2079. 'tls_key': {'value': params['tls_key'], 'include': True},
  2080. 'tls_certificate': {'value': params['tls_certificate'], 'include': True},
  2081. }
  2082. # Do not always pass the daemonset and enforce-quota parameters because they are not understood
  2083. # by old versions of oc.
  2084. # Default value is false. So, it's safe to not pass an explicit false value to oc versions which
  2085. # understand these parameters.
  2086. if params['daemonset']:
  2087. registry_options['daemonset'] = {'value': params['daemonset'], 'include': True}
  2088. if params['enforce_quota']:
  2089. registry_options['enforce_quota'] = {'value': params['enforce_quota'], 'include': True}
  2090. rconfig = RegistryConfig(params['name'],
  2091. params['namespace'],
  2092. params['kubeconfig'],
  2093. registry_options)
  2094. ocregistry = Registry(rconfig, params['debug'])
  2095. api_rval = ocregistry.get()
  2096. state = params['state']
  2097. ########
  2098. # get
  2099. ########
  2100. if state == 'list':
  2101. if api_rval['returncode'] != 0:
  2102. return {'failed': True, 'msg': api_rval}
  2103. return {'changed': False, 'results': api_rval, 'state': state}
  2104. ########
  2105. # Delete
  2106. ########
  2107. if state == 'absent':
  2108. if not ocregistry.exists():
  2109. return {'changed': False, 'state': state}
  2110. if check_mode:
  2111. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a delete.'}
  2112. # Unsure as to why this is angry with the return type.
  2113. # pylint: disable=redefined-variable-type
  2114. api_rval = ocregistry.delete()
  2115. if api_rval['returncode'] != 0:
  2116. return {'failed': True, 'msg': api_rval}
  2117. return {'changed': True, 'results': api_rval, 'state': state}
  2118. if state == 'present':
  2119. ########
  2120. # Create
  2121. ########
  2122. if not ocregistry.exists():
  2123. if check_mode:
  2124. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a create.'}
  2125. api_rval = ocregistry.create()
  2126. if api_rval['returncode'] != 0:
  2127. return {'failed': True, 'msg': api_rval}
  2128. return {'changed': True, 'results': api_rval, 'state': state}
  2129. ########
  2130. # Update
  2131. ########
  2132. if not params['force'] and not ocregistry.needs_update():
  2133. return {'changed': False, 'state': state}
  2134. if check_mode:
  2135. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed an update.'}
  2136. api_rval = ocregistry.update()
  2137. if api_rval['returncode'] != 0:
  2138. return {'failed': True, 'msg': api_rval}
  2139. return {'changed': True, 'results': api_rval, 'state': state}
  2140. return {'failed': True, 'msg': 'Unknown state passed. %s' % state}
  2141. # -*- -*- -*- End included fragment: class/oc_adm_registry.py -*- -*- -*-
  2142. # -*- -*- -*- Begin included fragment: ansible/oc_adm_registry.py -*- -*- -*-
  2143. def main():
  2144. '''
  2145. ansible oc module for registry
  2146. '''
  2147. module = AnsibleModule(
  2148. argument_spec=dict(
  2149. state=dict(default='present', type='str',
  2150. choices=['present', 'absent']),
  2151. debug=dict(default=False, type='bool'),
  2152. namespace=dict(default='default', type='str'),
  2153. name=dict(default=None, required=True, type='str'),
  2154. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  2155. images=dict(default=None, type='str'),
  2156. latest_images=dict(default=False, type='bool'),
  2157. labels=dict(default=None, type='list'),
  2158. ports=dict(default=['5000'], type='list'),
  2159. replicas=dict(default=1, type='int'),
  2160. selector=dict(default=None, type='str'),
  2161. service_account=dict(default='registry', type='str'),
  2162. mount_host=dict(default=None, type='str'),
  2163. volume_mounts=dict(default=None, type='list'),
  2164. env_vars=dict(default={}, type='dict'),
  2165. edits=dict(default=[], type='list'),
  2166. enforce_quota=dict(default=False, type='bool'),
  2167. force=dict(default=False, type='bool'),
  2168. daemonset=dict(default=False, type='bool'),
  2169. tls_key=dict(default=None, type='str'),
  2170. tls_certificate=dict(default=None, type='str'),
  2171. ),
  2172. supports_check_mode=True,
  2173. )
  2174. results = Registry.run_ansible(module.params, module.check_mode)
  2175. if 'failed' in results:
  2176. module.fail_json(**results)
  2177. module.exit_json(**results)
  2178. if __name__ == '__main__':
  2179. main()
  2180. # -*- -*- -*- End included fragment: ansible/oc_adm_registry.py -*- -*- -*-