oc_adm_registry.py 94 KB

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