oc_adm_registry.py 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766
  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):
  901. '''return a resource by name '''
  902. cmd = ['get', resource]
  903. if selector is not None:
  904. cmd.append('--selector={}'.format(selector))
  905. elif name is not None:
  906. cmd.append(name)
  907. cmd.extend(['-o', 'json'])
  908. rval = self.openshift_cmd(cmd, output=True)
  909. # Ensure results are retuned in an array
  910. if 'items' in rval:
  911. rval['results'] = rval['items']
  912. elif not isinstance(rval['results'], list):
  913. rval['results'] = [rval['results']]
  914. return rval
  915. def _schedulable(self, node=None, selector=None, schedulable=True):
  916. ''' perform oadm manage-node scheduable '''
  917. cmd = ['manage-node']
  918. if node:
  919. cmd.extend(node)
  920. else:
  921. cmd.append('--selector={}'.format(selector))
  922. cmd.append('--schedulable={}'.format(schedulable))
  923. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  924. def _list_pods(self, node=None, selector=None, pod_selector=None):
  925. ''' perform oadm list pods
  926. node: the node in which to list pods
  927. selector: the label selector filter if provided
  928. pod_selector: the pod selector filter if provided
  929. '''
  930. cmd = ['manage-node']
  931. if node:
  932. cmd.extend(node)
  933. else:
  934. cmd.append('--selector={}'.format(selector))
  935. if pod_selector:
  936. cmd.append('--pod-selector={}'.format(pod_selector))
  937. cmd.extend(['--list-pods', '-o', 'json'])
  938. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  939. # pylint: disable=too-many-arguments
  940. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  941. ''' perform oadm manage-node evacuate '''
  942. cmd = ['manage-node']
  943. if node:
  944. cmd.extend(node)
  945. else:
  946. cmd.append('--selector={}'.format(selector))
  947. if dry_run:
  948. cmd.append('--dry-run')
  949. if pod_selector:
  950. cmd.append('--pod-selector={}'.format(pod_selector))
  951. if grace_period:
  952. cmd.append('--grace-period={}'.format(int(grace_period)))
  953. if force:
  954. cmd.append('--force')
  955. cmd.append('--evacuate')
  956. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  957. def _version(self):
  958. ''' return the openshift version'''
  959. return self.openshift_cmd(['version'], output=True, output_type='raw')
  960. def _import_image(self, url=None, name=None, tag=None):
  961. ''' perform image import '''
  962. cmd = ['import-image']
  963. image = '{0}'.format(name)
  964. if tag:
  965. image += ':{0}'.format(tag)
  966. cmd.append(image)
  967. if url:
  968. cmd.append('--from={0}/{1}'.format(url, image))
  969. cmd.append('-n{0}'.format(self.namespace))
  970. cmd.append('--confirm')
  971. return self.openshift_cmd(cmd)
  972. def _run(self, cmds, input_data):
  973. ''' Actually executes the command. This makes mocking easier. '''
  974. curr_env = os.environ.copy()
  975. curr_env.update({'KUBECONFIG': self.kubeconfig})
  976. proc = subprocess.Popen(cmds,
  977. stdin=subprocess.PIPE,
  978. stdout=subprocess.PIPE,
  979. stderr=subprocess.PIPE,
  980. env=curr_env)
  981. stdout, stderr = proc.communicate(input_data)
  982. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  983. # pylint: disable=too-many-arguments,too-many-branches
  984. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  985. '''Base command for oc '''
  986. cmds = [self.oc_binary]
  987. if oadm:
  988. cmds.append('adm')
  989. cmds.extend(cmd)
  990. if self.all_namespaces:
  991. cmds.extend(['--all-namespaces'])
  992. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  993. cmds.extend(['-n', self.namespace])
  994. if self.verbose:
  995. print(' '.join(cmds))
  996. try:
  997. returncode, stdout, stderr = self._run(cmds, input_data)
  998. except OSError as ex:
  999. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  1000. rval = {"returncode": returncode,
  1001. "cmd": ' '.join(cmds)}
  1002. if output_type == 'json':
  1003. rval['results'] = {}
  1004. if output and stdout:
  1005. try:
  1006. rval['results'] = json.loads(stdout)
  1007. except ValueError as verr:
  1008. if "No JSON object could be decoded" in verr.args:
  1009. rval['err'] = verr.args
  1010. elif output_type == 'raw':
  1011. rval['results'] = stdout if output else ''
  1012. if self.verbose:
  1013. print("STDOUT: {0}".format(stdout))
  1014. print("STDERR: {0}".format(stderr))
  1015. if 'err' in rval or returncode != 0:
  1016. rval.update({"stderr": stderr,
  1017. "stdout": stdout})
  1018. return rval
  1019. class Utils(object): # pragma: no cover
  1020. ''' utilities for openshiftcli modules '''
  1021. @staticmethod
  1022. def _write(filename, contents):
  1023. ''' Actually write the file contents to disk. This helps with mocking. '''
  1024. with open(filename, 'w') as sfd:
  1025. sfd.write(str(contents))
  1026. @staticmethod
  1027. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  1028. ''' create a file in tmp with name and contents'''
  1029. tmp = Utils.create_tmpfile(prefix=rname)
  1030. if ftype == 'yaml':
  1031. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1032. # pylint: disable=no-member
  1033. if hasattr(yaml, 'RoundTripDumper'):
  1034. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  1035. else:
  1036. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  1037. elif ftype == 'json':
  1038. Utils._write(tmp, json.dumps(data))
  1039. else:
  1040. Utils._write(tmp, data)
  1041. # Register cleanup when module is done
  1042. atexit.register(Utils.cleanup, [tmp])
  1043. return tmp
  1044. @staticmethod
  1045. def create_tmpfile_copy(inc_file):
  1046. '''create a temporary copy of a file'''
  1047. tmpfile = Utils.create_tmpfile('lib_openshift-')
  1048. Utils._write(tmpfile, open(inc_file).read())
  1049. # Cleanup the tmpfile
  1050. atexit.register(Utils.cleanup, [tmpfile])
  1051. return tmpfile
  1052. @staticmethod
  1053. def create_tmpfile(prefix='tmp'):
  1054. ''' Generates and returns a temporary file name '''
  1055. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  1056. return tmp.name
  1057. @staticmethod
  1058. def create_tmp_files_from_contents(content, content_type=None):
  1059. '''Turn an array of dict: filename, content into a files array'''
  1060. if not isinstance(content, list):
  1061. content = [content]
  1062. files = []
  1063. for item in content:
  1064. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  1065. item['data'],
  1066. ftype=content_type)
  1067. files.append({'name': os.path.basename(item['path']),
  1068. 'path': path})
  1069. return files
  1070. @staticmethod
  1071. def cleanup(files):
  1072. '''Clean up on exit '''
  1073. for sfile in files:
  1074. if os.path.exists(sfile):
  1075. if os.path.isdir(sfile):
  1076. shutil.rmtree(sfile)
  1077. elif os.path.isfile(sfile):
  1078. os.remove(sfile)
  1079. @staticmethod
  1080. def exists(results, _name):
  1081. ''' Check to see if the results include the name '''
  1082. if not results:
  1083. return False
  1084. if Utils.find_result(results, _name):
  1085. return True
  1086. return False
  1087. @staticmethod
  1088. def find_result(results, _name):
  1089. ''' Find the specified result by name'''
  1090. rval = None
  1091. for result in results:
  1092. if 'metadata' in result and result['metadata']['name'] == _name:
  1093. rval = result
  1094. break
  1095. return rval
  1096. @staticmethod
  1097. def get_resource_file(sfile, sfile_type='yaml'):
  1098. ''' return the service file '''
  1099. contents = None
  1100. with open(sfile) as sfd:
  1101. contents = sfd.read()
  1102. if sfile_type == 'yaml':
  1103. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1104. # pylint: disable=no-member
  1105. if hasattr(yaml, 'RoundTripLoader'):
  1106. contents = yaml.load(contents, yaml.RoundTripLoader)
  1107. else:
  1108. contents = yaml.safe_load(contents)
  1109. elif sfile_type == 'json':
  1110. contents = json.loads(contents)
  1111. return contents
  1112. @staticmethod
  1113. def filter_versions(stdout):
  1114. ''' filter the oc version output '''
  1115. version_dict = {}
  1116. version_search = ['oc', 'openshift', 'kubernetes']
  1117. for line in stdout.strip().split('\n'):
  1118. for term in version_search:
  1119. if not line:
  1120. continue
  1121. if line.startswith(term):
  1122. version_dict[term] = line.split()[-1]
  1123. # horrible hack to get openshift version in Openshift 3.2
  1124. # By default "oc version in 3.2 does not return an "openshift" version
  1125. if "openshift" not in version_dict:
  1126. version_dict["openshift"] = version_dict["oc"]
  1127. return version_dict
  1128. @staticmethod
  1129. def add_custom_versions(versions):
  1130. ''' create custom versions strings '''
  1131. versions_dict = {}
  1132. for tech, version in versions.items():
  1133. # clean up "-" from version
  1134. if "-" in version:
  1135. version = version.split("-")[0]
  1136. if version.startswith('v'):
  1137. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1138. # "v3.3.0.33" is what we have, we want "3.3"
  1139. versions_dict[tech + '_short'] = version[1:4]
  1140. return versions_dict
  1141. @staticmethod
  1142. def openshift_installed():
  1143. ''' check if openshift is installed '''
  1144. import rpm
  1145. transaction_set = rpm.TransactionSet()
  1146. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  1147. return rpmquery.count() > 0
  1148. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1149. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1150. @staticmethod
  1151. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1152. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1153. # Currently these values are autogenerated and we do not need to check them
  1154. skip = ['metadata', 'status']
  1155. if skip_keys:
  1156. skip.extend(skip_keys)
  1157. for key, value in result_def.items():
  1158. if key in skip:
  1159. continue
  1160. # Both are lists
  1161. if isinstance(value, list):
  1162. if key not in user_def:
  1163. if debug:
  1164. print('User data does not have key [%s]' % key)
  1165. print('User data: %s' % user_def)
  1166. return False
  1167. if not isinstance(user_def[key], list):
  1168. if debug:
  1169. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1170. return False
  1171. if len(user_def[key]) != len(value):
  1172. if debug:
  1173. print("List lengths are not equal.")
  1174. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1175. print("user_def: %s" % user_def[key])
  1176. print("value: %s" % value)
  1177. return False
  1178. for values in zip(user_def[key], value):
  1179. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1180. if debug:
  1181. print('sending list - list')
  1182. print(type(values[0]))
  1183. print(type(values[1]))
  1184. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1185. if not result:
  1186. print('list compare returned false')
  1187. return False
  1188. elif value != user_def[key]:
  1189. if debug:
  1190. print('value should be identical')
  1191. print(user_def[key])
  1192. print(value)
  1193. return False
  1194. # recurse on a dictionary
  1195. elif isinstance(value, dict):
  1196. if key not in user_def:
  1197. if debug:
  1198. print("user_def does not have key [%s]" % key)
  1199. return False
  1200. if not isinstance(user_def[key], dict):
  1201. if debug:
  1202. print("dict returned false: not instance of dict")
  1203. return False
  1204. # before passing ensure keys match
  1205. api_values = set(value.keys()) - set(skip)
  1206. user_values = set(user_def[key].keys()) - set(skip)
  1207. if api_values != user_values:
  1208. if debug:
  1209. print("keys are not equal in dict")
  1210. print(user_values)
  1211. print(api_values)
  1212. return False
  1213. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1214. if not result:
  1215. if debug:
  1216. print("dict returned false")
  1217. print(result)
  1218. return False
  1219. # Verify each key, value pair is the same
  1220. else:
  1221. if key not in user_def or value != user_def[key]:
  1222. if debug:
  1223. print("value not equal; user_def does not have key")
  1224. print(key)
  1225. print(value)
  1226. if key in user_def:
  1227. print(user_def[key])
  1228. return False
  1229. if debug:
  1230. print('returning true')
  1231. return True
  1232. class OpenShiftCLIConfig(object):
  1233. '''Generic Config'''
  1234. def __init__(self, rname, namespace, kubeconfig, options):
  1235. self.kubeconfig = kubeconfig
  1236. self.name = rname
  1237. self.namespace = namespace
  1238. self._options = options
  1239. @property
  1240. def config_options(self):
  1241. ''' return config options '''
  1242. return self._options
  1243. def to_option_list(self, ascommalist=''):
  1244. '''return all options as a string
  1245. if ascommalist is set to the name of a key, and
  1246. the value of that key is a dict, format the dict
  1247. as a list of comma delimited key=value pairs'''
  1248. return self.stringify(ascommalist)
  1249. def stringify(self, ascommalist=''):
  1250. ''' return the options hash as cli params in a string
  1251. if ascommalist is set to the name of a key, and
  1252. the value of that key is a dict, format the dict
  1253. as a list of comma delimited key=value pairs '''
  1254. rval = []
  1255. for key in sorted(self.config_options.keys()):
  1256. data = self.config_options[key]
  1257. if data['include'] \
  1258. and (data['value'] is not None or isinstance(data['value'], int)):
  1259. if key == ascommalist:
  1260. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1261. else:
  1262. val = data['value']
  1263. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1264. return rval
  1265. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1266. # -*- -*- -*- Begin included fragment: lib/deploymentconfig.py -*- -*- -*-
  1267. # pylint: disable=too-many-public-methods
  1268. class DeploymentConfig(Yedit):
  1269. ''' Class to model an openshift DeploymentConfig'''
  1270. default_deployment_config = '''
  1271. apiVersion: v1
  1272. kind: DeploymentConfig
  1273. metadata:
  1274. name: default_dc
  1275. namespace: default
  1276. spec:
  1277. replicas: 0
  1278. selector:
  1279. default_dc: default_dc
  1280. strategy:
  1281. resources: {}
  1282. rollingParams:
  1283. intervalSeconds: 1
  1284. maxSurge: 0
  1285. maxUnavailable: 25%
  1286. timeoutSeconds: 600
  1287. updatePercent: -25
  1288. updatePeriodSeconds: 1
  1289. type: Rolling
  1290. template:
  1291. metadata:
  1292. spec:
  1293. containers:
  1294. - env:
  1295. - name: default
  1296. value: default
  1297. image: default
  1298. imagePullPolicy: IfNotPresent
  1299. name: default_dc
  1300. ports:
  1301. - containerPort: 8000
  1302. hostPort: 8000
  1303. protocol: TCP
  1304. name: default_port
  1305. resources: {}
  1306. terminationMessagePath: /dev/termination-log
  1307. dnsPolicy: ClusterFirst
  1308. hostNetwork: true
  1309. nodeSelector:
  1310. type: compute
  1311. restartPolicy: Always
  1312. securityContext: {}
  1313. serviceAccount: default
  1314. serviceAccountName: default
  1315. terminationGracePeriodSeconds: 30
  1316. triggers:
  1317. - type: ConfigChange
  1318. '''
  1319. replicas_path = "spec.replicas"
  1320. env_path = "spec.template.spec.containers[0].env"
  1321. volumes_path = "spec.template.spec.volumes"
  1322. container_path = "spec.template.spec.containers"
  1323. volume_mounts_path = "spec.template.spec.containers[0].volumeMounts"
  1324. def __init__(self, content=None):
  1325. ''' Constructor for deploymentconfig '''
  1326. if not content:
  1327. content = DeploymentConfig.default_deployment_config
  1328. super(DeploymentConfig, self).__init__(content=content)
  1329. def add_env_value(self, key, value):
  1330. ''' add key, value pair to env array '''
  1331. rval = False
  1332. env = self.get_env_vars()
  1333. if env:
  1334. env.append({'name': key, 'value': value})
  1335. rval = True
  1336. else:
  1337. result = self.put(DeploymentConfig.env_path, {'name': key, 'value': value})
  1338. rval = result[0]
  1339. return rval
  1340. def exists_env_value(self, key, value):
  1341. ''' return whether a key, value pair exists '''
  1342. results = self.get_env_vars()
  1343. if not results:
  1344. return False
  1345. for result in results:
  1346. if result['name'] == key and result['value'] == value:
  1347. return True
  1348. return False
  1349. def exists_env_key(self, key):
  1350. ''' return whether a key, value pair exists '''
  1351. results = self.get_env_vars()
  1352. if not results:
  1353. return False
  1354. for result in results:
  1355. if result['name'] == key:
  1356. return True
  1357. return False
  1358. def get_env_var(self, key):
  1359. '''return a environment variables '''
  1360. results = self.get(DeploymentConfig.env_path) or []
  1361. if not results:
  1362. return None
  1363. for env_var in results:
  1364. if env_var['name'] == key:
  1365. return env_var
  1366. return None
  1367. def get_env_vars(self):
  1368. '''return a environment variables '''
  1369. return self.get(DeploymentConfig.env_path) or []
  1370. def delete_env_var(self, keys):
  1371. '''delete a list of keys '''
  1372. if not isinstance(keys, list):
  1373. keys = [keys]
  1374. env_vars_array = self.get_env_vars()
  1375. modified = False
  1376. idx = None
  1377. for key in keys:
  1378. for env_idx, env_var in enumerate(env_vars_array):
  1379. if env_var['name'] == key:
  1380. idx = env_idx
  1381. break
  1382. if idx:
  1383. modified = True
  1384. del env_vars_array[idx]
  1385. if modified:
  1386. return True
  1387. return False
  1388. def update_env_var(self, key, value):
  1389. '''place an env in the env var list'''
  1390. env_vars_array = self.get_env_vars()
  1391. idx = None
  1392. for env_idx, env_var in enumerate(env_vars_array):
  1393. if env_var['name'] == key:
  1394. idx = env_idx
  1395. break
  1396. if idx:
  1397. env_vars_array[idx]['value'] = value
  1398. else:
  1399. self.add_env_value(key, value)
  1400. return True
  1401. def exists_volume_mount(self, volume_mount):
  1402. ''' return whether a volume mount exists '''
  1403. exist_volume_mounts = self.get_volume_mounts()
  1404. if not exist_volume_mounts:
  1405. return False
  1406. volume_mount_found = False
  1407. for exist_volume_mount in exist_volume_mounts:
  1408. if exist_volume_mount['name'] == volume_mount['name']:
  1409. volume_mount_found = True
  1410. break
  1411. return volume_mount_found
  1412. def exists_volume(self, volume):
  1413. ''' return whether a volume exists '''
  1414. exist_volumes = self.get_volumes()
  1415. volume_found = False
  1416. for exist_volume in exist_volumes:
  1417. if exist_volume['name'] == volume['name']:
  1418. volume_found = True
  1419. break
  1420. return volume_found
  1421. def find_volume_by_name(self, volume, mounts=False):
  1422. ''' return the index of a volume '''
  1423. volumes = []
  1424. if mounts:
  1425. volumes = self.get_volume_mounts()
  1426. else:
  1427. volumes = self.get_volumes()
  1428. for exist_volume in volumes:
  1429. if exist_volume['name'] == volume['name']:
  1430. return exist_volume
  1431. return None
  1432. def get_replicas(self):
  1433. ''' return replicas setting '''
  1434. return self.get(DeploymentConfig.replicas_path)
  1435. def get_volume_mounts(self):
  1436. '''return volume mount information '''
  1437. return self.get_volumes(mounts=True)
  1438. def get_volumes(self, mounts=False):
  1439. '''return volume mount information '''
  1440. if mounts:
  1441. return self.get(DeploymentConfig.volume_mounts_path) or []
  1442. return self.get(DeploymentConfig.volumes_path) or []
  1443. def delete_volume_by_name(self, volume):
  1444. '''delete a volume '''
  1445. modified = False
  1446. exist_volume_mounts = self.get_volume_mounts()
  1447. exist_volumes = self.get_volumes()
  1448. del_idx = None
  1449. for idx, exist_volume in enumerate(exist_volumes):
  1450. if 'name' in exist_volume and exist_volume['name'] == volume['name']:
  1451. del_idx = idx
  1452. break
  1453. if del_idx != None:
  1454. del exist_volumes[del_idx]
  1455. modified = True
  1456. del_idx = None
  1457. for idx, exist_volume_mount in enumerate(exist_volume_mounts):
  1458. if 'name' in exist_volume_mount and exist_volume_mount['name'] == volume['name']:
  1459. del_idx = idx
  1460. break
  1461. if del_idx != None:
  1462. del exist_volume_mounts[idx]
  1463. modified = True
  1464. return modified
  1465. def add_volume_mount(self, volume_mount):
  1466. ''' add a volume or volume mount to the proper location '''
  1467. exist_volume_mounts = self.get_volume_mounts()
  1468. if not exist_volume_mounts and volume_mount:
  1469. self.put(DeploymentConfig.volume_mounts_path, [volume_mount])
  1470. else:
  1471. exist_volume_mounts.append(volume_mount)
  1472. def add_volume(self, volume):
  1473. ''' add a volume or volume mount to the proper location '''
  1474. exist_volumes = self.get_volumes()
  1475. if not volume:
  1476. return
  1477. if not exist_volumes:
  1478. self.put(DeploymentConfig.volumes_path, [volume])
  1479. else:
  1480. exist_volumes.append(volume)
  1481. def update_replicas(self, replicas):
  1482. ''' update replicas value '''
  1483. self.put(DeploymentConfig.replicas_path, replicas)
  1484. def update_volume(self, volume):
  1485. '''place an env in the env var list'''
  1486. exist_volumes = self.get_volumes()
  1487. if not volume:
  1488. return False
  1489. # update the volume
  1490. update_idx = None
  1491. for idx, exist_vol in enumerate(exist_volumes):
  1492. if exist_vol['name'] == volume['name']:
  1493. update_idx = idx
  1494. break
  1495. if update_idx != None:
  1496. exist_volumes[update_idx] = volume
  1497. else:
  1498. self.add_volume(volume)
  1499. return True
  1500. def update_volume_mount(self, volume_mount):
  1501. '''place an env in the env var list'''
  1502. modified = False
  1503. exist_volume_mounts = self.get_volume_mounts()
  1504. if not volume_mount:
  1505. return False
  1506. # update the volume mount
  1507. for exist_vol_mount in exist_volume_mounts:
  1508. if exist_vol_mount['name'] == volume_mount['name']:
  1509. if 'mountPath' in exist_vol_mount and \
  1510. str(exist_vol_mount['mountPath']) != str(volume_mount['mountPath']):
  1511. exist_vol_mount['mountPath'] = volume_mount['mountPath']
  1512. modified = True
  1513. break
  1514. if not modified:
  1515. self.add_volume_mount(volume_mount)
  1516. modified = True
  1517. return modified
  1518. def needs_update_volume(self, volume, volume_mount):
  1519. ''' verify a volume update is needed '''
  1520. exist_volume = self.find_volume_by_name(volume)
  1521. exist_volume_mount = self.find_volume_by_name(volume, mounts=True)
  1522. results = []
  1523. results.append(exist_volume['name'] == volume['name'])
  1524. if 'secret' in volume:
  1525. results.append('secret' in exist_volume)
  1526. results.append(exist_volume['secret']['secretName'] == volume['secret']['secretName'])
  1527. results.append(exist_volume_mount['name'] == volume_mount['name'])
  1528. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1529. elif 'emptyDir' in volume:
  1530. results.append(exist_volume_mount['name'] == volume['name'])
  1531. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1532. elif 'persistentVolumeClaim' in volume:
  1533. pvc = 'persistentVolumeClaim'
  1534. results.append(pvc in exist_volume)
  1535. if results[-1]:
  1536. results.append(exist_volume[pvc]['claimName'] == volume[pvc]['claimName'])
  1537. if 'claimSize' in volume[pvc]:
  1538. results.append(exist_volume[pvc]['claimSize'] == volume[pvc]['claimSize'])
  1539. elif 'hostpath' in volume:
  1540. results.append('hostPath' in exist_volume)
  1541. results.append(exist_volume['hostPath']['path'] == volume_mount['mountPath'])
  1542. return not all(results)
  1543. def needs_update_replicas(self, replicas):
  1544. ''' verify whether a replica update is needed '''
  1545. current_reps = self.get(DeploymentConfig.replicas_path)
  1546. return not current_reps == replicas
  1547. # -*- -*- -*- End included fragment: lib/deploymentconfig.py -*- -*- -*-
  1548. # -*- -*- -*- Begin included fragment: lib/secret.py -*- -*- -*-
  1549. # pylint: disable=too-many-instance-attributes
  1550. class SecretConfig(object):
  1551. ''' Handle secret options '''
  1552. # pylint: disable=too-many-arguments
  1553. def __init__(self,
  1554. sname,
  1555. namespace,
  1556. kubeconfig,
  1557. secrets=None,
  1558. stype=None,
  1559. annotations=None):
  1560. ''' constructor for handling secret options '''
  1561. self.kubeconfig = kubeconfig
  1562. self.name = sname
  1563. self.type = stype
  1564. self.namespace = namespace
  1565. self.secrets = secrets
  1566. self.annotations = annotations
  1567. self.data = {}
  1568. self.create_dict()
  1569. def create_dict(self):
  1570. ''' assign the correct properties for a secret dict '''
  1571. self.data['apiVersion'] = 'v1'
  1572. self.data['kind'] = 'Secret'
  1573. self.data['type'] = self.type
  1574. self.data['metadata'] = {}
  1575. self.data['metadata']['name'] = self.name
  1576. self.data['metadata']['namespace'] = self.namespace
  1577. self.data['data'] = {}
  1578. if self.secrets:
  1579. for key, value in self.secrets.items():
  1580. self.data['data'][key] = value
  1581. if self.annotations:
  1582. self.data['metadata']['annotations'] = self.annotations
  1583. # pylint: disable=too-many-instance-attributes
  1584. class Secret(Yedit):
  1585. ''' Class to wrap the oc command line tools '''
  1586. secret_path = "data"
  1587. kind = 'secret'
  1588. def __init__(self, content):
  1589. '''secret constructor'''
  1590. super(Secret, self).__init__(content=content)
  1591. self._secrets = None
  1592. @property
  1593. def secrets(self):
  1594. '''secret property getter'''
  1595. if self._secrets is None:
  1596. self._secrets = self.get_secrets()
  1597. return self._secrets
  1598. @secrets.setter
  1599. def secrets(self):
  1600. '''secret property setter'''
  1601. if self._secrets is None:
  1602. self._secrets = self.get_secrets()
  1603. return self._secrets
  1604. def get_secrets(self):
  1605. ''' returns all of the defined secrets '''
  1606. return self.get(Secret.secret_path) or {}
  1607. def add_secret(self, key, value):
  1608. ''' add a secret '''
  1609. if self.secrets:
  1610. self.secrets[key] = value
  1611. else:
  1612. self.put(Secret.secret_path, {key: value})
  1613. return True
  1614. def delete_secret(self, key):
  1615. ''' delete secret'''
  1616. try:
  1617. del self.secrets[key]
  1618. except KeyError as _:
  1619. return False
  1620. return True
  1621. def find_secret(self, key):
  1622. ''' find secret'''
  1623. rval = None
  1624. try:
  1625. rval = self.secrets[key]
  1626. except KeyError as _:
  1627. return None
  1628. return {'key': key, 'value': rval}
  1629. def update_secret(self, key, value):
  1630. ''' update a secret'''
  1631. if key in self.secrets:
  1632. self.secrets[key] = value
  1633. else:
  1634. self.add_secret(key, value)
  1635. return True
  1636. # -*- -*- -*- End included fragment: lib/secret.py -*- -*- -*-
  1637. # -*- -*- -*- Begin included fragment: lib/service.py -*- -*- -*-
  1638. # pylint: disable=too-many-instance-attributes
  1639. class ServiceConfig(object):
  1640. ''' Handle service options '''
  1641. # pylint: disable=too-many-arguments
  1642. def __init__(self,
  1643. sname,
  1644. namespace,
  1645. ports,
  1646. annotations=None,
  1647. selector=None,
  1648. labels=None,
  1649. cluster_ip=None,
  1650. portal_ip=None,
  1651. session_affinity=None,
  1652. service_type=None,
  1653. external_ips=None):
  1654. ''' constructor for handling service options '''
  1655. self.name = sname
  1656. self.namespace = namespace
  1657. self.ports = ports
  1658. self.annotations = annotations
  1659. self.selector = selector
  1660. self.labels = labels
  1661. self.cluster_ip = cluster_ip
  1662. self.portal_ip = portal_ip
  1663. self.session_affinity = session_affinity
  1664. self.service_type = service_type
  1665. self.external_ips = external_ips
  1666. self.data = {}
  1667. self.create_dict()
  1668. def create_dict(self):
  1669. ''' instantiates a service dict '''
  1670. self.data['apiVersion'] = 'v1'
  1671. self.data['kind'] = 'Service'
  1672. self.data['metadata'] = {}
  1673. self.data['metadata']['name'] = self.name
  1674. self.data['metadata']['namespace'] = self.namespace
  1675. if self.labels:
  1676. self.data['metadata']['labels'] = {}
  1677. for lab, lab_value in self.labels.items():
  1678. self.data['metadata']['labels'][lab] = lab_value
  1679. if self.annotations:
  1680. self.data['metadata']['annotations'] = self.annotations
  1681. self.data['spec'] = {}
  1682. if self.ports:
  1683. self.data['spec']['ports'] = self.ports
  1684. else:
  1685. self.data['spec']['ports'] = []
  1686. if self.selector:
  1687. self.data['spec']['selector'] = self.selector
  1688. self.data['spec']['sessionAffinity'] = self.session_affinity or 'None'
  1689. if self.cluster_ip:
  1690. self.data['spec']['clusterIP'] = self.cluster_ip
  1691. if self.portal_ip:
  1692. self.data['spec']['portalIP'] = self.portal_ip
  1693. if self.service_type:
  1694. self.data['spec']['type'] = self.service_type
  1695. if self.external_ips:
  1696. self.data['spec']['externalIPs'] = self.external_ips
  1697. # pylint: disable=too-many-instance-attributes,too-many-public-methods
  1698. class Service(Yedit):
  1699. ''' Class to model the oc service object '''
  1700. port_path = "spec.ports"
  1701. portal_ip = "spec.portalIP"
  1702. cluster_ip = "spec.clusterIP"
  1703. selector_path = 'spec.selector'
  1704. kind = 'Service'
  1705. external_ips = "spec.externalIPs"
  1706. def __init__(self, content):
  1707. '''Service constructor'''
  1708. super(Service, self).__init__(content=content)
  1709. def get_ports(self):
  1710. ''' get a list of ports '''
  1711. return self.get(Service.port_path) or []
  1712. def get_selector(self):
  1713. ''' get the service selector'''
  1714. return self.get(Service.selector_path) or {}
  1715. def add_ports(self, inc_ports):
  1716. ''' add a port object to the ports list '''
  1717. if not isinstance(inc_ports, list):
  1718. inc_ports = [inc_ports]
  1719. ports = self.get_ports()
  1720. if not ports:
  1721. self.put(Service.port_path, inc_ports)
  1722. else:
  1723. ports.extend(inc_ports)
  1724. return True
  1725. def find_ports(self, inc_port):
  1726. ''' find a specific port '''
  1727. for port in self.get_ports():
  1728. if port['port'] == inc_port['port']:
  1729. return port
  1730. return None
  1731. def delete_ports(self, inc_ports):
  1732. ''' remove a port from a service '''
  1733. if not isinstance(inc_ports, list):
  1734. inc_ports = [inc_ports]
  1735. ports = self.get(Service.port_path) or []
  1736. if not ports:
  1737. return True
  1738. removed = False
  1739. for inc_port in inc_ports:
  1740. port = self.find_ports(inc_port)
  1741. if port:
  1742. ports.remove(port)
  1743. removed = True
  1744. return removed
  1745. def add_cluster_ip(self, sip):
  1746. '''add cluster ip'''
  1747. self.put(Service.cluster_ip, sip)
  1748. def add_portal_ip(self, pip):
  1749. '''add cluster ip'''
  1750. self.put(Service.portal_ip, pip)
  1751. def get_external_ips(self):
  1752. ''' get a list of external_ips '''
  1753. return self.get(Service.external_ips) or []
  1754. def add_external_ips(self, inc_external_ips):
  1755. ''' add an external_ip to the external_ips list '''
  1756. if not isinstance(inc_external_ips, list):
  1757. inc_external_ips = [inc_external_ips]
  1758. external_ips = self.get_external_ips()
  1759. if not external_ips:
  1760. self.put(Service.external_ips, inc_external_ips)
  1761. else:
  1762. external_ips.extend(inc_external_ips)
  1763. return True
  1764. def find_external_ips(self, inc_external_ip):
  1765. ''' find a specific external IP '''
  1766. val = None
  1767. try:
  1768. idx = self.get_external_ips().index(inc_external_ip)
  1769. val = self.get_external_ips()[idx]
  1770. except ValueError:
  1771. pass
  1772. return val
  1773. def delete_external_ips(self, inc_external_ips):
  1774. ''' remove an external IP from a service '''
  1775. if not isinstance(inc_external_ips, list):
  1776. inc_external_ips = [inc_external_ips]
  1777. external_ips = self.get(Service.external_ips) or []
  1778. if not external_ips:
  1779. return True
  1780. removed = False
  1781. for inc_external_ip in inc_external_ips:
  1782. external_ip = self.find_external_ips(inc_external_ip)
  1783. if external_ip:
  1784. external_ips.remove(external_ip)
  1785. removed = True
  1786. return removed
  1787. # -*- -*- -*- End included fragment: lib/service.py -*- -*- -*-
  1788. # -*- -*- -*- Begin included fragment: lib/volume.py -*- -*- -*-
  1789. class Volume(object):
  1790. ''' Class to represent an openshift volume object'''
  1791. volume_mounts_path = {"pod": "spec.containers[0].volumeMounts",
  1792. "dc": "spec.template.spec.containers[0].volumeMounts",
  1793. "rc": "spec.template.spec.containers[0].volumeMounts",
  1794. }
  1795. volumes_path = {"pod": "spec.volumes",
  1796. "dc": "spec.template.spec.volumes",
  1797. "rc": "spec.template.spec.volumes",
  1798. }
  1799. @staticmethod
  1800. def create_volume_structure(volume_info):
  1801. ''' return a properly structured volume '''
  1802. volume_mount = None
  1803. volume = {'name': volume_info['name']}
  1804. volume_type = volume_info['type'].lower()
  1805. if volume_type == 'secret':
  1806. volume['secret'] = {}
  1807. volume[volume_info['type']] = {'secretName': volume_info['secret_name']}
  1808. volume_mount = {'mountPath': volume_info['path'],
  1809. 'name': volume_info['name']}
  1810. elif volume_type == 'emptydir':
  1811. volume['emptyDir'] = {}
  1812. volume_mount = {'mountPath': volume_info['path'],
  1813. 'name': volume_info['name']}
  1814. elif volume_type == 'pvc' or volume_type == 'persistentvolumeclaim':
  1815. volume['persistentVolumeClaim'] = {}
  1816. volume['persistentVolumeClaim']['claimName'] = volume_info['claimName']
  1817. volume['persistentVolumeClaim']['claimSize'] = volume_info['claimSize']
  1818. elif volume_type == 'hostpath':
  1819. volume['hostPath'] = {}
  1820. volume['hostPath']['path'] = volume_info['path']
  1821. elif volume_type == 'configmap':
  1822. volume['configMap'] = {}
  1823. volume['configMap']['name'] = volume_info['configmap_name']
  1824. volume_mount = {'mountPath': volume_info['path'],
  1825. 'name': volume_info['name']}
  1826. return (volume, volume_mount)
  1827. # -*- -*- -*- End included fragment: lib/volume.py -*- -*- -*-
  1828. # -*- -*- -*- Begin included fragment: class/oc_version.py -*- -*- -*-
  1829. # pylint: disable=too-many-instance-attributes
  1830. class OCVersion(OpenShiftCLI):
  1831. ''' Class to wrap the oc command line tools '''
  1832. # pylint allows 5
  1833. # pylint: disable=too-many-arguments
  1834. def __init__(self,
  1835. config,
  1836. debug):
  1837. ''' Constructor for OCVersion '''
  1838. super(OCVersion, self).__init__(None, config)
  1839. self.debug = debug
  1840. def get(self):
  1841. '''get and return version information '''
  1842. results = {}
  1843. version_results = self._version()
  1844. if version_results['returncode'] == 0:
  1845. filtered_vers = Utils.filter_versions(version_results['results'])
  1846. custom_vers = Utils.add_custom_versions(filtered_vers)
  1847. results['returncode'] = version_results['returncode']
  1848. results.update(filtered_vers)
  1849. results.update(custom_vers)
  1850. return results
  1851. raise OpenShiftCLIError('Problem detecting openshift version.')
  1852. @staticmethod
  1853. def run_ansible(params):
  1854. '''run the idempotent ansible code'''
  1855. oc_version = OCVersion(params['kubeconfig'], params['debug'])
  1856. if params['state'] == 'list':
  1857. #pylint: disable=protected-access
  1858. result = oc_version.get()
  1859. return {'state': params['state'],
  1860. 'results': result,
  1861. 'changed': False}
  1862. # -*- -*- -*- End included fragment: class/oc_version.py -*- -*- -*-
  1863. # -*- -*- -*- Begin included fragment: class/oc_adm_registry.py -*- -*- -*-
  1864. class RegistryException(Exception):
  1865. ''' Registry Exception Class '''
  1866. pass
  1867. class RegistryConfig(OpenShiftCLIConfig):
  1868. ''' RegistryConfig is a DTO for the registry. '''
  1869. def __init__(self, rname, namespace, kubeconfig, registry_options):
  1870. super(RegistryConfig, self).__init__(rname, namespace, kubeconfig, registry_options)
  1871. class Registry(OpenShiftCLI):
  1872. ''' Class to wrap the oc command line tools '''
  1873. volume_mount_path = 'spec.template.spec.containers[0].volumeMounts'
  1874. volume_path = 'spec.template.spec.volumes'
  1875. env_path = 'spec.template.spec.containers[0].env'
  1876. def __init__(self,
  1877. registry_config,
  1878. verbose=False):
  1879. ''' Constructor for Registry
  1880. a registry consists of 3 or more parts
  1881. - dc/docker-registry
  1882. - svc/docker-registry
  1883. Parameters:
  1884. :registry_config:
  1885. :verbose:
  1886. '''
  1887. super(Registry, self).__init__(registry_config.namespace, registry_config.kubeconfig, verbose)
  1888. self.version = OCVersion(registry_config.kubeconfig, verbose)
  1889. self.svc_ip = None
  1890. self.portal_ip = None
  1891. self.config = registry_config
  1892. self.verbose = verbose
  1893. self.registry_parts = [{'kind': 'dc', 'name': self.config.name},
  1894. {'kind': 'svc', 'name': self.config.name},
  1895. ]
  1896. self.__prepared_registry = None
  1897. self.volume_mounts = []
  1898. self.volumes = []
  1899. if self.config.config_options['volume_mounts']['value']:
  1900. for volume in self.config.config_options['volume_mounts']['value']:
  1901. volume_info = {'secret_name': volume.get('secret_name', None),
  1902. 'name': volume.get('name', None),
  1903. 'type': volume.get('type', None),
  1904. 'path': volume.get('path', None),
  1905. 'claimName': volume.get('claim_name', None),
  1906. 'claimSize': volume.get('claim_size', None),
  1907. }
  1908. vol, vol_mount = Volume.create_volume_structure(volume_info)
  1909. self.volumes.append(vol)
  1910. self.volume_mounts.append(vol_mount)
  1911. self.dconfig = None
  1912. self.svc = None
  1913. @property
  1914. def deploymentconfig(self):
  1915. ''' deploymentconfig property '''
  1916. return self.dconfig
  1917. @deploymentconfig.setter
  1918. def deploymentconfig(self, config):
  1919. ''' setter for deploymentconfig property '''
  1920. self.dconfig = config
  1921. @property
  1922. def service(self):
  1923. ''' service property '''
  1924. return self.svc
  1925. @service.setter
  1926. def service(self, config):
  1927. ''' setter for service property '''
  1928. self.svc = config
  1929. @property
  1930. def prepared_registry(self):
  1931. ''' prepared_registry property '''
  1932. if not self.__prepared_registry:
  1933. results = self.prepare_registry()
  1934. if not results or ('returncode' in results and results['returncode'] != 0):
  1935. raise RegistryException('Could not perform registry preparation. {}'.format(results))
  1936. self.__prepared_registry = results
  1937. return self.__prepared_registry
  1938. @prepared_registry.setter
  1939. def prepared_registry(self, data):
  1940. ''' setter method for prepared_registry attribute '''
  1941. self.__prepared_registry = data
  1942. def get(self):
  1943. ''' return the self.registry_parts '''
  1944. self.deploymentconfig = None
  1945. self.service = None
  1946. rval = 0
  1947. for part in self.registry_parts:
  1948. result = self._get(part['kind'], name=part['name'])
  1949. if result['returncode'] == 0 and part['kind'] == 'dc':
  1950. self.deploymentconfig = DeploymentConfig(result['results'][0])
  1951. elif result['returncode'] == 0 and part['kind'] == 'svc':
  1952. self.service = Service(result['results'][0])
  1953. if result['returncode'] != 0:
  1954. rval = result['returncode']
  1955. return {'returncode': rval, 'deploymentconfig': self.deploymentconfig, 'service': self.service}
  1956. def exists(self):
  1957. '''does the object exist?'''
  1958. if self.deploymentconfig and self.service:
  1959. return True
  1960. return False
  1961. def delete(self, complete=True):
  1962. '''return all pods '''
  1963. parts = []
  1964. for part in self.registry_parts:
  1965. if not complete and part['kind'] == 'svc':
  1966. continue
  1967. parts.append(self._delete(part['kind'], part['name']))
  1968. # Clean up returned results
  1969. rval = 0
  1970. for part in parts:
  1971. # pylint: disable=invalid-sequence-index
  1972. if 'returncode' in part and part['returncode'] != 0:
  1973. rval = part['returncode']
  1974. return {'returncode': rval, 'results': parts}
  1975. def prepare_registry(self):
  1976. ''' prepare a registry for instantiation '''
  1977. options = self.config.to_option_list(ascommalist='labels')
  1978. cmd = ['registry']
  1979. cmd.extend(options)
  1980. cmd.extend(['--dry-run=True', '-o', 'json'])
  1981. results = self.openshift_cmd(cmd, oadm=True, output=True, output_type='json')
  1982. # probably need to parse this
  1983. # pylint thinks results is a string
  1984. # pylint: disable=no-member
  1985. if results['returncode'] != 0 and 'items' not in results['results']:
  1986. raise RegistryException('Could not perform registry preparation. {}'.format(results))
  1987. service = None
  1988. deploymentconfig = None
  1989. # pylint: disable=invalid-sequence-index
  1990. for res in results['results']['items']:
  1991. if res['kind'] == 'DeploymentConfig':
  1992. deploymentconfig = DeploymentConfig(res)
  1993. elif res['kind'] == 'Service':
  1994. service = Service(res)
  1995. # Verify we got a service and a deploymentconfig
  1996. if not service or not deploymentconfig:
  1997. return results
  1998. # results will need to get parsed here and modifications added
  1999. deploymentconfig = DeploymentConfig(self.add_modifications(deploymentconfig))
  2000. # modify service ip
  2001. if self.svc_ip:
  2002. service.put('spec.clusterIP', self.svc_ip)
  2003. if self.portal_ip:
  2004. service.put('spec.portalIP', self.portal_ip)
  2005. # the dry-run doesn't apply the selector correctly
  2006. if self.service:
  2007. service.put('spec.selector', self.service.get_selector())
  2008. # need to create the service and the deploymentconfig
  2009. service_file = Utils.create_tmp_file_from_contents('service', service.yaml_dict)
  2010. deployment_file = Utils.create_tmp_file_from_contents('deploymentconfig', deploymentconfig.yaml_dict)
  2011. return {"service": service,
  2012. "service_file": service_file,
  2013. "service_update": False,
  2014. "deployment": deploymentconfig,
  2015. "deployment_file": deployment_file,
  2016. "deployment_update": False}
  2017. def create(self):
  2018. '''Create a registry'''
  2019. results = []
  2020. self.needs_update()
  2021. # if the object is none, then we need to create it
  2022. # if the object needs an update, then we should call replace
  2023. # Handle the deploymentconfig
  2024. if self.deploymentconfig is None:
  2025. results.append(self._create(self.prepared_registry['deployment_file']))
  2026. elif self.prepared_registry['deployment_update']:
  2027. results.append(self._replace(self.prepared_registry['deployment_file']))
  2028. # Handle the service
  2029. if self.service is None:
  2030. results.append(self._create(self.prepared_registry['service_file']))
  2031. elif self.prepared_registry['service_update']:
  2032. results.append(self._replace(self.prepared_registry['service_file']))
  2033. # Clean up returned results
  2034. rval = 0
  2035. for result in results:
  2036. # pylint: disable=invalid-sequence-index
  2037. if 'returncode' in result and result['returncode'] != 0:
  2038. rval = result['returncode']
  2039. return {'returncode': rval, 'results': results}
  2040. def update(self):
  2041. '''run update for the registry. This performs a replace if required'''
  2042. # Store the current service IP
  2043. if self.service:
  2044. svcip = self.service.get('spec.clusterIP')
  2045. if svcip:
  2046. self.svc_ip = svcip
  2047. portip = self.service.get('spec.portalIP')
  2048. if portip:
  2049. self.portal_ip = portip
  2050. results = []
  2051. if self.prepared_registry['deployment_update']:
  2052. results.append(self._replace(self.prepared_registry['deployment_file']))
  2053. if self.prepared_registry['service_update']:
  2054. results.append(self._replace(self.prepared_registry['service_file']))
  2055. # Clean up returned results
  2056. rval = 0
  2057. for result in results:
  2058. if result['returncode'] != 0:
  2059. rval = result['returncode']
  2060. return {'returncode': rval, 'results': results}
  2061. def add_modifications(self, deploymentconfig):
  2062. ''' update a deployment config with changes '''
  2063. # The environment variable for REGISTRY_HTTP_SECRET is autogenerated
  2064. # We should set the generated deploymentconfig to the in memory version
  2065. # the following modifications will overwrite if needed
  2066. if self.deploymentconfig:
  2067. result = self.deploymentconfig.get_env_var('REGISTRY_HTTP_SECRET')
  2068. if result:
  2069. deploymentconfig.update_env_var('REGISTRY_HTTP_SECRET', result['value'])
  2070. # Currently we know that our deployment of a registry requires a few extra modifications
  2071. # Modification 1
  2072. # we need specific environment variables to be set
  2073. for key, value in self.config.config_options['env_vars'].get('value', {}).items():
  2074. if not deploymentconfig.exists_env_key(key):
  2075. deploymentconfig.add_env_value(key, value)
  2076. else:
  2077. deploymentconfig.update_env_var(key, value)
  2078. # Modification 2
  2079. # we need specific volume variables to be set
  2080. for volume in self.volumes:
  2081. deploymentconfig.update_volume(volume)
  2082. for vol_mount in self.volume_mounts:
  2083. deploymentconfig.update_volume_mount(vol_mount)
  2084. # Modification 3
  2085. # Edits
  2086. edit_results = []
  2087. for edit in self.config.config_options['edits'].get('value', []):
  2088. if edit['action'] == 'put':
  2089. edit_results.append(deploymentconfig.put(edit['key'],
  2090. edit['value']))
  2091. if edit['action'] == 'update':
  2092. edit_results.append(deploymentconfig.update(edit['key'],
  2093. edit['value'],
  2094. edit.get('index', None),
  2095. edit.get('curr_value', None)))
  2096. if edit['action'] == 'append':
  2097. edit_results.append(deploymentconfig.append(edit['key'],
  2098. edit['value']))
  2099. if edit_results and not any([res[0] for res in edit_results]):
  2100. return None
  2101. return deploymentconfig.yaml_dict
  2102. def needs_update(self):
  2103. ''' check to see if we need to update '''
  2104. exclude_list = ['clusterIP', 'portalIP', 'type', 'protocol']
  2105. if self.service is None or \
  2106. not Utils.check_def_equal(self.prepared_registry['service'].yaml_dict,
  2107. self.service.yaml_dict,
  2108. exclude_list,
  2109. debug=self.verbose):
  2110. self.prepared_registry['service_update'] = True
  2111. exclude_list = ['dnsPolicy',
  2112. 'terminationGracePeriodSeconds',
  2113. 'restartPolicy', 'timeoutSeconds',
  2114. 'livenessProbe', 'readinessProbe',
  2115. 'terminationMessagePath',
  2116. 'securityContext',
  2117. 'imagePullPolicy',
  2118. 'protocol', # ports.portocol: TCP
  2119. 'type', # strategy: {'type': 'rolling'}
  2120. 'defaultMode', # added on secrets
  2121. 'activeDeadlineSeconds', # added in 1.5 for timeouts
  2122. ]
  2123. if self.deploymentconfig is None or \
  2124. not Utils.check_def_equal(self.prepared_registry['deployment'].yaml_dict,
  2125. self.deploymentconfig.yaml_dict,
  2126. exclude_list,
  2127. debug=self.verbose):
  2128. self.prepared_registry['deployment_update'] = True
  2129. return self.prepared_registry['deployment_update'] or self.prepared_registry['service_update'] or False
  2130. # In the future, we would like to break out each ansible state into a function.
  2131. # pylint: disable=too-many-branches,too-many-return-statements
  2132. @staticmethod
  2133. def run_ansible(params, check_mode):
  2134. '''run idempotent ansible code'''
  2135. registry_options = {'images': {'value': params['images'], 'include': True},
  2136. 'latest_images': {'value': params['latest_images'], 'include': True},
  2137. 'labels': {'value': params['labels'], 'include': True},
  2138. 'ports': {'value': ','.join(params['ports']), 'include': True},
  2139. 'replicas': {'value': params['replicas'], 'include': True},
  2140. 'selector': {'value': params['selector'], 'include': True},
  2141. 'service_account': {'value': params['service_account'], 'include': True},
  2142. 'mount_host': {'value': params['mount_host'], 'include': True},
  2143. 'env_vars': {'value': params['env_vars'], 'include': False},
  2144. 'volume_mounts': {'value': params['volume_mounts'], 'include': False},
  2145. 'edits': {'value': params['edits'], 'include': False},
  2146. 'tls_key': {'value': params['tls_key'], 'include': True},
  2147. 'tls_certificate': {'value': params['tls_certificate'], 'include': True},
  2148. }
  2149. # Do not always pass the daemonset and enforce-quota parameters because they are not understood
  2150. # by old versions of oc.
  2151. # Default value is false. So, it's safe to not pass an explicit false value to oc versions which
  2152. # understand these parameters.
  2153. if params['daemonset']:
  2154. registry_options['daemonset'] = {'value': params['daemonset'], 'include': True}
  2155. if params['enforce_quota']:
  2156. registry_options['enforce_quota'] = {'value': params['enforce_quota'], 'include': True}
  2157. rconfig = RegistryConfig(params['name'],
  2158. params['namespace'],
  2159. params['kubeconfig'],
  2160. registry_options)
  2161. ocregistry = Registry(rconfig, params['debug'])
  2162. api_rval = ocregistry.get()
  2163. state = params['state']
  2164. ########
  2165. # get
  2166. ########
  2167. if state == 'list':
  2168. if api_rval['returncode'] != 0:
  2169. return {'failed': True, 'msg': api_rval}
  2170. return {'changed': False, 'results': api_rval, 'state': state}
  2171. ########
  2172. # Delete
  2173. ########
  2174. if state == 'absent':
  2175. if not ocregistry.exists():
  2176. return {'changed': False, 'state': state}
  2177. if check_mode:
  2178. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a delete.'}
  2179. # Unsure as to why this is angry with the return type.
  2180. # pylint: disable=redefined-variable-type
  2181. api_rval = ocregistry.delete()
  2182. if api_rval['returncode'] != 0:
  2183. return {'failed': True, 'msg': api_rval}
  2184. return {'changed': True, 'results': api_rval, 'state': state}
  2185. if state == 'present':
  2186. ########
  2187. # Create
  2188. ########
  2189. if not ocregistry.exists():
  2190. if check_mode:
  2191. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a create.'}
  2192. api_rval = ocregistry.create()
  2193. if api_rval['returncode'] != 0:
  2194. return {'failed': True, 'msg': api_rval}
  2195. return {'changed': True, 'results': api_rval, 'state': state}
  2196. ########
  2197. # Update
  2198. ########
  2199. if not params['force'] and not ocregistry.needs_update():
  2200. return {'changed': False, 'state': state}
  2201. if check_mode:
  2202. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed an update.'}
  2203. api_rval = ocregistry.update()
  2204. if api_rval['returncode'] != 0:
  2205. return {'failed': True, 'msg': api_rval}
  2206. return {'changed': True, 'results': api_rval, 'state': state}
  2207. return {'failed': True, 'msg': 'Unknown state passed. %s' % state}
  2208. # -*- -*- -*- End included fragment: class/oc_adm_registry.py -*- -*- -*-
  2209. # -*- -*- -*- Begin included fragment: ansible/oc_adm_registry.py -*- -*- -*-
  2210. def main():
  2211. '''
  2212. ansible oc module for registry
  2213. '''
  2214. module = AnsibleModule(
  2215. argument_spec=dict(
  2216. state=dict(default='present', type='str',
  2217. choices=['present', 'absent']),
  2218. debug=dict(default=False, type='bool'),
  2219. namespace=dict(default='default', type='str'),
  2220. name=dict(default=None, required=True, type='str'),
  2221. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  2222. images=dict(default=None, type='str'),
  2223. latest_images=dict(default=False, type='bool'),
  2224. labels=dict(default=None, type='dict'),
  2225. ports=dict(default=['5000'], type='list'),
  2226. replicas=dict(default=1, type='int'),
  2227. selector=dict(default=None, type='str'),
  2228. service_account=dict(default='registry', type='str'),
  2229. mount_host=dict(default=None, type='str'),
  2230. volume_mounts=dict(default=None, type='list'),
  2231. env_vars=dict(default={}, type='dict'),
  2232. edits=dict(default=[], type='list'),
  2233. enforce_quota=dict(default=False, type='bool'),
  2234. force=dict(default=False, type='bool'),
  2235. daemonset=dict(default=False, type='bool'),
  2236. tls_key=dict(default=None, type='str'),
  2237. tls_certificate=dict(default=None, type='str'),
  2238. ),
  2239. supports_check_mode=True,
  2240. )
  2241. results = Registry.run_ansible(module.params, module.check_mode)
  2242. if 'failed' in results:
  2243. module.fail_json(**results)
  2244. module.exit_json(**results)
  2245. if __name__ == '__main__':
  2246. main()
  2247. # -*- -*- -*- End included fragment: ansible/oc_adm_registry.py -*- -*- -*-