oc_adm_registry.py 93 KB

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