oc_adm_registry.py 94 KB

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