oc_adm_registry.py 93 KB

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