oc_adm_registry.py 94 KB

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