oc_adm_router.py 109 KB

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