oc_adm_router.py 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243
  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):
  953. '''return a resource by name '''
  954. cmd = ['get', resource]
  955. if selector is not None:
  956. cmd.append('--selector={}'.format(selector))
  957. elif name is not None:
  958. cmd.append(name)
  959. cmd.extend(['-o', 'json'])
  960. rval = self.openshift_cmd(cmd, output=True)
  961. # Ensure results are retuned in an array
  962. if 'items' in rval:
  963. rval['results'] = rval['items']
  964. elif not isinstance(rval['results'], list):
  965. rval['results'] = [rval['results']]
  966. return rval
  967. def _schedulable(self, node=None, selector=None, schedulable=True):
  968. ''' perform oadm manage-node scheduable '''
  969. cmd = ['manage-node']
  970. if node:
  971. cmd.extend(node)
  972. else:
  973. cmd.append('--selector={}'.format(selector))
  974. cmd.append('--schedulable={}'.format(schedulable))
  975. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  976. def _list_pods(self, node=None, selector=None, pod_selector=None):
  977. ''' perform oadm list pods
  978. node: the node in which to list pods
  979. selector: the label selector filter if provided
  980. pod_selector: the pod selector filter if provided
  981. '''
  982. cmd = ['manage-node']
  983. if node:
  984. cmd.extend(node)
  985. else:
  986. cmd.append('--selector={}'.format(selector))
  987. if pod_selector:
  988. cmd.append('--pod-selector={}'.format(pod_selector))
  989. cmd.extend(['--list-pods', '-o', 'json'])
  990. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  991. # pylint: disable=too-many-arguments
  992. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  993. ''' perform oadm manage-node evacuate '''
  994. cmd = ['manage-node']
  995. if node:
  996. cmd.extend(node)
  997. else:
  998. cmd.append('--selector={}'.format(selector))
  999. if dry_run:
  1000. cmd.append('--dry-run')
  1001. if pod_selector:
  1002. cmd.append('--pod-selector={}'.format(pod_selector))
  1003. if grace_period:
  1004. cmd.append('--grace-period={}'.format(int(grace_period)))
  1005. if force:
  1006. cmd.append('--force')
  1007. cmd.append('--evacuate')
  1008. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  1009. def _version(self):
  1010. ''' return the openshift version'''
  1011. return self.openshift_cmd(['version'], output=True, output_type='raw')
  1012. def _import_image(self, url=None, name=None, tag=None):
  1013. ''' perform image import '''
  1014. cmd = ['import-image']
  1015. image = '{0}'.format(name)
  1016. if tag:
  1017. image += ':{0}'.format(tag)
  1018. cmd.append(image)
  1019. if url:
  1020. cmd.append('--from={0}/{1}'.format(url, image))
  1021. cmd.append('-n{0}'.format(self.namespace))
  1022. cmd.append('--confirm')
  1023. return self.openshift_cmd(cmd)
  1024. def _run(self, cmds, input_data):
  1025. ''' Actually executes the command. This makes mocking easier. '''
  1026. curr_env = os.environ.copy()
  1027. curr_env.update({'KUBECONFIG': self.kubeconfig})
  1028. proc = subprocess.Popen(cmds,
  1029. stdin=subprocess.PIPE,
  1030. stdout=subprocess.PIPE,
  1031. stderr=subprocess.PIPE,
  1032. env=curr_env)
  1033. stdout, stderr = proc.communicate(input_data)
  1034. return proc.returncode, stdout.decode('utf-8'), stderr.decode('utf-8')
  1035. # pylint: disable=too-many-arguments,too-many-branches
  1036. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  1037. '''Base command for oc '''
  1038. cmds = [self.oc_binary]
  1039. if oadm:
  1040. cmds.append('adm')
  1041. cmds.extend(cmd)
  1042. if self.all_namespaces:
  1043. cmds.extend(['--all-namespaces'])
  1044. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  1045. cmds.extend(['-n', self.namespace])
  1046. if self.verbose:
  1047. print(' '.join(cmds))
  1048. try:
  1049. returncode, stdout, stderr = self._run(cmds, input_data)
  1050. except OSError as ex:
  1051. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  1052. rval = {"returncode": returncode,
  1053. "cmd": ' '.join(cmds)}
  1054. if output_type == 'json':
  1055. rval['results'] = {}
  1056. if output and stdout:
  1057. try:
  1058. rval['results'] = json.loads(stdout)
  1059. except ValueError as verr:
  1060. if "No JSON object could be decoded" in verr.args:
  1061. rval['err'] = verr.args
  1062. elif output_type == 'raw':
  1063. rval['results'] = stdout if output else ''
  1064. if self.verbose:
  1065. print("STDOUT: {0}".format(stdout))
  1066. print("STDERR: {0}".format(stderr))
  1067. if 'err' in rval or returncode != 0:
  1068. rval.update({"stderr": stderr,
  1069. "stdout": stdout})
  1070. return rval
  1071. class Utils(object): # pragma: no cover
  1072. ''' utilities for openshiftcli modules '''
  1073. @staticmethod
  1074. def _write(filename, contents):
  1075. ''' Actually write the file contents to disk. This helps with mocking. '''
  1076. with open(filename, 'w') as sfd:
  1077. sfd.write(str(contents))
  1078. @staticmethod
  1079. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  1080. ''' create a file in tmp with name and contents'''
  1081. tmp = Utils.create_tmpfile(prefix=rname)
  1082. if ftype == 'yaml':
  1083. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1084. # pylint: disable=no-member
  1085. if hasattr(yaml, 'RoundTripDumper'):
  1086. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  1087. else:
  1088. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  1089. elif ftype == 'json':
  1090. Utils._write(tmp, json.dumps(data))
  1091. else:
  1092. Utils._write(tmp, data)
  1093. # Register cleanup when module is done
  1094. atexit.register(Utils.cleanup, [tmp])
  1095. return tmp
  1096. @staticmethod
  1097. def create_tmpfile_copy(inc_file):
  1098. '''create a temporary copy of a file'''
  1099. tmpfile = Utils.create_tmpfile('lib_openshift-')
  1100. Utils._write(tmpfile, open(inc_file).read())
  1101. # Cleanup the tmpfile
  1102. atexit.register(Utils.cleanup, [tmpfile])
  1103. return tmpfile
  1104. @staticmethod
  1105. def create_tmpfile(prefix='tmp'):
  1106. ''' Generates and returns a temporary file name '''
  1107. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  1108. return tmp.name
  1109. @staticmethod
  1110. def create_tmp_files_from_contents(content, content_type=None):
  1111. '''Turn an array of dict: filename, content into a files array'''
  1112. if not isinstance(content, list):
  1113. content = [content]
  1114. files = []
  1115. for item in content:
  1116. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  1117. item['data'],
  1118. ftype=content_type)
  1119. files.append({'name': os.path.basename(item['path']),
  1120. 'path': path})
  1121. return files
  1122. @staticmethod
  1123. def cleanup(files):
  1124. '''Clean up on exit '''
  1125. for sfile in files:
  1126. if os.path.exists(sfile):
  1127. if os.path.isdir(sfile):
  1128. shutil.rmtree(sfile)
  1129. elif os.path.isfile(sfile):
  1130. os.remove(sfile)
  1131. @staticmethod
  1132. def exists(results, _name):
  1133. ''' Check to see if the results include the name '''
  1134. if not results:
  1135. return False
  1136. if Utils.find_result(results, _name):
  1137. return True
  1138. return False
  1139. @staticmethod
  1140. def find_result(results, _name):
  1141. ''' Find the specified result by name'''
  1142. rval = None
  1143. for result in results:
  1144. if 'metadata' in result and result['metadata']['name'] == _name:
  1145. rval = result
  1146. break
  1147. return rval
  1148. @staticmethod
  1149. def get_resource_file(sfile, sfile_type='yaml'):
  1150. ''' return the service file '''
  1151. contents = None
  1152. with open(sfile) as sfd:
  1153. contents = sfd.read()
  1154. if sfile_type == 'yaml':
  1155. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  1156. # pylint: disable=no-member
  1157. if hasattr(yaml, 'RoundTripLoader'):
  1158. contents = yaml.load(contents, yaml.RoundTripLoader)
  1159. else:
  1160. contents = yaml.safe_load(contents)
  1161. elif sfile_type == 'json':
  1162. contents = json.loads(contents)
  1163. return contents
  1164. @staticmethod
  1165. def filter_versions(stdout):
  1166. ''' filter the oc version output '''
  1167. version_dict = {}
  1168. version_search = ['oc', 'openshift', 'kubernetes']
  1169. for line in stdout.strip().split('\n'):
  1170. for term in version_search:
  1171. if not line:
  1172. continue
  1173. if line.startswith(term):
  1174. version_dict[term] = line.split()[-1]
  1175. # horrible hack to get openshift version in Openshift 3.2
  1176. # By default "oc version in 3.2 does not return an "openshift" version
  1177. if "openshift" not in version_dict:
  1178. version_dict["openshift"] = version_dict["oc"]
  1179. return version_dict
  1180. @staticmethod
  1181. def add_custom_versions(versions):
  1182. ''' create custom versions strings '''
  1183. versions_dict = {}
  1184. for tech, version in versions.items():
  1185. # clean up "-" from version
  1186. if "-" in version:
  1187. version = version.split("-")[0]
  1188. if version.startswith('v'):
  1189. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  1190. # "v3.3.0.33" is what we have, we want "3.3"
  1191. versions_dict[tech + '_short'] = version[1:4]
  1192. return versions_dict
  1193. @staticmethod
  1194. def openshift_installed():
  1195. ''' check if openshift is installed '''
  1196. import rpm
  1197. transaction_set = rpm.TransactionSet()
  1198. rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
  1199. return rpmquery.count() > 0
  1200. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1201. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1202. @staticmethod
  1203. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1204. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1205. # Currently these values are autogenerated and we do not need to check them
  1206. skip = ['metadata', 'status']
  1207. if skip_keys:
  1208. skip.extend(skip_keys)
  1209. for key, value in result_def.items():
  1210. if key in skip:
  1211. continue
  1212. # Both are lists
  1213. if isinstance(value, list):
  1214. if key not in user_def:
  1215. if debug:
  1216. print('User data does not have key [%s]' % key)
  1217. print('User data: %s' % user_def)
  1218. return False
  1219. if not isinstance(user_def[key], list):
  1220. if debug:
  1221. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1222. return False
  1223. if len(user_def[key]) != len(value):
  1224. if debug:
  1225. print("List lengths are not equal.")
  1226. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1227. print("user_def: %s" % user_def[key])
  1228. print("value: %s" % value)
  1229. return False
  1230. for values in zip(user_def[key], value):
  1231. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1232. if debug:
  1233. print('sending list - list')
  1234. print(type(values[0]))
  1235. print(type(values[1]))
  1236. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1237. if not result:
  1238. print('list compare returned false')
  1239. return False
  1240. elif value != user_def[key]:
  1241. if debug:
  1242. print('value should be identical')
  1243. print(user_def[key])
  1244. print(value)
  1245. return False
  1246. # recurse on a dictionary
  1247. elif isinstance(value, dict):
  1248. if key not in user_def:
  1249. if debug:
  1250. print("user_def does not have key [%s]" % key)
  1251. return False
  1252. if not isinstance(user_def[key], dict):
  1253. if debug:
  1254. print("dict returned false: not instance of dict")
  1255. return False
  1256. # before passing ensure keys match
  1257. api_values = set(value.keys()) - set(skip)
  1258. user_values = set(user_def[key].keys()) - set(skip)
  1259. if api_values != user_values:
  1260. if debug:
  1261. print("keys are not equal in dict")
  1262. print(user_values)
  1263. print(api_values)
  1264. return False
  1265. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1266. if not result:
  1267. if debug:
  1268. print("dict returned false")
  1269. print(result)
  1270. return False
  1271. # Verify each key, value pair is the same
  1272. else:
  1273. if key not in user_def or value != user_def[key]:
  1274. if debug:
  1275. print("value not equal; user_def does not have key")
  1276. print(key)
  1277. print(value)
  1278. if key in user_def:
  1279. print(user_def[key])
  1280. return False
  1281. if debug:
  1282. print('returning true')
  1283. return True
  1284. class OpenShiftCLIConfig(object):
  1285. '''Generic Config'''
  1286. def __init__(self, rname, namespace, kubeconfig, options):
  1287. self.kubeconfig = kubeconfig
  1288. self.name = rname
  1289. self.namespace = namespace
  1290. self._options = options
  1291. @property
  1292. def config_options(self):
  1293. ''' return config options '''
  1294. return self._options
  1295. def to_option_list(self, ascommalist=''):
  1296. '''return all options as a string
  1297. if ascommalist is set to the name of a key, and
  1298. the value of that key is a dict, format the dict
  1299. as a list of comma delimited key=value pairs'''
  1300. return self.stringify(ascommalist)
  1301. def stringify(self, ascommalist=''):
  1302. ''' return the options hash as cli params in a string
  1303. if ascommalist is set to the name of a key, and
  1304. the value of that key is a dict, format the dict
  1305. as a list of comma delimited key=value pairs '''
  1306. rval = []
  1307. for key in sorted(self.config_options.keys()):
  1308. data = self.config_options[key]
  1309. if data['include'] \
  1310. and (data['value'] is not None or isinstance(data['value'], int)):
  1311. if key == ascommalist:
  1312. val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
  1313. else:
  1314. val = data['value']
  1315. rval.append('--{}={}'.format(key.replace('_', '-'), val))
  1316. return rval
  1317. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1318. # -*- -*- -*- Begin included fragment: lib/service.py -*- -*- -*-
  1319. # pylint: disable=too-many-instance-attributes
  1320. class ServiceConfig(object):
  1321. ''' Handle service options '''
  1322. # pylint: disable=too-many-arguments
  1323. def __init__(self,
  1324. sname,
  1325. namespace,
  1326. ports,
  1327. annotations=None,
  1328. selector=None,
  1329. labels=None,
  1330. cluster_ip=None,
  1331. portal_ip=None,
  1332. session_affinity=None,
  1333. service_type=None,
  1334. external_ips=None):
  1335. ''' constructor for handling service options '''
  1336. self.name = sname
  1337. self.namespace = namespace
  1338. self.ports = ports
  1339. self.annotations = annotations
  1340. self.selector = selector
  1341. self.labels = labels
  1342. self.cluster_ip = cluster_ip
  1343. self.portal_ip = portal_ip
  1344. self.session_affinity = session_affinity
  1345. self.service_type = service_type
  1346. self.external_ips = external_ips
  1347. self.data = {}
  1348. self.create_dict()
  1349. def create_dict(self):
  1350. ''' instantiates a service dict '''
  1351. self.data['apiVersion'] = 'v1'
  1352. self.data['kind'] = 'Service'
  1353. self.data['metadata'] = {}
  1354. self.data['metadata']['name'] = self.name
  1355. self.data['metadata']['namespace'] = self.namespace
  1356. if self.labels:
  1357. self.data['metadata']['labels'] = {}
  1358. for lab, lab_value in self.labels.items():
  1359. self.data['metadata']['labels'][lab] = lab_value
  1360. if self.annotations:
  1361. self.data['metadata']['annotations'] = self.annotations
  1362. self.data['spec'] = {}
  1363. if self.ports:
  1364. self.data['spec']['ports'] = self.ports
  1365. else:
  1366. self.data['spec']['ports'] = []
  1367. if self.selector:
  1368. self.data['spec']['selector'] = self.selector
  1369. self.data['spec']['sessionAffinity'] = self.session_affinity or 'None'
  1370. if self.cluster_ip:
  1371. self.data['spec']['clusterIP'] = self.cluster_ip
  1372. if self.portal_ip:
  1373. self.data['spec']['portalIP'] = self.portal_ip
  1374. if self.service_type:
  1375. self.data['spec']['type'] = self.service_type
  1376. if self.external_ips:
  1377. self.data['spec']['externalIPs'] = self.external_ips
  1378. # pylint: disable=too-many-instance-attributes,too-many-public-methods
  1379. class Service(Yedit):
  1380. ''' Class to model the oc service object '''
  1381. port_path = "spec.ports"
  1382. portal_ip = "spec.portalIP"
  1383. cluster_ip = "spec.clusterIP"
  1384. selector_path = 'spec.selector'
  1385. kind = 'Service'
  1386. external_ips = "spec.externalIPs"
  1387. def __init__(self, content):
  1388. '''Service constructor'''
  1389. super(Service, self).__init__(content=content)
  1390. def get_ports(self):
  1391. ''' get a list of ports '''
  1392. return self.get(Service.port_path) or []
  1393. def get_selector(self):
  1394. ''' get the service selector'''
  1395. return self.get(Service.selector_path) or {}
  1396. def add_ports(self, inc_ports):
  1397. ''' add a port object to the ports list '''
  1398. if not isinstance(inc_ports, list):
  1399. inc_ports = [inc_ports]
  1400. ports = self.get_ports()
  1401. if not ports:
  1402. self.put(Service.port_path, inc_ports)
  1403. else:
  1404. ports.extend(inc_ports)
  1405. return True
  1406. def find_ports(self, inc_port):
  1407. ''' find a specific port '''
  1408. for port in self.get_ports():
  1409. if port['port'] == inc_port['port']:
  1410. return port
  1411. return None
  1412. def delete_ports(self, inc_ports):
  1413. ''' remove a port from a service '''
  1414. if not isinstance(inc_ports, list):
  1415. inc_ports = [inc_ports]
  1416. ports = self.get(Service.port_path) or []
  1417. if not ports:
  1418. return True
  1419. removed = False
  1420. for inc_port in inc_ports:
  1421. port = self.find_ports(inc_port)
  1422. if port:
  1423. ports.remove(port)
  1424. removed = True
  1425. return removed
  1426. def add_cluster_ip(self, sip):
  1427. '''add cluster ip'''
  1428. self.put(Service.cluster_ip, sip)
  1429. def add_portal_ip(self, pip):
  1430. '''add cluster ip'''
  1431. self.put(Service.portal_ip, pip)
  1432. def get_external_ips(self):
  1433. ''' get a list of external_ips '''
  1434. return self.get(Service.external_ips) or []
  1435. def add_external_ips(self, inc_external_ips):
  1436. ''' add an external_ip to the external_ips list '''
  1437. if not isinstance(inc_external_ips, list):
  1438. inc_external_ips = [inc_external_ips]
  1439. external_ips = self.get_external_ips()
  1440. if not external_ips:
  1441. self.put(Service.external_ips, inc_external_ips)
  1442. else:
  1443. external_ips.extend(inc_external_ips)
  1444. return True
  1445. def find_external_ips(self, inc_external_ip):
  1446. ''' find a specific external IP '''
  1447. val = None
  1448. try:
  1449. idx = self.get_external_ips().index(inc_external_ip)
  1450. val = self.get_external_ips()[idx]
  1451. except ValueError:
  1452. pass
  1453. return val
  1454. def delete_external_ips(self, inc_external_ips):
  1455. ''' remove an external IP from a service '''
  1456. if not isinstance(inc_external_ips, list):
  1457. inc_external_ips = [inc_external_ips]
  1458. external_ips = self.get(Service.external_ips) or []
  1459. if not external_ips:
  1460. return True
  1461. removed = False
  1462. for inc_external_ip in inc_external_ips:
  1463. external_ip = self.find_external_ips(inc_external_ip)
  1464. if external_ip:
  1465. external_ips.remove(external_ip)
  1466. removed = True
  1467. return removed
  1468. # -*- -*- -*- End included fragment: lib/service.py -*- -*- -*-
  1469. # -*- -*- -*- Begin included fragment: lib/deploymentconfig.py -*- -*- -*-
  1470. # pylint: disable=too-many-public-methods
  1471. class DeploymentConfig(Yedit):
  1472. ''' Class to model an openshift DeploymentConfig'''
  1473. default_deployment_config = '''
  1474. apiVersion: v1
  1475. kind: DeploymentConfig
  1476. metadata:
  1477. name: default_dc
  1478. namespace: default
  1479. spec:
  1480. replicas: 0
  1481. selector:
  1482. default_dc: default_dc
  1483. strategy:
  1484. resources: {}
  1485. rollingParams:
  1486. intervalSeconds: 1
  1487. maxSurge: 0
  1488. maxUnavailable: 25%
  1489. timeoutSeconds: 600
  1490. updatePercent: -25
  1491. updatePeriodSeconds: 1
  1492. type: Rolling
  1493. template:
  1494. metadata:
  1495. spec:
  1496. containers:
  1497. - env:
  1498. - name: default
  1499. value: default
  1500. image: default
  1501. imagePullPolicy: IfNotPresent
  1502. name: default_dc
  1503. ports:
  1504. - containerPort: 8000
  1505. hostPort: 8000
  1506. protocol: TCP
  1507. name: default_port
  1508. resources: {}
  1509. terminationMessagePath: /dev/termination-log
  1510. dnsPolicy: ClusterFirst
  1511. hostNetwork: true
  1512. nodeSelector:
  1513. type: compute
  1514. restartPolicy: Always
  1515. securityContext: {}
  1516. serviceAccount: default
  1517. serviceAccountName: default
  1518. terminationGracePeriodSeconds: 30
  1519. triggers:
  1520. - type: ConfigChange
  1521. '''
  1522. replicas_path = "spec.replicas"
  1523. env_path = "spec.template.spec.containers[0].env"
  1524. volumes_path = "spec.template.spec.volumes"
  1525. container_path = "spec.template.spec.containers"
  1526. volume_mounts_path = "spec.template.spec.containers[0].volumeMounts"
  1527. def __init__(self, content=None):
  1528. ''' Constructor for deploymentconfig '''
  1529. if not content:
  1530. content = DeploymentConfig.default_deployment_config
  1531. super(DeploymentConfig, self).__init__(content=content)
  1532. def add_env_value(self, key, value):
  1533. ''' add key, value pair to env array '''
  1534. rval = False
  1535. env = self.get_env_vars()
  1536. if env:
  1537. env.append({'name': key, 'value': value})
  1538. rval = True
  1539. else:
  1540. result = self.put(DeploymentConfig.env_path, {'name': key, 'value': value})
  1541. rval = result[0]
  1542. return rval
  1543. def exists_env_value(self, key, value):
  1544. ''' return whether a key, value pair exists '''
  1545. results = self.get_env_vars()
  1546. if not results:
  1547. return False
  1548. for result in results:
  1549. if result['name'] == key and result['value'] == value:
  1550. return True
  1551. return False
  1552. def exists_env_key(self, key):
  1553. ''' return whether a key, value pair exists '''
  1554. results = self.get_env_vars()
  1555. if not results:
  1556. return False
  1557. for result in results:
  1558. if result['name'] == key:
  1559. return True
  1560. return False
  1561. def get_env_var(self, key):
  1562. '''return a environment variables '''
  1563. results = self.get(DeploymentConfig.env_path) or []
  1564. if not results:
  1565. return None
  1566. for env_var in results:
  1567. if env_var['name'] == key:
  1568. return env_var
  1569. return None
  1570. def get_env_vars(self):
  1571. '''return a environment variables '''
  1572. return self.get(DeploymentConfig.env_path) or []
  1573. def delete_env_var(self, keys):
  1574. '''delete a list of keys '''
  1575. if not isinstance(keys, list):
  1576. keys = [keys]
  1577. env_vars_array = self.get_env_vars()
  1578. modified = False
  1579. idx = None
  1580. for key in keys:
  1581. for env_idx, env_var in enumerate(env_vars_array):
  1582. if env_var['name'] == key:
  1583. idx = env_idx
  1584. break
  1585. if idx:
  1586. modified = True
  1587. del env_vars_array[idx]
  1588. if modified:
  1589. return True
  1590. return False
  1591. def update_env_var(self, key, value):
  1592. '''place an env in the env var list'''
  1593. env_vars_array = self.get_env_vars()
  1594. idx = None
  1595. for env_idx, env_var in enumerate(env_vars_array):
  1596. if env_var['name'] == key:
  1597. idx = env_idx
  1598. break
  1599. if idx:
  1600. env_vars_array[idx]['value'] = value
  1601. else:
  1602. self.add_env_value(key, value)
  1603. return True
  1604. def exists_volume_mount(self, volume_mount):
  1605. ''' return whether a volume mount exists '''
  1606. exist_volume_mounts = self.get_volume_mounts()
  1607. if not exist_volume_mounts:
  1608. return False
  1609. volume_mount_found = False
  1610. for exist_volume_mount in exist_volume_mounts:
  1611. if exist_volume_mount['name'] == volume_mount['name']:
  1612. volume_mount_found = True
  1613. break
  1614. return volume_mount_found
  1615. def exists_volume(self, volume):
  1616. ''' return whether a volume exists '''
  1617. exist_volumes = self.get_volumes()
  1618. volume_found = False
  1619. for exist_volume in exist_volumes:
  1620. if exist_volume['name'] == volume['name']:
  1621. volume_found = True
  1622. break
  1623. return volume_found
  1624. def find_volume_by_name(self, volume, mounts=False):
  1625. ''' return the index of a volume '''
  1626. volumes = []
  1627. if mounts:
  1628. volumes = self.get_volume_mounts()
  1629. else:
  1630. volumes = self.get_volumes()
  1631. for exist_volume in volumes:
  1632. if exist_volume['name'] == volume['name']:
  1633. return exist_volume
  1634. return None
  1635. def get_replicas(self):
  1636. ''' return replicas setting '''
  1637. return self.get(DeploymentConfig.replicas_path)
  1638. def get_volume_mounts(self):
  1639. '''return volume mount information '''
  1640. return self.get_volumes(mounts=True)
  1641. def get_volumes(self, mounts=False):
  1642. '''return volume mount information '''
  1643. if mounts:
  1644. return self.get(DeploymentConfig.volume_mounts_path) or []
  1645. return self.get(DeploymentConfig.volumes_path) or []
  1646. def delete_volume_by_name(self, volume):
  1647. '''delete a volume '''
  1648. modified = False
  1649. exist_volume_mounts = self.get_volume_mounts()
  1650. exist_volumes = self.get_volumes()
  1651. del_idx = None
  1652. for idx, exist_volume in enumerate(exist_volumes):
  1653. if 'name' in exist_volume and exist_volume['name'] == volume['name']:
  1654. del_idx = idx
  1655. break
  1656. if del_idx != None:
  1657. del exist_volumes[del_idx]
  1658. modified = True
  1659. del_idx = None
  1660. for idx, exist_volume_mount in enumerate(exist_volume_mounts):
  1661. if 'name' in exist_volume_mount and exist_volume_mount['name'] == volume['name']:
  1662. del_idx = idx
  1663. break
  1664. if del_idx != None:
  1665. del exist_volume_mounts[idx]
  1666. modified = True
  1667. return modified
  1668. def add_volume_mount(self, volume_mount):
  1669. ''' add a volume or volume mount to the proper location '''
  1670. exist_volume_mounts = self.get_volume_mounts()
  1671. if not exist_volume_mounts and volume_mount:
  1672. self.put(DeploymentConfig.volume_mounts_path, [volume_mount])
  1673. else:
  1674. exist_volume_mounts.append(volume_mount)
  1675. def add_volume(self, volume):
  1676. ''' add a volume or volume mount to the proper location '''
  1677. exist_volumes = self.get_volumes()
  1678. if not volume:
  1679. return
  1680. if not exist_volumes:
  1681. self.put(DeploymentConfig.volumes_path, [volume])
  1682. else:
  1683. exist_volumes.append(volume)
  1684. def update_replicas(self, replicas):
  1685. ''' update replicas value '''
  1686. self.put(DeploymentConfig.replicas_path, replicas)
  1687. def update_volume(self, volume):
  1688. '''place an env in the env var list'''
  1689. exist_volumes = self.get_volumes()
  1690. if not volume:
  1691. return False
  1692. # update the volume
  1693. update_idx = None
  1694. for idx, exist_vol in enumerate(exist_volumes):
  1695. if exist_vol['name'] == volume['name']:
  1696. update_idx = idx
  1697. break
  1698. if update_idx != None:
  1699. exist_volumes[update_idx] = volume
  1700. else:
  1701. self.add_volume(volume)
  1702. return True
  1703. def update_volume_mount(self, volume_mount):
  1704. '''place an env in the env var list'''
  1705. modified = False
  1706. exist_volume_mounts = self.get_volume_mounts()
  1707. if not volume_mount:
  1708. return False
  1709. # update the volume mount
  1710. for exist_vol_mount in exist_volume_mounts:
  1711. if exist_vol_mount['name'] == volume_mount['name']:
  1712. if 'mountPath' in exist_vol_mount and \
  1713. str(exist_vol_mount['mountPath']) != str(volume_mount['mountPath']):
  1714. exist_vol_mount['mountPath'] = volume_mount['mountPath']
  1715. modified = True
  1716. break
  1717. if not modified:
  1718. self.add_volume_mount(volume_mount)
  1719. modified = True
  1720. return modified
  1721. def needs_update_volume(self, volume, volume_mount):
  1722. ''' verify a volume update is needed '''
  1723. exist_volume = self.find_volume_by_name(volume)
  1724. exist_volume_mount = self.find_volume_by_name(volume, mounts=True)
  1725. results = []
  1726. results.append(exist_volume['name'] == volume['name'])
  1727. if 'secret' in volume:
  1728. results.append('secret' in exist_volume)
  1729. results.append(exist_volume['secret']['secretName'] == volume['secret']['secretName'])
  1730. results.append(exist_volume_mount['name'] == volume_mount['name'])
  1731. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1732. elif 'emptyDir' in volume:
  1733. results.append(exist_volume_mount['name'] == volume['name'])
  1734. results.append(exist_volume_mount['mountPath'] == volume_mount['mountPath'])
  1735. elif 'persistentVolumeClaim' in volume:
  1736. pvc = 'persistentVolumeClaim'
  1737. results.append(pvc in exist_volume)
  1738. if results[-1]:
  1739. results.append(exist_volume[pvc]['claimName'] == volume[pvc]['claimName'])
  1740. if 'claimSize' in volume[pvc]:
  1741. results.append(exist_volume[pvc]['claimSize'] == volume[pvc]['claimSize'])
  1742. elif 'hostpath' in volume:
  1743. results.append('hostPath' in exist_volume)
  1744. results.append(exist_volume['hostPath']['path'] == volume_mount['mountPath'])
  1745. return not all(results)
  1746. def needs_update_replicas(self, replicas):
  1747. ''' verify whether a replica update is needed '''
  1748. current_reps = self.get(DeploymentConfig.replicas_path)
  1749. return not current_reps == replicas
  1750. # -*- -*- -*- End included fragment: lib/deploymentconfig.py -*- -*- -*-
  1751. # -*- -*- -*- Begin included fragment: lib/serviceaccount.py -*- -*- -*-
  1752. class ServiceAccountConfig(object):
  1753. '''Service account config class
  1754. This class stores the options and returns a default service account
  1755. '''
  1756. # pylint: disable=too-many-arguments
  1757. def __init__(self, sname, namespace, kubeconfig, secrets=None, image_pull_secrets=None):
  1758. self.name = sname
  1759. self.kubeconfig = kubeconfig
  1760. self.namespace = namespace
  1761. self.secrets = secrets or []
  1762. self.image_pull_secrets = image_pull_secrets or []
  1763. self.data = {}
  1764. self.create_dict()
  1765. def create_dict(self):
  1766. ''' instantiate a properly structured volume '''
  1767. self.data['apiVersion'] = 'v1'
  1768. self.data['kind'] = 'ServiceAccount'
  1769. self.data['metadata'] = {}
  1770. self.data['metadata']['name'] = self.name
  1771. self.data['metadata']['namespace'] = self.namespace
  1772. self.data['secrets'] = []
  1773. if self.secrets:
  1774. for sec in self.secrets:
  1775. self.data['secrets'].append({"name": sec})
  1776. self.data['imagePullSecrets'] = []
  1777. if self.image_pull_secrets:
  1778. for sec in self.image_pull_secrets:
  1779. self.data['imagePullSecrets'].append({"name": sec})
  1780. class ServiceAccount(Yedit):
  1781. ''' Class to wrap the oc command line tools '''
  1782. image_pull_secrets_path = "imagePullSecrets"
  1783. secrets_path = "secrets"
  1784. def __init__(self, content):
  1785. '''ServiceAccount constructor'''
  1786. super(ServiceAccount, self).__init__(content=content)
  1787. self._secrets = None
  1788. self._image_pull_secrets = None
  1789. @property
  1790. def image_pull_secrets(self):
  1791. ''' property for image_pull_secrets '''
  1792. if self._image_pull_secrets is None:
  1793. self._image_pull_secrets = self.get(ServiceAccount.image_pull_secrets_path) or []
  1794. return self._image_pull_secrets
  1795. @image_pull_secrets.setter
  1796. def image_pull_secrets(self, secrets):
  1797. ''' property for secrets '''
  1798. self._image_pull_secrets = secrets
  1799. @property
  1800. def secrets(self):
  1801. ''' property for secrets '''
  1802. if not self._secrets:
  1803. self._secrets = self.get(ServiceAccount.secrets_path) or []
  1804. return self._secrets
  1805. @secrets.setter
  1806. def secrets(self, secrets):
  1807. ''' property for secrets '''
  1808. self._secrets = secrets
  1809. def delete_secret(self, inc_secret):
  1810. ''' remove a secret '''
  1811. remove_idx = None
  1812. for idx, sec in enumerate(self.secrets):
  1813. if sec['name'] == inc_secret:
  1814. remove_idx = idx
  1815. break
  1816. if remove_idx:
  1817. del self.secrets[remove_idx]
  1818. return True
  1819. return False
  1820. def delete_image_pull_secret(self, inc_secret):
  1821. ''' remove a image_pull_secret '''
  1822. remove_idx = None
  1823. for idx, sec in enumerate(self.image_pull_secrets):
  1824. if sec['name'] == inc_secret:
  1825. remove_idx = idx
  1826. break
  1827. if remove_idx:
  1828. del self.image_pull_secrets[remove_idx]
  1829. return True
  1830. return False
  1831. def find_secret(self, inc_secret):
  1832. '''find secret'''
  1833. for secret in self.secrets:
  1834. if secret['name'] == inc_secret:
  1835. return secret
  1836. return None
  1837. def find_image_pull_secret(self, inc_secret):
  1838. '''find secret'''
  1839. for secret in self.image_pull_secrets:
  1840. if secret['name'] == inc_secret:
  1841. return secret
  1842. return None
  1843. def add_secret(self, inc_secret):
  1844. '''add secret'''
  1845. if self.secrets:
  1846. self.secrets.append({"name": inc_secret}) # pylint: disable=no-member
  1847. else:
  1848. self.put(ServiceAccount.secrets_path, [{"name": inc_secret}])
  1849. def add_image_pull_secret(self, inc_secret):
  1850. '''add image_pull_secret'''
  1851. if self.image_pull_secrets:
  1852. self.image_pull_secrets.append({"name": inc_secret}) # pylint: disable=no-member
  1853. else:
  1854. self.put(ServiceAccount.image_pull_secrets_path, [{"name": inc_secret}])
  1855. # -*- -*- -*- End included fragment: lib/serviceaccount.py -*- -*- -*-
  1856. # -*- -*- -*- Begin included fragment: lib/secret.py -*- -*- -*-
  1857. # pylint: disable=too-many-instance-attributes
  1858. class SecretConfig(object):
  1859. ''' Handle secret options '''
  1860. # pylint: disable=too-many-arguments
  1861. def __init__(self,
  1862. sname,
  1863. namespace,
  1864. kubeconfig,
  1865. secrets=None,
  1866. stype=None,
  1867. annotations=None):
  1868. ''' constructor for handling secret options '''
  1869. self.kubeconfig = kubeconfig
  1870. self.name = sname
  1871. self.type = stype
  1872. self.namespace = namespace
  1873. self.secrets = secrets
  1874. self.annotations = annotations
  1875. self.data = {}
  1876. self.create_dict()
  1877. def create_dict(self):
  1878. ''' assign the correct properties for a secret dict '''
  1879. self.data['apiVersion'] = 'v1'
  1880. self.data['kind'] = 'Secret'
  1881. self.data['type'] = self.type
  1882. self.data['metadata'] = {}
  1883. self.data['metadata']['name'] = self.name
  1884. self.data['metadata']['namespace'] = self.namespace
  1885. self.data['data'] = {}
  1886. if self.secrets:
  1887. for key, value in self.secrets.items():
  1888. self.data['data'][key] = value
  1889. if self.annotations:
  1890. self.data['metadata']['annotations'] = self.annotations
  1891. # pylint: disable=too-many-instance-attributes
  1892. class Secret(Yedit):
  1893. ''' Class to wrap the oc command line tools '''
  1894. secret_path = "data"
  1895. kind = 'secret'
  1896. def __init__(self, content):
  1897. '''secret constructor'''
  1898. super(Secret, self).__init__(content=content)
  1899. self._secrets = None
  1900. @property
  1901. def secrets(self):
  1902. '''secret property getter'''
  1903. if self._secrets is None:
  1904. self._secrets = self.get_secrets()
  1905. return self._secrets
  1906. @secrets.setter
  1907. def secrets(self):
  1908. '''secret property setter'''
  1909. if self._secrets is None:
  1910. self._secrets = self.get_secrets()
  1911. return self._secrets
  1912. def get_secrets(self):
  1913. ''' returns all of the defined secrets '''
  1914. return self.get(Secret.secret_path) or {}
  1915. def add_secret(self, key, value):
  1916. ''' add a secret '''
  1917. if self.secrets:
  1918. self.secrets[key] = value
  1919. else:
  1920. self.put(Secret.secret_path, {key: value})
  1921. return True
  1922. def delete_secret(self, key):
  1923. ''' delete secret'''
  1924. try:
  1925. del self.secrets[key]
  1926. except KeyError as _:
  1927. return False
  1928. return True
  1929. def find_secret(self, key):
  1930. ''' find secret'''
  1931. rval = None
  1932. try:
  1933. rval = self.secrets[key]
  1934. except KeyError as _:
  1935. return None
  1936. return {'key': key, 'value': rval}
  1937. def update_secret(self, key, value):
  1938. ''' update a secret'''
  1939. if key in self.secrets:
  1940. self.secrets[key] = value
  1941. else:
  1942. self.add_secret(key, value)
  1943. return True
  1944. # -*- -*- -*- End included fragment: lib/secret.py -*- -*- -*-
  1945. # -*- -*- -*- Begin included fragment: lib/rolebinding.py -*- -*- -*-
  1946. # pylint: disable=too-many-instance-attributes
  1947. class RoleBindingConfig(object):
  1948. ''' Handle rolebinding config '''
  1949. # pylint: disable=too-many-arguments
  1950. def __init__(self,
  1951. name,
  1952. namespace,
  1953. kubeconfig,
  1954. group_names=None,
  1955. role_ref=None,
  1956. subjects=None,
  1957. usernames=None):
  1958. ''' constructor for handling rolebinding options '''
  1959. self.kubeconfig = kubeconfig
  1960. self.name = name
  1961. self.namespace = namespace
  1962. self.group_names = group_names
  1963. self.role_ref = role_ref
  1964. self.subjects = subjects
  1965. self.usernames = usernames
  1966. self.data = {}
  1967. self.create_dict()
  1968. def create_dict(self):
  1969. ''' create a default rolebinding as a dict '''
  1970. self.data['apiVersion'] = 'v1'
  1971. self.data['kind'] = 'RoleBinding'
  1972. self.data['groupNames'] = self.group_names
  1973. self.data['metadata']['name'] = self.name
  1974. self.data['metadata']['namespace'] = self.namespace
  1975. self.data['roleRef'] = self.role_ref
  1976. self.data['subjects'] = self.subjects
  1977. self.data['userNames'] = self.usernames
  1978. # pylint: disable=too-many-instance-attributes,too-many-public-methods
  1979. class RoleBinding(Yedit):
  1980. ''' Class to model a rolebinding openshift object'''
  1981. group_names_path = "groupNames"
  1982. role_ref_path = "roleRef"
  1983. subjects_path = "subjects"
  1984. user_names_path = "userNames"
  1985. kind = 'RoleBinding'
  1986. def __init__(self, content):
  1987. '''RoleBinding constructor'''
  1988. super(RoleBinding, self).__init__(content=content)
  1989. self._subjects = None
  1990. self._role_ref = None
  1991. self._group_names = None
  1992. self._user_names = None
  1993. @property
  1994. def subjects(self):
  1995. ''' subjects property '''
  1996. if self._subjects is None:
  1997. self._subjects = self.get_subjects()
  1998. return self._subjects
  1999. @subjects.setter
  2000. def subjects(self, data):
  2001. ''' subjects property setter'''
  2002. self._subjects = data
  2003. @property
  2004. def role_ref(self):
  2005. ''' role_ref property '''
  2006. if self._role_ref is None:
  2007. self._role_ref = self.get_role_ref()
  2008. return self._role_ref
  2009. @role_ref.setter
  2010. def role_ref(self, data):
  2011. ''' role_ref property setter'''
  2012. self._role_ref = data
  2013. @property
  2014. def group_names(self):
  2015. ''' group_names property '''
  2016. if self._group_names is None:
  2017. self._group_names = self.get_group_names()
  2018. return self._group_names
  2019. @group_names.setter
  2020. def group_names(self, data):
  2021. ''' group_names property setter'''
  2022. self._group_names = data
  2023. @property
  2024. def user_names(self):
  2025. ''' user_names property '''
  2026. if self._user_names is None:
  2027. self._user_names = self.get_user_names()
  2028. return self._user_names
  2029. @user_names.setter
  2030. def user_names(self, data):
  2031. ''' user_names property setter'''
  2032. self._user_names = data
  2033. def get_group_names(self):
  2034. ''' return groupNames '''
  2035. return self.get(RoleBinding.group_names_path) or []
  2036. def get_user_names(self):
  2037. ''' return usernames '''
  2038. return self.get(RoleBinding.user_names_path) or []
  2039. def get_role_ref(self):
  2040. ''' return role_ref '''
  2041. return self.get(RoleBinding.role_ref_path) or {}
  2042. def get_subjects(self):
  2043. ''' return subjects '''
  2044. return self.get(RoleBinding.subjects_path) or []
  2045. #### ADD #####
  2046. def add_subject(self, inc_subject):
  2047. ''' add a subject '''
  2048. if self.subjects:
  2049. # pylint: disable=no-member
  2050. self.subjects.append(inc_subject)
  2051. else:
  2052. self.put(RoleBinding.subjects_path, [inc_subject])
  2053. return True
  2054. def add_role_ref(self, inc_role_ref):
  2055. ''' add a role_ref '''
  2056. if not self.role_ref:
  2057. self.put(RoleBinding.role_ref_path, {"name": inc_role_ref})
  2058. return True
  2059. return False
  2060. def add_group_names(self, inc_group_names):
  2061. ''' add a group_names '''
  2062. if self.group_names:
  2063. # pylint: disable=no-member
  2064. self.group_names.append(inc_group_names)
  2065. else:
  2066. self.put(RoleBinding.group_names_path, [inc_group_names])
  2067. return True
  2068. def add_user_name(self, inc_user_name):
  2069. ''' add a username '''
  2070. if self.user_names:
  2071. # pylint: disable=no-member
  2072. self.user_names.append(inc_user_name)
  2073. else:
  2074. self.put(RoleBinding.user_names_path, [inc_user_name])
  2075. return True
  2076. #### /ADD #####
  2077. #### Remove #####
  2078. def remove_subject(self, inc_subject):
  2079. ''' remove a subject '''
  2080. try:
  2081. # pylint: disable=no-member
  2082. self.subjects.remove(inc_subject)
  2083. except ValueError as _:
  2084. return False
  2085. return True
  2086. def remove_role_ref(self, inc_role_ref):
  2087. ''' remove a role_ref '''
  2088. if self.role_ref and self.role_ref['name'] == inc_role_ref:
  2089. del self.role_ref['name']
  2090. return True
  2091. return False
  2092. def remove_group_name(self, inc_group_name):
  2093. ''' remove a groupname '''
  2094. try:
  2095. # pylint: disable=no-member
  2096. self.group_names.remove(inc_group_name)
  2097. except ValueError as _:
  2098. return False
  2099. return True
  2100. def remove_user_name(self, inc_user_name):
  2101. ''' remove a username '''
  2102. try:
  2103. # pylint: disable=no-member
  2104. self.user_names.remove(inc_user_name)
  2105. except ValueError as _:
  2106. return False
  2107. return True
  2108. #### /REMOVE #####
  2109. #### UPDATE #####
  2110. def update_subject(self, inc_subject):
  2111. ''' update a subject '''
  2112. try:
  2113. # pylint: disable=no-member
  2114. index = self.subjects.index(inc_subject)
  2115. except ValueError as _:
  2116. return self.add_subject(inc_subject)
  2117. self.subjects[index] = inc_subject
  2118. return True
  2119. def update_group_name(self, inc_group_name):
  2120. ''' update a groupname '''
  2121. try:
  2122. # pylint: disable=no-member
  2123. index = self.group_names.index(inc_group_name)
  2124. except ValueError as _:
  2125. return self.add_group_names(inc_group_name)
  2126. self.group_names[index] = inc_group_name
  2127. return True
  2128. def update_user_name(self, inc_user_name):
  2129. ''' update a username '''
  2130. try:
  2131. # pylint: disable=no-member
  2132. index = self.user_names.index(inc_user_name)
  2133. except ValueError as _:
  2134. return self.add_user_name(inc_user_name)
  2135. self.user_names[index] = inc_user_name
  2136. return True
  2137. def update_role_ref(self, inc_role_ref):
  2138. ''' update a role_ref '''
  2139. self.role_ref['name'] = inc_role_ref
  2140. return True
  2141. #### /UPDATE #####
  2142. #### FIND ####
  2143. def find_subject(self, inc_subject):
  2144. ''' find a subject '''
  2145. index = None
  2146. try:
  2147. # pylint: disable=no-member
  2148. index = self.subjects.index(inc_subject)
  2149. except ValueError as _:
  2150. return index
  2151. return index
  2152. def find_group_name(self, inc_group_name):
  2153. ''' find a group_name '''
  2154. index = None
  2155. try:
  2156. # pylint: disable=no-member
  2157. index = self.group_names.index(inc_group_name)
  2158. except ValueError as _:
  2159. return index
  2160. return index
  2161. def find_user_name(self, inc_user_name):
  2162. ''' find a user_name '''
  2163. index = None
  2164. try:
  2165. # pylint: disable=no-member
  2166. index = self.user_names.index(inc_user_name)
  2167. except ValueError as _:
  2168. return index
  2169. return index
  2170. def find_role_ref(self, inc_role_ref):
  2171. ''' find a user_name '''
  2172. if self.role_ref and self.role_ref['name'] == inc_role_ref['name']:
  2173. return self.role_ref
  2174. return None
  2175. # -*- -*- -*- End included fragment: lib/rolebinding.py -*- -*- -*-
  2176. # -*- -*- -*- Begin included fragment: class/oc_adm_router.py -*- -*- -*-
  2177. class RouterException(Exception):
  2178. ''' Router exception'''
  2179. pass
  2180. class RouterConfig(OpenShiftCLIConfig):
  2181. ''' RouterConfig is a DTO for the router. '''
  2182. def __init__(self, rname, namespace, kubeconfig, router_options):
  2183. super(RouterConfig, self).__init__(rname, namespace, kubeconfig, router_options)
  2184. class Router(OpenShiftCLI):
  2185. ''' Class to wrap the oc command line tools '''
  2186. def __init__(self,
  2187. router_config,
  2188. verbose=False):
  2189. ''' Constructor for OpenshiftOC
  2190. a router consists of 3 or more parts
  2191. - dc/router
  2192. - svc/router
  2193. - sa/router
  2194. - secret/router-certs
  2195. - clusterrolebinding/router-router-role
  2196. '''
  2197. super(Router, self).__init__('default', router_config.kubeconfig, verbose)
  2198. self.config = router_config
  2199. self.verbose = verbose
  2200. self.router_parts = [{'kind': 'dc', 'name': self.config.name},
  2201. {'kind': 'svc', 'name': self.config.name},
  2202. {'kind': 'sa', 'name': self.config.config_options['service_account']['value']},
  2203. {'kind': 'secret', 'name': self.config.name + '-certs'},
  2204. {'kind': 'clusterrolebinding', 'name': 'router-' + self.config.name + '-role'},
  2205. ]
  2206. self.__prepared_router = None
  2207. self.dconfig = None
  2208. self.svc = None
  2209. self._secret = None
  2210. self._serviceaccount = None
  2211. self._rolebinding = None
  2212. @property
  2213. def prepared_router(self):
  2214. ''' property for the prepared router'''
  2215. if self.__prepared_router is None:
  2216. results = self._prepare_router()
  2217. if not results or 'returncode' in results and results['returncode'] != 0:
  2218. if 'stderr' in results:
  2219. raise RouterException('Could not perform router preparation: %s' % results['stderr'])
  2220. raise RouterException('Could not perform router preparation.')
  2221. self.__prepared_router = results
  2222. return self.__prepared_router
  2223. @prepared_router.setter
  2224. def prepared_router(self, obj):
  2225. '''setter for the prepared_router'''
  2226. self.__prepared_router = obj
  2227. @property
  2228. def deploymentconfig(self):
  2229. ''' property deploymentconfig'''
  2230. return self.dconfig
  2231. @deploymentconfig.setter
  2232. def deploymentconfig(self, config):
  2233. ''' setter for property deploymentconfig '''
  2234. self.dconfig = config
  2235. @property
  2236. def service(self):
  2237. ''' property for service '''
  2238. return self.svc
  2239. @service.setter
  2240. def service(self, config):
  2241. ''' setter for property service '''
  2242. self.svc = config
  2243. @property
  2244. def secret(self):
  2245. ''' property secret '''
  2246. return self._secret
  2247. @secret.setter
  2248. def secret(self, config):
  2249. ''' setter for property secret '''
  2250. self._secret = config
  2251. @property
  2252. def serviceaccount(self):
  2253. ''' property for serviceaccount '''
  2254. return self._serviceaccount
  2255. @serviceaccount.setter
  2256. def serviceaccount(self, config):
  2257. ''' setter for property serviceaccount '''
  2258. self._serviceaccount = config
  2259. @property
  2260. def rolebinding(self):
  2261. ''' property rolebinding '''
  2262. return self._rolebinding
  2263. @rolebinding.setter
  2264. def rolebinding(self, config):
  2265. ''' setter for property rolebinding '''
  2266. self._rolebinding = config
  2267. def get_object_by_kind(self, kind):
  2268. '''return the current object kind by name'''
  2269. if re.match("^(dc|deploymentconfig)$", kind, flags=re.IGNORECASE):
  2270. return self.deploymentconfig
  2271. elif re.match("^(svc|service)$", kind, flags=re.IGNORECASE):
  2272. return self.service
  2273. elif re.match("^(sa|serviceaccount)$", kind, flags=re.IGNORECASE):
  2274. return self.serviceaccount
  2275. elif re.match("secret", kind, flags=re.IGNORECASE):
  2276. return self.secret
  2277. elif re.match("clusterrolebinding", kind, flags=re.IGNORECASE):
  2278. return self.rolebinding
  2279. return None
  2280. def get(self):
  2281. ''' return the self.router_parts '''
  2282. self.service = None
  2283. self.deploymentconfig = None
  2284. self.serviceaccount = None
  2285. self.secret = None
  2286. self.rolebinding = None
  2287. for part in self.router_parts:
  2288. result = self._get(part['kind'], name=part['name'])
  2289. if result['returncode'] == 0 and part['kind'] == 'dc':
  2290. self.deploymentconfig = DeploymentConfig(result['results'][0])
  2291. elif result['returncode'] == 0 and part['kind'] == 'svc':
  2292. self.service = Service(content=result['results'][0])
  2293. elif result['returncode'] == 0 and part['kind'] == 'sa':
  2294. self.serviceaccount = ServiceAccount(content=result['results'][0])
  2295. elif result['returncode'] == 0 and part['kind'] == 'secret':
  2296. self.secret = Secret(content=result['results'][0])
  2297. elif result['returncode'] == 0 and part['kind'] == 'clusterrolebinding':
  2298. self.rolebinding = RoleBinding(content=result['results'][0])
  2299. return {'deploymentconfig': self.deploymentconfig,
  2300. 'service': self.service,
  2301. 'serviceaccount': self.serviceaccount,
  2302. 'secret': self.secret,
  2303. 'clusterrolebinding': self.rolebinding,
  2304. }
  2305. def exists(self):
  2306. '''return a whether svc or dc exists '''
  2307. if self.deploymentconfig and self.service and self.secret and self.serviceaccount:
  2308. return True
  2309. return False
  2310. def delete(self):
  2311. '''return all pods '''
  2312. parts = []
  2313. for part in self.router_parts:
  2314. parts.append(self._delete(part['kind'], part['name']))
  2315. rval = 0
  2316. for part in parts:
  2317. if part['returncode'] != 0 and not 'already exist' in part['stderr']:
  2318. rval = part['returncode']
  2319. return {'returncode': rval, 'results': parts}
  2320. def add_modifications(self, deploymentconfig):
  2321. '''modify the deployment config'''
  2322. # We want modifications in the form of edits coming in from the module.
  2323. # Let's apply these here
  2324. edit_results = []
  2325. for edit in self.config.config_options['edits'].get('value', []):
  2326. if edit['action'] == 'put':
  2327. edit_results.append(deploymentconfig.put(edit['key'],
  2328. edit['value']))
  2329. if edit['action'] == 'update':
  2330. edit_results.append(deploymentconfig.update(edit['key'],
  2331. edit['value'],
  2332. edit.get('index', None),
  2333. edit.get('curr_value', None)))
  2334. if edit['action'] == 'append':
  2335. edit_results.append(deploymentconfig.append(edit['key'],
  2336. edit['value']))
  2337. if edit_results and not any([res[0] for res in edit_results]):
  2338. return None
  2339. return deploymentconfig
  2340. # pylint: disable=too-many-branches
  2341. def _prepare_router(self):
  2342. '''prepare router for instantiation'''
  2343. # if cacert, key, and cert were passed, combine them into a pem file
  2344. if (self.config.config_options['cacert_file']['value'] and
  2345. self.config.config_options['cert_file']['value'] and
  2346. self.config.config_options['key_file']['value']):
  2347. router_pem = '/tmp/router.pem'
  2348. with open(router_pem, 'w') as rfd:
  2349. rfd.write(open(self.config.config_options['cert_file']['value']).read())
  2350. rfd.write(open(self.config.config_options['key_file']['value']).read())
  2351. if self.config.config_options['cacert_file']['value'] and \
  2352. os.path.exists(self.config.config_options['cacert_file']['value']):
  2353. rfd.write(open(self.config.config_options['cacert_file']['value']).read())
  2354. atexit.register(Utils.cleanup, [router_pem])
  2355. self.config.config_options['default_cert']['value'] = router_pem
  2356. elif self.config.config_options['default_cert']['value'] is None:
  2357. # No certificate was passed to us. do not pass one to oc adm router
  2358. self.config.config_options['default_cert']['include'] = False
  2359. options = self.config.to_option_list(ascommalist='labels')
  2360. cmd = ['router', self.config.name]
  2361. cmd.extend(options)
  2362. cmd.extend(['--dry-run=True', '-o', 'json'])
  2363. results = self.openshift_cmd(cmd, oadm=True, output=True, output_type='json')
  2364. # pylint: disable=maybe-no-member
  2365. if results['returncode'] != 0 or 'items' not in results['results']:
  2366. return results
  2367. oc_objects = {'DeploymentConfig': {'obj': None, 'path': None, 'update': False},
  2368. 'Secret': {'obj': None, 'path': None, 'update': False},
  2369. 'ServiceAccount': {'obj': None, 'path': None, 'update': False},
  2370. 'ClusterRoleBinding': {'obj': None, 'path': None, 'update': False},
  2371. 'Service': {'obj': None, 'path': None, 'update': False},
  2372. }
  2373. # pylint: disable=invalid-sequence-index
  2374. for res in results['results']['items']:
  2375. if res['kind'] == 'DeploymentConfig':
  2376. oc_objects['DeploymentConfig']['obj'] = DeploymentConfig(res)
  2377. elif res['kind'] == 'Service':
  2378. oc_objects['Service']['obj'] = Service(res)
  2379. elif res['kind'] == 'ServiceAccount':
  2380. oc_objects['ServiceAccount']['obj'] = ServiceAccount(res)
  2381. elif res['kind'] == 'Secret':
  2382. oc_objects['Secret']['obj'] = Secret(res)
  2383. elif res['kind'] == 'ClusterRoleBinding':
  2384. oc_objects['ClusterRoleBinding']['obj'] = RoleBinding(res)
  2385. # Currently only deploymentconfig needs updating
  2386. # Verify we got a deploymentconfig
  2387. if not oc_objects['DeploymentConfig']['obj']:
  2388. return results
  2389. # add modifications added
  2390. oc_objects['DeploymentConfig']['obj'] = self.add_modifications(oc_objects['DeploymentConfig']['obj'])
  2391. for oc_type, oc_data in oc_objects.items():
  2392. if oc_data['obj'] is not None:
  2393. oc_data['path'] = Utils.create_tmp_file_from_contents(oc_type, oc_data['obj'].yaml_dict)
  2394. return oc_objects
  2395. def create(self):
  2396. '''Create a router
  2397. This includes the different parts:
  2398. - deploymentconfig
  2399. - service
  2400. - serviceaccount
  2401. - secrets
  2402. - clusterrolebinding
  2403. '''
  2404. results = []
  2405. self.needs_update()
  2406. import time
  2407. # pylint: disable=maybe-no-member
  2408. for kind, oc_data in self.prepared_router.items():
  2409. if oc_data['obj'] is not None:
  2410. time.sleep(1)
  2411. if self.get_object_by_kind(kind) is None:
  2412. results.append(self._create(oc_data['path']))
  2413. elif oc_data['update']:
  2414. results.append(self._replace(oc_data['path']))
  2415. rval = 0
  2416. for result in results:
  2417. if result['returncode'] != 0 and not 'already exist' in result['stderr']:
  2418. rval = result['returncode']
  2419. return {'returncode': rval, 'results': results}
  2420. def update(self):
  2421. '''run update for the router. This performs a replace'''
  2422. results = []
  2423. # pylint: disable=maybe-no-member
  2424. for _, oc_data in self.prepared_router.items():
  2425. if oc_data['update']:
  2426. results.append(self._replace(oc_data['path']))
  2427. rval = 0
  2428. for result in results:
  2429. if result['returncode'] != 0:
  2430. rval = result['returncode']
  2431. return {'returncode': rval, 'results': results}
  2432. # pylint: disable=too-many-return-statements,too-many-branches
  2433. def needs_update(self):
  2434. ''' check to see if we need to update '''
  2435. # ServiceAccount:
  2436. # Need to determine changes from the pregenerated ones from the original
  2437. # Since these are auto generated, we can skip
  2438. skip = ['secrets', 'imagePullSecrets']
  2439. if self.serviceaccount is None or \
  2440. not Utils.check_def_equal(self.prepared_router['ServiceAccount']['obj'].yaml_dict,
  2441. self.serviceaccount.yaml_dict,
  2442. skip_keys=skip,
  2443. debug=self.verbose):
  2444. self.prepared_router['ServiceAccount']['update'] = True
  2445. # Secret:
  2446. # See if one was generated from our dry-run and verify it if needed
  2447. if self.prepared_router['Secret']['obj']:
  2448. if not self.secret:
  2449. self.prepared_router['Secret']['update'] = True
  2450. if self.secret is None or \
  2451. not Utils.check_def_equal(self.prepared_router['Secret']['obj'].yaml_dict,
  2452. self.secret.yaml_dict,
  2453. skip_keys=skip,
  2454. debug=self.verbose):
  2455. self.prepared_router['Secret']['update'] = True
  2456. # Service:
  2457. # Fix the ports to have protocol=TCP
  2458. for port in self.prepared_router['Service']['obj'].get('spec.ports'):
  2459. port['protocol'] = 'TCP'
  2460. skip = ['portalIP', 'clusterIP', 'sessionAffinity', 'type']
  2461. if self.service is None or \
  2462. not Utils.check_def_equal(self.prepared_router['Service']['obj'].yaml_dict,
  2463. self.service.yaml_dict,
  2464. skip_keys=skip,
  2465. debug=self.verbose):
  2466. self.prepared_router['Service']['update'] = True
  2467. # DeploymentConfig:
  2468. # Router needs some exceptions.
  2469. # We do not want to check the autogenerated password for stats admin
  2470. if self.deploymentconfig is not None:
  2471. if not self.config.config_options['stats_password']['value']:
  2472. for idx, env_var in enumerate(self.prepared_router['DeploymentConfig']['obj'].get(\
  2473. 'spec.template.spec.containers[0].env') or []):
  2474. if env_var['name'] == 'STATS_PASSWORD':
  2475. env_var['value'] = \
  2476. self.deploymentconfig.get('spec.template.spec.containers[0].env[%s].value' % idx)
  2477. break
  2478. # dry-run doesn't add the protocol to the ports section. We will manually do that.
  2479. for idx, port in enumerate(self.prepared_router['DeploymentConfig']['obj'].get(\
  2480. 'spec.template.spec.containers[0].ports') or []):
  2481. if not 'protocol' in port:
  2482. port['protocol'] = 'TCP'
  2483. # These are different when generating
  2484. skip = ['dnsPolicy',
  2485. 'terminationGracePeriodSeconds',
  2486. 'restartPolicy', 'timeoutSeconds',
  2487. 'livenessProbe', 'readinessProbe',
  2488. 'terminationMessagePath', 'hostPort',
  2489. 'defaultMode',
  2490. ]
  2491. if self.deploymentconfig is None or \
  2492. not Utils.check_def_equal(self.prepared_router['DeploymentConfig']['obj'].yaml_dict,
  2493. self.deploymentconfig.yaml_dict,
  2494. skip_keys=skip,
  2495. debug=self.verbose):
  2496. self.prepared_router['DeploymentConfig']['update'] = True
  2497. # Check if any of the parts need updating, if so, return True
  2498. # else, no need to update
  2499. # pylint: disable=no-member
  2500. return any([self.prepared_router[oc_type]['update'] for oc_type in self.prepared_router.keys()])
  2501. @staticmethod
  2502. def run_ansible(params, check_mode):
  2503. '''run ansible idempotent code'''
  2504. rconfig = RouterConfig(params['name'],
  2505. params['namespace'],
  2506. params['kubeconfig'],
  2507. {'default_cert': {'value': params['default_cert'], 'include': True},
  2508. 'cert_file': {'value': params['cert_file'], 'include': False},
  2509. 'key_file': {'value': params['key_file'], 'include': False},
  2510. 'images': {'value': params['images'], 'include': True},
  2511. 'latest_images': {'value': params['latest_images'], 'include': True},
  2512. 'labels': {'value': params['labels'], 'include': True},
  2513. 'ports': {'value': ','.join(params['ports']), 'include': True},
  2514. 'replicas': {'value': params['replicas'], 'include': True},
  2515. 'selector': {'value': params['selector'], 'include': True},
  2516. 'service_account': {'value': params['service_account'], 'include': True},
  2517. 'router_type': {'value': params['router_type'], 'include': False},
  2518. 'host_network': {'value': params['host_network'], 'include': True},
  2519. 'external_host': {'value': params['external_host'], 'include': True},
  2520. 'external_host_vserver': {'value': params['external_host_vserver'],
  2521. 'include': True},
  2522. 'external_host_insecure': {'value': params['external_host_insecure'],
  2523. 'include': True},
  2524. 'external_host_partition_path': {'value': params['external_host_partition_path'],
  2525. 'include': True},
  2526. 'external_host_username': {'value': params['external_host_username'],
  2527. 'include': True},
  2528. 'external_host_password': {'value': params['external_host_password'],
  2529. 'include': True},
  2530. 'external_host_private_key': {'value': params['external_host_private_key'],
  2531. 'include': True},
  2532. 'expose_metrics': {'value': params['expose_metrics'], 'include': True},
  2533. 'metrics_image': {'value': params['metrics_image'], 'include': True},
  2534. 'stats_user': {'value': params['stats_user'], 'include': True},
  2535. 'stats_password': {'value': params['stats_password'], 'include': True},
  2536. 'stats_port': {'value': params['stats_port'], 'include': True},
  2537. # extra
  2538. 'cacert_file': {'value': params['cacert_file'], 'include': False},
  2539. # edits
  2540. 'edits': {'value': params['edits'], 'include': False},
  2541. })
  2542. state = params['state']
  2543. ocrouter = Router(rconfig, verbose=params['debug'])
  2544. api_rval = ocrouter.get()
  2545. ########
  2546. # get
  2547. ########
  2548. if state == 'list':
  2549. return {'changed': False, 'results': api_rval, 'state': state}
  2550. ########
  2551. # Delete
  2552. ########
  2553. if state == 'absent':
  2554. if not ocrouter.exists():
  2555. return {'changed': False, 'state': state}
  2556. if check_mode:
  2557. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a delete.'}
  2558. # In case of delete we return a list of each object
  2559. # that represents a router and its result in a list
  2560. # pylint: disable=redefined-variable-type
  2561. api_rval = ocrouter.delete()
  2562. return {'changed': True, 'results': api_rval, 'state': state}
  2563. if state == 'present':
  2564. ########
  2565. # Create
  2566. ########
  2567. if not ocrouter.exists():
  2568. if check_mode:
  2569. return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a create.'}
  2570. api_rval = ocrouter.create()
  2571. if api_rval['returncode'] != 0:
  2572. return {'failed': True, 'msg': api_rval}
  2573. return {'changed': True, 'results': api_rval, 'state': state}
  2574. ########
  2575. # Update
  2576. ########
  2577. if not ocrouter.needs_update():
  2578. return {'changed': False, 'state': state}
  2579. if check_mode:
  2580. return {'changed': False, 'msg': 'CHECK_MODE: Would have performed an update.'}
  2581. api_rval = ocrouter.update()
  2582. if api_rval['returncode'] != 0:
  2583. return {'failed': True, 'msg': api_rval}
  2584. return {'changed': True, 'results': api_rval, 'state': state}
  2585. # -*- -*- -*- End included fragment: class/oc_adm_router.py -*- -*- -*-
  2586. # -*- -*- -*- Begin included fragment: ansible/oc_adm_router.py -*- -*- -*-
  2587. def main():
  2588. '''
  2589. ansible oc module for router
  2590. '''
  2591. module = AnsibleModule(
  2592. argument_spec=dict(
  2593. state=dict(default='present', type='str',
  2594. choices=['present', 'absent']),
  2595. debug=dict(default=False, type='bool'),
  2596. namespace=dict(default='default', type='str'),
  2597. name=dict(default='router', type='str'),
  2598. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  2599. default_cert=dict(default=None, type='str'),
  2600. cert_file=dict(default=None, type='str'),
  2601. key_file=dict(default=None, type='str'),
  2602. images=dict(default=None, type='str'), #'openshift3/ose-${component}:${version}'
  2603. latest_images=dict(default=False, type='bool'),
  2604. labels=dict(default=None, type='dict'),
  2605. ports=dict(default=['80:80', '443:443'], type='list'),
  2606. replicas=dict(default=1, type='int'),
  2607. selector=dict(default=None, type='str'),
  2608. service_account=dict(default='router', type='str'),
  2609. router_type=dict(default='haproxy-router', type='str'),
  2610. host_network=dict(default=True, type='bool'),
  2611. # external host options
  2612. external_host=dict(default=None, type='str'),
  2613. external_host_vserver=dict(default=None, type='str'),
  2614. external_host_insecure=dict(default=False, type='bool'),
  2615. external_host_partition_path=dict(default=None, type='str'),
  2616. external_host_username=dict(default=None, type='str'),
  2617. external_host_password=dict(default=None, type='str', no_log=True),
  2618. external_host_private_key=dict(default=None, type='str', no_log=True),
  2619. # Metrics
  2620. expose_metrics=dict(default=False, type='bool'),
  2621. metrics_image=dict(default=None, type='str'),
  2622. # Stats
  2623. stats_user=dict(default=None, type='str'),
  2624. stats_password=dict(default=None, type='str', no_log=True),
  2625. stats_port=dict(default=1936, type='int'),
  2626. # extra
  2627. cacert_file=dict(default=None, type='str'),
  2628. # edits
  2629. edits=dict(default=[], type='list'),
  2630. ),
  2631. mutually_exclusive=[["router_type", "images"],
  2632. ["key_file", "default_cert"],
  2633. ["cert_file", "default_cert"],
  2634. ["cacert_file", "default_cert"],
  2635. ],
  2636. required_together=[['cacert_file', 'cert_file', 'key_file']],
  2637. supports_check_mode=True,
  2638. )
  2639. results = Router.run_ansible(module.params, module.check_mode)
  2640. if 'failed' in results:
  2641. module.fail_json(**results)
  2642. module.exit_json(**results)
  2643. if __name__ == '__main__':
  2644. main()
  2645. # -*- -*- -*- End included fragment: ansible/oc_adm_router.py -*- -*- -*-