oc_adm_router.py 109 KB

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