bundle.yaml 312 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253
  1. apiVersion: apiextensions.k8s.io/v1
  2. kind: CustomResourceDefinition
  3. metadata:
  4. annotations:
  5. controller-gen.kubebuilder.io/version: v0.8.0
  6. creationTimestamp: null
  7. name: clusterexternalsecrets.external-secrets.io
  8. spec:
  9. group: external-secrets.io
  10. names:
  11. categories:
  12. - externalsecrets
  13. kind: ClusterExternalSecret
  14. listKind: ClusterExternalSecretList
  15. plural: clusterexternalsecrets
  16. shortNames:
  17. - ces
  18. singular: clusterexternalsecret
  19. scope: Cluster
  20. versions:
  21. - name: v1beta1
  22. schema:
  23. openAPIV3Schema:
  24. description: ClusterExternalSecret is the Schema for the clusterexternalsecrets API.
  25. properties:
  26. apiVersion:
  27. description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
  28. type: string
  29. kind:
  30. description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
  31. type: string
  32. metadata:
  33. type: object
  34. spec:
  35. description: ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.
  36. properties:
  37. externalSecretName:
  38. description: The name of the external secrets to be created defaults to the name of the ClusterExternalSecret
  39. type: string
  40. externalSecretSpec:
  41. description: The spec for the ExternalSecrets to be created
  42. properties:
  43. data:
  44. description: Data defines the connection between the Kubernetes Secret keys and the Provider data
  45. items:
  46. description: ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.
  47. properties:
  48. remoteRef:
  49. description: ExternalSecretDataRemoteRef defines Provider data location.
  50. properties:
  51. conversionStrategy:
  52. default: Default
  53. description: Used to define a conversion Strategy
  54. type: string
  55. key:
  56. description: Key is the key used in the Provider, mandatory
  57. type: string
  58. property:
  59. description: Used to select a specific property of the Provider value (if a map), if supported
  60. type: string
  61. version:
  62. description: Used to select a specific version of the Provider value, if supported
  63. type: string
  64. required:
  65. - key
  66. type: object
  67. secretKey:
  68. type: string
  69. required:
  70. - remoteRef
  71. - secretKey
  72. type: object
  73. type: array
  74. dataFrom:
  75. description: DataFrom is used to fetch all properties from a specific Provider data If multiple entries are specified, the Secret keys are merged in the specified order
  76. items:
  77. maxProperties: 1
  78. minProperties: 1
  79. properties:
  80. extract:
  81. description: Used to extract multiple key/value pairs from one secret
  82. properties:
  83. conversionStrategy:
  84. default: Default
  85. description: Used to define a conversion Strategy
  86. type: string
  87. key:
  88. description: Key is the key used in the Provider, mandatory
  89. type: string
  90. property:
  91. description: Used to select a specific property of the Provider value (if a map), if supported
  92. type: string
  93. version:
  94. description: Used to select a specific version of the Provider value, if supported
  95. type: string
  96. required:
  97. - key
  98. type: object
  99. find:
  100. description: Used to find secrets based on tags or regular expressions
  101. properties:
  102. conversionStrategy:
  103. default: Default
  104. description: Used to define a conversion Strategy
  105. type: string
  106. name:
  107. description: Finds secrets based on the name.
  108. properties:
  109. regexp:
  110. description: Finds secrets base
  111. type: string
  112. type: object
  113. path:
  114. description: A root path to start the find operations.
  115. type: string
  116. tags:
  117. additionalProperties:
  118. type: string
  119. description: Find secrets based on tags.
  120. type: object
  121. type: object
  122. type: object
  123. type: array
  124. refreshInterval:
  125. default: 1h
  126. description: RefreshInterval is the amount of time before the values are read again from the SecretStore provider Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h" May be set to zero to fetch and create it once. Defaults to 1h.
  127. type: string
  128. secretStoreRef:
  129. description: SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.
  130. properties:
  131. kind:
  132. description: Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`
  133. type: string
  134. name:
  135. description: Name of the SecretStore resource
  136. type: string
  137. required:
  138. - name
  139. type: object
  140. target:
  141. description: ExternalSecretTarget defines the Kubernetes Secret to be created There can be only one target per ExternalSecret.
  142. properties:
  143. creationPolicy:
  144. default: Owner
  145. description: CreationPolicy defines rules on how to create the resulting Secret Defaults to 'Owner'
  146. enum:
  147. - Owner
  148. - Orphan
  149. - Merge
  150. - None
  151. type: string
  152. deletionPolicy:
  153. default: Retain
  154. description: DeletionPolicy defines rules on how to delete the resulting Secret Defaults to 'Retain'
  155. enum:
  156. - Delete
  157. - Merge
  158. - Retain
  159. type: string
  160. immutable:
  161. description: Immutable defines if the final secret will be immutable
  162. type: boolean
  163. name:
  164. description: Name defines the name of the Secret resource to be managed This field is immutable Defaults to the .metadata.name of the ExternalSecret resource
  165. type: string
  166. template:
  167. description: Template defines a blueprint for the created Secret resource.
  168. properties:
  169. data:
  170. additionalProperties:
  171. type: string
  172. type: object
  173. engineVersion:
  174. default: v2
  175. type: string
  176. metadata:
  177. description: ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.
  178. properties:
  179. annotations:
  180. additionalProperties:
  181. type: string
  182. type: object
  183. labels:
  184. additionalProperties:
  185. type: string
  186. type: object
  187. type: object
  188. templateFrom:
  189. items:
  190. maxProperties: 1
  191. minProperties: 1
  192. properties:
  193. configMap:
  194. properties:
  195. items:
  196. items:
  197. properties:
  198. key:
  199. type: string
  200. required:
  201. - key
  202. type: object
  203. type: array
  204. name:
  205. type: string
  206. required:
  207. - items
  208. - name
  209. type: object
  210. secret:
  211. properties:
  212. items:
  213. items:
  214. properties:
  215. key:
  216. type: string
  217. required:
  218. - key
  219. type: object
  220. type: array
  221. name:
  222. type: string
  223. required:
  224. - items
  225. - name
  226. type: object
  227. type: object
  228. type: array
  229. type:
  230. type: string
  231. type: object
  232. type: object
  233. required:
  234. - secretStoreRef
  235. type: object
  236. namespaceSelector:
  237. description: The labels to select by to find the Namespaces to create the ExternalSecrets in.
  238. properties:
  239. matchExpressions:
  240. description: matchExpressions is a list of label selector requirements. The requirements are ANDed.
  241. items:
  242. description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.
  243. properties:
  244. key:
  245. description: key is the label key that the selector applies to.
  246. type: string
  247. operator:
  248. description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
  249. type: string
  250. values:
  251. description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
  252. items:
  253. type: string
  254. type: array
  255. required:
  256. - key
  257. - operator
  258. type: object
  259. type: array
  260. matchLabels:
  261. additionalProperties:
  262. type: string
  263. description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
  264. type: object
  265. type: object
  266. refreshTime:
  267. description: The time in which the controller should reconcile it's objects and recheck namespaces for labels.
  268. type: string
  269. required:
  270. - externalSecretSpec
  271. - namespaceSelector
  272. type: object
  273. status:
  274. description: ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.
  275. properties:
  276. conditions:
  277. items:
  278. properties:
  279. message:
  280. type: string
  281. status:
  282. type: string
  283. type:
  284. type: string
  285. required:
  286. - status
  287. - type
  288. type: object
  289. type: array
  290. failedNamespaces:
  291. description: Failed namespaces are the namespaces that failed to apply an ExternalSecret
  292. items:
  293. description: ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it's reason.
  294. properties:
  295. namespace:
  296. description: Namespace is the namespace that failed when trying to apply an ExternalSecret
  297. type: string
  298. reason:
  299. description: Reason is why the ExternalSecret failed to apply to the namespace
  300. type: string
  301. required:
  302. - namespace
  303. type: object
  304. type: array
  305. provisionedNamespaces:
  306. description: ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets
  307. items:
  308. type: string
  309. type: array
  310. type: object
  311. type: object
  312. served: true
  313. storage: true
  314. subresources:
  315. status: {}
  316. conversion:
  317. strategy: Webhook
  318. webhook:
  319. conversionReviewVersions:
  320. - v1
  321. clientConfig:
  322. service:
  323. name: kubernetes
  324. namespace: default
  325. path: /convert
  326. status:
  327. acceptedNames:
  328. kind: ""
  329. plural: ""
  330. conditions: []
  331. storedVersions: []
  332. ---
  333. apiVersion: apiextensions.k8s.io/v1
  334. kind: CustomResourceDefinition
  335. metadata:
  336. annotations:
  337. controller-gen.kubebuilder.io/version: v0.8.0
  338. creationTimestamp: null
  339. name: clustersecretstores.external-secrets.io
  340. spec:
  341. group: external-secrets.io
  342. names:
  343. categories:
  344. - externalsecrets
  345. kind: ClusterSecretStore
  346. listKind: ClusterSecretStoreList
  347. plural: clustersecretstores
  348. shortNames:
  349. - css
  350. singular: clustersecretstore
  351. scope: Cluster
  352. versions:
  353. - additionalPrinterColumns:
  354. - jsonPath: .metadata.creationTimestamp
  355. name: AGE
  356. type: date
  357. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  358. name: Status
  359. type: string
  360. deprecated: true
  361. name: v1alpha1
  362. schema:
  363. openAPIV3Schema:
  364. description: ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
  365. properties:
  366. apiVersion:
  367. description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
  368. type: string
  369. kind:
  370. description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
  371. type: string
  372. metadata:
  373. type: object
  374. spec:
  375. description: SecretStoreSpec defines the desired state of SecretStore.
  376. properties:
  377. controller:
  378. description: 'Used to select the correct KES controller (think: ingress.ingressClassName) The KES controller is instantiated with a specific controller name and filters ES based on this property'
  379. type: string
  380. provider:
  381. description: Used to configure the provider. Only one provider may be set
  382. maxProperties: 1
  383. minProperties: 1
  384. properties:
  385. akeyless:
  386. description: Akeyless configures this store to sync secrets using Akeyless Vault provider
  387. properties:
  388. akeylessGWApiURL:
  389. description: Akeyless GW API Url from which the secrets to be fetched from.
  390. type: string
  391. authSecretRef:
  392. description: Auth configures how the operator authenticates with Akeyless.
  393. properties:
  394. secretRef:
  395. description: 'AkeylessAuthSecretRef AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.'
  396. properties:
  397. accessID:
  398. description: The SecretAccessID is used for authentication
  399. properties:
  400. key:
  401. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  402. type: string
  403. name:
  404. description: The name of the Secret resource being referred to.
  405. type: string
  406. namespace:
  407. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  408. type: string
  409. type: object
  410. accessType:
  411. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  412. properties:
  413. key:
  414. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  415. type: string
  416. name:
  417. description: The name of the Secret resource being referred to.
  418. type: string
  419. namespace:
  420. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  421. type: string
  422. type: object
  423. accessTypeParam:
  424. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  425. properties:
  426. key:
  427. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  428. type: string
  429. name:
  430. description: The name of the Secret resource being referred to.
  431. type: string
  432. namespace:
  433. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  434. type: string
  435. type: object
  436. type: object
  437. required:
  438. - secretRef
  439. type: object
  440. required:
  441. - akeylessGWApiURL
  442. - authSecretRef
  443. type: object
  444. alibaba:
  445. description: Alibaba configures this store to sync secrets using Alibaba Cloud provider
  446. properties:
  447. auth:
  448. description: AlibabaAuth contains a secretRef for credentials.
  449. properties:
  450. secretRef:
  451. description: AlibabaAuthSecretRef holds secret references for Alibaba credentials.
  452. properties:
  453. accessKeyIDSecretRef:
  454. description: The AccessKeyID is used for authentication
  455. properties:
  456. key:
  457. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  458. type: string
  459. name:
  460. description: The name of the Secret resource being referred to.
  461. type: string
  462. namespace:
  463. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  464. type: string
  465. type: object
  466. accessKeySecretSecretRef:
  467. description: The AccessKeySecret is used for authentication
  468. properties:
  469. key:
  470. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  471. type: string
  472. name:
  473. description: The name of the Secret resource being referred to.
  474. type: string
  475. namespace:
  476. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  477. type: string
  478. type: object
  479. required:
  480. - accessKeyIDSecretRef
  481. - accessKeySecretSecretRef
  482. type: object
  483. required:
  484. - secretRef
  485. type: object
  486. endpoint:
  487. type: string
  488. regionID:
  489. description: Alibaba Region to be used for the provider
  490. type: string
  491. required:
  492. - auth
  493. - regionID
  494. type: object
  495. aws:
  496. description: AWS configures this store to sync secrets using AWS Secret Manager provider
  497. properties:
  498. auth:
  499. description: 'Auth defines the information necessary to authenticate against AWS if not set aws sdk will infer credentials from your environment see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
  500. properties:
  501. jwt:
  502. description: Authenticate against AWS using service account tokens.
  503. properties:
  504. serviceAccountRef:
  505. description: A reference to a ServiceAccount resource.
  506. properties:
  507. name:
  508. description: The name of the ServiceAccount resource being referred to.
  509. type: string
  510. namespace:
  511. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  512. type: string
  513. required:
  514. - name
  515. type: object
  516. type: object
  517. secretRef:
  518. description: AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.
  519. properties:
  520. accessKeyIDSecretRef:
  521. description: The AccessKeyID is used for authentication
  522. properties:
  523. key:
  524. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  525. type: string
  526. name:
  527. description: The name of the Secret resource being referred to.
  528. type: string
  529. namespace:
  530. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  531. type: string
  532. type: object
  533. secretAccessKeySecretRef:
  534. description: The SecretAccessKey is used for authentication
  535. properties:
  536. key:
  537. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  538. type: string
  539. name:
  540. description: The name of the Secret resource being referred to.
  541. type: string
  542. namespace:
  543. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  544. type: string
  545. type: object
  546. type: object
  547. type: object
  548. region:
  549. description: AWS Region to be used for the provider
  550. type: string
  551. role:
  552. description: Role is a Role ARN which the SecretManager provider will assume
  553. type: string
  554. service:
  555. description: Service defines which service should be used to fetch the secrets
  556. enum:
  557. - SecretsManager
  558. - ParameterStore
  559. type: string
  560. required:
  561. - region
  562. - service
  563. type: object
  564. azurekv:
  565. description: AzureKV configures this store to sync secrets using Azure Key Vault provider
  566. properties:
  567. authSecretRef:
  568. description: Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.
  569. properties:
  570. clientId:
  571. description: The Azure clientId of the service principle used for authentication.
  572. properties:
  573. key:
  574. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  575. type: string
  576. name:
  577. description: The name of the Secret resource being referred to.
  578. type: string
  579. namespace:
  580. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  581. type: string
  582. type: object
  583. clientSecret:
  584. description: The Azure ClientSecret of the service principle used for authentication.
  585. properties:
  586. key:
  587. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  588. type: string
  589. name:
  590. description: The name of the Secret resource being referred to.
  591. type: string
  592. namespace:
  593. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  594. type: string
  595. type: object
  596. type: object
  597. authType:
  598. default: ServicePrincipal
  599. description: 'Auth type defines how to authenticate to the keyvault service. Valid values are: - "ServicePrincipal" (default): Using a service principal (tenantId, clientId, clientSecret) - "ManagedIdentity": Using Managed Identity assigned to the pod (see aad-pod-identity)'
  600. enum:
  601. - ServicePrincipal
  602. - ManagedIdentity
  603. - WorkloadIdentity
  604. type: string
  605. identityId:
  606. description: If multiple Managed Identity is assigned to the pod, you can select the one to be used
  607. type: string
  608. serviceAccountRef:
  609. description: ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.
  610. properties:
  611. name:
  612. description: The name of the ServiceAccount resource being referred to.
  613. type: string
  614. namespace:
  615. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  616. type: string
  617. required:
  618. - name
  619. type: object
  620. tenantId:
  621. description: TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.
  622. type: string
  623. vaultUrl:
  624. description: Vault Url from which the secrets to be fetched from.
  625. type: string
  626. required:
  627. - vaultUrl
  628. type: object
  629. fake:
  630. description: Fake configures a store with static key/value pairs
  631. properties:
  632. data:
  633. items:
  634. properties:
  635. key:
  636. type: string
  637. value:
  638. type: string
  639. valueMap:
  640. additionalProperties:
  641. type: string
  642. type: object
  643. version:
  644. type: string
  645. required:
  646. - key
  647. type: object
  648. type: array
  649. required:
  650. - data
  651. type: object
  652. gcpsm:
  653. description: GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider
  654. properties:
  655. auth:
  656. description: Auth defines the information necessary to authenticate against GCP
  657. properties:
  658. secretRef:
  659. properties:
  660. secretAccessKeySecretRef:
  661. description: The SecretAccessKey is used for authentication
  662. properties:
  663. key:
  664. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  665. type: string
  666. name:
  667. description: The name of the Secret resource being referred to.
  668. type: string
  669. namespace:
  670. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  671. type: string
  672. type: object
  673. type: object
  674. workloadIdentity:
  675. properties:
  676. clusterLocation:
  677. type: string
  678. clusterName:
  679. type: string
  680. clusterProjectID:
  681. type: string
  682. serviceAccountRef:
  683. description: A reference to a ServiceAccount resource.
  684. properties:
  685. name:
  686. description: The name of the ServiceAccount resource being referred to.
  687. type: string
  688. namespace:
  689. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  690. type: string
  691. required:
  692. - name
  693. type: object
  694. required:
  695. - clusterLocation
  696. - clusterName
  697. - serviceAccountRef
  698. type: object
  699. type: object
  700. projectID:
  701. description: ProjectID project where secret is located
  702. type: string
  703. type: object
  704. gitlab:
  705. description: Gitlab configures this store to sync secrets using Gitlab Variables provider
  706. properties:
  707. auth:
  708. description: Auth configures how secret-manager authenticates with a GitLab instance.
  709. properties:
  710. SecretRef:
  711. properties:
  712. accessToken:
  713. description: AccessToken is used for authentication.
  714. properties:
  715. key:
  716. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  717. type: string
  718. name:
  719. description: The name of the Secret resource being referred to.
  720. type: string
  721. namespace:
  722. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  723. type: string
  724. type: object
  725. type: object
  726. required:
  727. - SecretRef
  728. type: object
  729. projectID:
  730. description: ProjectID specifies a project where secrets are located.
  731. type: string
  732. url:
  733. description: URL configures the GitLab instance URL. Defaults to https://gitlab.com/.
  734. type: string
  735. required:
  736. - auth
  737. type: object
  738. ibm:
  739. description: IBM configures this store to sync secrets using IBM Cloud provider
  740. properties:
  741. auth:
  742. description: Auth configures how secret-manager authenticates with the IBM secrets manager.
  743. properties:
  744. secretRef:
  745. properties:
  746. secretApiKeySecretRef:
  747. description: The SecretAccessKey is used for authentication
  748. properties:
  749. key:
  750. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  751. type: string
  752. name:
  753. description: The name of the Secret resource being referred to.
  754. type: string
  755. namespace:
  756. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  757. type: string
  758. type: object
  759. type: object
  760. required:
  761. - secretRef
  762. type: object
  763. serviceUrl:
  764. description: ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance
  765. type: string
  766. required:
  767. - auth
  768. type: object
  769. kubernetes:
  770. description: Kubernetes configures this store to sync secrets using a Kubernetes cluster provider
  771. properties:
  772. auth:
  773. description: Auth configures how secret-manager authenticates with a Kubernetes instance.
  774. maxProperties: 1
  775. minProperties: 1
  776. properties:
  777. cert:
  778. description: has both clientCert and clientKey as secretKeySelector
  779. properties:
  780. clientCert:
  781. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  782. properties:
  783. key:
  784. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  785. type: string
  786. name:
  787. description: The name of the Secret resource being referred to.
  788. type: string
  789. namespace:
  790. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  791. type: string
  792. type: object
  793. clientKey:
  794. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  795. properties:
  796. key:
  797. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  798. type: string
  799. name:
  800. description: The name of the Secret resource being referred to.
  801. type: string
  802. namespace:
  803. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  804. type: string
  805. type: object
  806. type: object
  807. serviceAccount:
  808. description: points to a service account that should be used for authentication
  809. properties:
  810. serviceAccount:
  811. description: A reference to a ServiceAccount resource.
  812. properties:
  813. name:
  814. description: The name of the ServiceAccount resource being referred to.
  815. type: string
  816. namespace:
  817. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  818. type: string
  819. required:
  820. - name
  821. type: object
  822. type: object
  823. token:
  824. description: use static token to authenticate with
  825. properties:
  826. bearerToken:
  827. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  828. properties:
  829. key:
  830. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  831. type: string
  832. name:
  833. description: The name of the Secret resource being referred to.
  834. type: string
  835. namespace:
  836. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  837. type: string
  838. type: object
  839. type: object
  840. type: object
  841. remoteNamespace:
  842. default: default
  843. description: Remote namespace to fetch the secrets from
  844. type: string
  845. server:
  846. description: configures the Kubernetes server Address.
  847. properties:
  848. caBundle:
  849. description: CABundle is a base64-encoded CA certificate
  850. format: byte
  851. type: string
  852. caProvider:
  853. description: 'see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider'
  854. properties:
  855. key:
  856. description: The key the value inside of the provider type to use, only used with "Secret" type
  857. type: string
  858. name:
  859. description: The name of the object located at the provider type.
  860. type: string
  861. namespace:
  862. description: The namespace the Provider type is in.
  863. type: string
  864. type:
  865. description: The type of provider to use such as "Secret", or "ConfigMap".
  866. enum:
  867. - Secret
  868. - ConfigMap
  869. type: string
  870. required:
  871. - name
  872. - type
  873. type: object
  874. url:
  875. default: kubernetes.default
  876. description: configures the Kubernetes server Address.
  877. type: string
  878. type: object
  879. required:
  880. - auth
  881. type: object
  882. oracle:
  883. description: Oracle configures this store to sync secrets using Oracle Vault provider
  884. properties:
  885. auth:
  886. description: Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.
  887. properties:
  888. secretRef:
  889. description: SecretRef to pass through sensitive information.
  890. properties:
  891. fingerprint:
  892. description: Fingerprint is the fingerprint of the API private key.
  893. properties:
  894. key:
  895. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  896. type: string
  897. name:
  898. description: The name of the Secret resource being referred to.
  899. type: string
  900. namespace:
  901. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  902. type: string
  903. type: object
  904. privatekey:
  905. description: PrivateKey is the user's API Signing Key in PEM format, used for authentication.
  906. properties:
  907. key:
  908. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  909. type: string
  910. name:
  911. description: The name of the Secret resource being referred to.
  912. type: string
  913. namespace:
  914. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  915. type: string
  916. type: object
  917. required:
  918. - fingerprint
  919. - privatekey
  920. type: object
  921. tenancy:
  922. description: Tenancy is the tenancy OCID where user is located.
  923. type: string
  924. user:
  925. description: User is an access OCID specific to the account.
  926. type: string
  927. required:
  928. - secretRef
  929. - tenancy
  930. - user
  931. type: object
  932. region:
  933. description: Region is the region where vault is located.
  934. type: string
  935. vault:
  936. description: Vault is the vault's OCID of the specific vault where secret is located.
  937. type: string
  938. required:
  939. - region
  940. - vault
  941. type: object
  942. vault:
  943. description: Vault configures this store to sync secrets using Hashi provider
  944. properties:
  945. auth:
  946. description: Auth configures how secret-manager authenticates with the Vault server.
  947. properties:
  948. appRole:
  949. description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.
  950. properties:
  951. path:
  952. default: approle
  953. description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"'
  954. type: string
  955. roleId:
  956. description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.
  957. type: string
  958. secretRef:
  959. description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret.
  960. properties:
  961. key:
  962. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  963. type: string
  964. name:
  965. description: The name of the Secret resource being referred to.
  966. type: string
  967. namespace:
  968. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  969. type: string
  970. type: object
  971. required:
  972. - path
  973. - roleId
  974. - secretRef
  975. type: object
  976. cert:
  977. description: Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method
  978. properties:
  979. clientCert:
  980. description: ClientCert is a certificate to authenticate using the Cert Vault authentication method
  981. properties:
  982. key:
  983. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  984. type: string
  985. name:
  986. description: The name of the Secret resource being referred to.
  987. type: string
  988. namespace:
  989. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  990. type: string
  991. type: object
  992. secretRef:
  993. description: SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method
  994. properties:
  995. key:
  996. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  997. type: string
  998. name:
  999. description: The name of the Secret resource being referred to.
  1000. type: string
  1001. namespace:
  1002. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1003. type: string
  1004. type: object
  1005. type: object
  1006. jwt:
  1007. description: Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method
  1008. properties:
  1009. kubernetesServiceAccountToken:
  1010. description: Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.
  1011. properties:
  1012. audiences:
  1013. description: Optional audiences field that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to a single audience `vault` it not specified.
  1014. items:
  1015. type: string
  1016. type: array
  1017. expirationSeconds:
  1018. description: Optional expiration time in seconds that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to 10 minutes.
  1019. format: int64
  1020. type: integer
  1021. serviceAccountRef:
  1022. description: Service account field containing the name of a kubernetes ServiceAccount.
  1023. properties:
  1024. name:
  1025. description: The name of the ServiceAccount resource being referred to.
  1026. type: string
  1027. namespace:
  1028. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1029. type: string
  1030. required:
  1031. - name
  1032. type: object
  1033. required:
  1034. - serviceAccountRef
  1035. type: object
  1036. path:
  1037. default: jwt
  1038. description: 'Path where the JWT authentication backend is mounted in Vault, e.g: "jwt"'
  1039. type: string
  1040. role:
  1041. description: Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method
  1042. type: string
  1043. secretRef:
  1044. description: Optional SecretRef that refers to a key in a Secret resource containing JWT token to authenticate with Vault using the JWT/OIDC authentication method.
  1045. properties:
  1046. key:
  1047. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1048. type: string
  1049. name:
  1050. description: The name of the Secret resource being referred to.
  1051. type: string
  1052. namespace:
  1053. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1054. type: string
  1055. type: object
  1056. required:
  1057. - path
  1058. type: object
  1059. kubernetes:
  1060. description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.
  1061. properties:
  1062. mountPath:
  1063. default: kubernetes
  1064. description: 'Path where the Kubernetes authentication backend is mounted in Vault, e.g: "kubernetes"'
  1065. type: string
  1066. role:
  1067. description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.
  1068. type: string
  1069. secretRef:
  1070. description: Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.
  1071. properties:
  1072. key:
  1073. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1074. type: string
  1075. name:
  1076. description: The name of the Secret resource being referred to.
  1077. type: string
  1078. namespace:
  1079. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1080. type: string
  1081. type: object
  1082. serviceAccountRef:
  1083. description: Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Vault. If the service account selector is not supplied, the secretRef will be used instead.
  1084. properties:
  1085. name:
  1086. description: The name of the ServiceAccount resource being referred to.
  1087. type: string
  1088. namespace:
  1089. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1090. type: string
  1091. required:
  1092. - name
  1093. type: object
  1094. required:
  1095. - mountPath
  1096. - role
  1097. type: object
  1098. ldap:
  1099. description: Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method
  1100. properties:
  1101. path:
  1102. default: ldap
  1103. description: 'Path where the LDAP authentication backend is mounted in Vault, e.g: "ldap"'
  1104. type: string
  1105. secretRef:
  1106. description: SecretRef to a key in a Secret resource containing password for the LDAP user used to authenticate with Vault using the LDAP authentication method
  1107. properties:
  1108. key:
  1109. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1110. type: string
  1111. name:
  1112. description: The name of the Secret resource being referred to.
  1113. type: string
  1114. namespace:
  1115. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1116. type: string
  1117. type: object
  1118. username:
  1119. description: Username is a LDAP user name used to authenticate using the LDAP Vault authentication method
  1120. type: string
  1121. required:
  1122. - path
  1123. - username
  1124. type: object
  1125. tokenSecretRef:
  1126. description: TokenSecretRef authenticates with Vault by presenting a token.
  1127. properties:
  1128. key:
  1129. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1130. type: string
  1131. name:
  1132. description: The name of the Secret resource being referred to.
  1133. type: string
  1134. namespace:
  1135. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1136. type: string
  1137. type: object
  1138. type: object
  1139. caBundle:
  1140. description: PEM encoded CA bundle used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.
  1141. format: byte
  1142. type: string
  1143. caProvider:
  1144. description: The provider for the CA bundle to use to validate Vault server certificate.
  1145. properties:
  1146. key:
  1147. description: The key the value inside of the provider type to use, only used with "Secret" type
  1148. type: string
  1149. name:
  1150. description: The name of the object located at the provider type.
  1151. type: string
  1152. namespace:
  1153. description: The namespace the Provider type is in.
  1154. type: string
  1155. type:
  1156. description: The type of provider to use such as "Secret", or "ConfigMap".
  1157. enum:
  1158. - Secret
  1159. - ConfigMap
  1160. type: string
  1161. required:
  1162. - name
  1163. - type
  1164. type: object
  1165. forwardInconsistent:
  1166. description: ForwardInconsistent tells Vault to forward read-after-write requests to the Vault leader instead of simply retrying within a loop. This can increase performance if the option is enabled serverside. https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header
  1167. type: boolean
  1168. namespace:
  1169. description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1". More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces'
  1170. type: string
  1171. path:
  1172. description: 'Path is the mount path of the Vault KV backend endpoint, e.g: "secret". The v2 KV secret engine version specific "/data" path suffix for fetching secrets from Vault is optional and will be appended if not present in specified path.'
  1173. type: string
  1174. readYourWrites:
  1175. description: ReadYourWrites ensures isolated read-after-write semantics by providing discovered cluster replication states in each request. More information about eventual consistency in Vault can be found here https://www.vaultproject.io/docs/enterprise/consistency
  1176. type: boolean
  1177. server:
  1178. description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".'
  1179. type: string
  1180. version:
  1181. default: v2
  1182. description: Version is the Vault KV secret engine version. This can be either "v1" or "v2". Version defaults to "v2".
  1183. enum:
  1184. - v1
  1185. - v2
  1186. type: string
  1187. required:
  1188. - auth
  1189. - server
  1190. type: object
  1191. webhook:
  1192. description: Webhook configures this store to sync secrets using a generic templated webhook
  1193. properties:
  1194. body:
  1195. description: Body
  1196. type: string
  1197. caBundle:
  1198. description: PEM encoded CA bundle used to validate webhook server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.
  1199. format: byte
  1200. type: string
  1201. caProvider:
  1202. description: The provider for the CA bundle to use to validate webhook server certificate.
  1203. properties:
  1204. key:
  1205. description: The key the value inside of the provider type to use, only used with "Secret" type
  1206. type: string
  1207. name:
  1208. description: The name of the object located at the provider type.
  1209. type: string
  1210. namespace:
  1211. description: The namespace the Provider type is in.
  1212. type: string
  1213. type:
  1214. description: The type of provider to use such as "Secret", or "ConfigMap".
  1215. enum:
  1216. - Secret
  1217. - ConfigMap
  1218. type: string
  1219. required:
  1220. - name
  1221. - type
  1222. type: object
  1223. headers:
  1224. additionalProperties:
  1225. type: string
  1226. description: Headers
  1227. type: object
  1228. method:
  1229. description: Webhook Method
  1230. type: string
  1231. result:
  1232. description: Result formatting
  1233. properties:
  1234. jsonPath:
  1235. description: Json path of return value
  1236. type: string
  1237. type: object
  1238. secrets:
  1239. description: Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name
  1240. items:
  1241. properties:
  1242. name:
  1243. description: Name of this secret in templates
  1244. type: string
  1245. secretRef:
  1246. description: Secret ref to fill in credentials
  1247. properties:
  1248. key:
  1249. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1250. type: string
  1251. name:
  1252. description: The name of the Secret resource being referred to.
  1253. type: string
  1254. namespace:
  1255. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1256. type: string
  1257. type: object
  1258. required:
  1259. - name
  1260. - secretRef
  1261. type: object
  1262. type: array
  1263. timeout:
  1264. description: Timeout
  1265. type: string
  1266. url:
  1267. description: Webhook url to call
  1268. type: string
  1269. required:
  1270. - result
  1271. - url
  1272. type: object
  1273. yandexlockbox:
  1274. description: YandexLockbox configures this store to sync secrets using Yandex Lockbox provider
  1275. properties:
  1276. apiEndpoint:
  1277. description: Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')
  1278. type: string
  1279. auth:
  1280. description: Auth defines the information necessary to authenticate against Yandex Lockbox
  1281. properties:
  1282. authorizedKeySecretRef:
  1283. description: The authorized key used for authentication
  1284. properties:
  1285. key:
  1286. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1287. type: string
  1288. name:
  1289. description: The name of the Secret resource being referred to.
  1290. type: string
  1291. namespace:
  1292. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1293. type: string
  1294. type: object
  1295. type: object
  1296. caProvider:
  1297. description: The provider for the CA bundle to use to validate Yandex.Cloud server certificate.
  1298. properties:
  1299. certSecretRef:
  1300. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1301. properties:
  1302. key:
  1303. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1304. type: string
  1305. name:
  1306. description: The name of the Secret resource being referred to.
  1307. type: string
  1308. namespace:
  1309. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1310. type: string
  1311. type: object
  1312. type: object
  1313. required:
  1314. - auth
  1315. type: object
  1316. type: object
  1317. retrySettings:
  1318. description: Used to configure http retries if failed
  1319. properties:
  1320. maxRetries:
  1321. format: int32
  1322. type: integer
  1323. retryInterval:
  1324. type: string
  1325. type: object
  1326. required:
  1327. - provider
  1328. type: object
  1329. status:
  1330. description: SecretStoreStatus defines the observed state of the SecretStore.
  1331. properties:
  1332. conditions:
  1333. items:
  1334. properties:
  1335. lastTransitionTime:
  1336. format: date-time
  1337. type: string
  1338. message:
  1339. type: string
  1340. reason:
  1341. type: string
  1342. status:
  1343. type: string
  1344. type:
  1345. type: string
  1346. required:
  1347. - status
  1348. - type
  1349. type: object
  1350. type: array
  1351. type: object
  1352. type: object
  1353. served: true
  1354. storage: false
  1355. subresources:
  1356. status: {}
  1357. - additionalPrinterColumns:
  1358. - jsonPath: .metadata.creationTimestamp
  1359. name: AGE
  1360. type: date
  1361. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  1362. name: Status
  1363. type: string
  1364. - jsonPath: .status.capabilities
  1365. name: Capabilities
  1366. type: string
  1367. name: v1beta1
  1368. schema:
  1369. openAPIV3Schema:
  1370. description: ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
  1371. properties:
  1372. apiVersion:
  1373. description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
  1374. type: string
  1375. kind:
  1376. description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
  1377. type: string
  1378. metadata:
  1379. type: object
  1380. spec:
  1381. description: SecretStoreSpec defines the desired state of SecretStore.
  1382. properties:
  1383. controller:
  1384. description: 'Used to select the correct KES controller (think: ingress.ingressClassName) The KES controller is instantiated with a specific controller name and filters ES based on this property'
  1385. type: string
  1386. provider:
  1387. description: Used to configure the provider. Only one provider may be set
  1388. maxProperties: 1
  1389. minProperties: 1
  1390. properties:
  1391. akeyless:
  1392. description: Akeyless configures this store to sync secrets using Akeyless Vault provider
  1393. properties:
  1394. akeylessGWApiURL:
  1395. description: Akeyless GW API Url from which the secrets to be fetched from.
  1396. type: string
  1397. authSecretRef:
  1398. description: Auth configures how the operator authenticates with Akeyless.
  1399. properties:
  1400. secretRef:
  1401. description: 'AkeylessAuthSecretRef AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.'
  1402. properties:
  1403. accessID:
  1404. description: The SecretAccessID is used for authentication
  1405. properties:
  1406. key:
  1407. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1408. type: string
  1409. name:
  1410. description: The name of the Secret resource being referred to.
  1411. type: string
  1412. namespace:
  1413. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1414. type: string
  1415. type: object
  1416. accessType:
  1417. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1418. properties:
  1419. key:
  1420. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1421. type: string
  1422. name:
  1423. description: The name of the Secret resource being referred to.
  1424. type: string
  1425. namespace:
  1426. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1427. type: string
  1428. type: object
  1429. accessTypeParam:
  1430. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1431. properties:
  1432. key:
  1433. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1434. type: string
  1435. name:
  1436. description: The name of the Secret resource being referred to.
  1437. type: string
  1438. namespace:
  1439. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1440. type: string
  1441. type: object
  1442. type: object
  1443. required:
  1444. - secretRef
  1445. type: object
  1446. required:
  1447. - akeylessGWApiURL
  1448. - authSecretRef
  1449. type: object
  1450. alibaba:
  1451. description: Alibaba configures this store to sync secrets using Alibaba Cloud provider
  1452. properties:
  1453. auth:
  1454. description: AlibabaAuth contains a secretRef for credentials.
  1455. properties:
  1456. secretRef:
  1457. description: AlibabaAuthSecretRef holds secret references for Alibaba credentials.
  1458. properties:
  1459. accessKeyIDSecretRef:
  1460. description: The AccessKeyID is used for authentication
  1461. properties:
  1462. key:
  1463. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1464. type: string
  1465. name:
  1466. description: The name of the Secret resource being referred to.
  1467. type: string
  1468. namespace:
  1469. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1470. type: string
  1471. type: object
  1472. accessKeySecretSecretRef:
  1473. description: The AccessKeySecret is used for authentication
  1474. properties:
  1475. key:
  1476. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1477. type: string
  1478. name:
  1479. description: The name of the Secret resource being referred to.
  1480. type: string
  1481. namespace:
  1482. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1483. type: string
  1484. type: object
  1485. required:
  1486. - accessKeyIDSecretRef
  1487. - accessKeySecretSecretRef
  1488. type: object
  1489. required:
  1490. - secretRef
  1491. type: object
  1492. endpoint:
  1493. type: string
  1494. regionID:
  1495. description: Alibaba Region to be used for the provider
  1496. type: string
  1497. required:
  1498. - auth
  1499. - regionID
  1500. type: object
  1501. aws:
  1502. description: AWS configures this store to sync secrets using AWS Secret Manager provider
  1503. properties:
  1504. auth:
  1505. description: 'Auth defines the information necessary to authenticate against AWS if not set aws sdk will infer credentials from your environment see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
  1506. properties:
  1507. jwt:
  1508. description: Authenticate against AWS using service account tokens.
  1509. properties:
  1510. serviceAccountRef:
  1511. description: A reference to a ServiceAccount resource.
  1512. properties:
  1513. name:
  1514. description: The name of the ServiceAccount resource being referred to.
  1515. type: string
  1516. namespace:
  1517. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1518. type: string
  1519. required:
  1520. - name
  1521. type: object
  1522. type: object
  1523. secretRef:
  1524. description: AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.
  1525. properties:
  1526. accessKeyIDSecretRef:
  1527. description: The AccessKeyID is used for authentication
  1528. properties:
  1529. key:
  1530. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1531. type: string
  1532. name:
  1533. description: The name of the Secret resource being referred to.
  1534. type: string
  1535. namespace:
  1536. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1537. type: string
  1538. type: object
  1539. secretAccessKeySecretRef:
  1540. description: The SecretAccessKey is used for authentication
  1541. properties:
  1542. key:
  1543. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1544. type: string
  1545. name:
  1546. description: The name of the Secret resource being referred to.
  1547. type: string
  1548. namespace:
  1549. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1550. type: string
  1551. type: object
  1552. type: object
  1553. type: object
  1554. region:
  1555. description: AWS Region to be used for the provider
  1556. type: string
  1557. role:
  1558. description: Role is a Role ARN which the SecretManager provider will assume
  1559. type: string
  1560. service:
  1561. description: Service defines which service should be used to fetch the secrets
  1562. enum:
  1563. - SecretsManager
  1564. - ParameterStore
  1565. type: string
  1566. required:
  1567. - region
  1568. - service
  1569. type: object
  1570. azurekv:
  1571. description: AzureKV configures this store to sync secrets using Azure Key Vault provider
  1572. properties:
  1573. authSecretRef:
  1574. description: Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.
  1575. properties:
  1576. clientId:
  1577. description: The Azure clientId of the service principle used for authentication.
  1578. properties:
  1579. key:
  1580. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1581. type: string
  1582. name:
  1583. description: The name of the Secret resource being referred to.
  1584. type: string
  1585. namespace:
  1586. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1587. type: string
  1588. type: object
  1589. clientSecret:
  1590. description: The Azure ClientSecret of the service principle used for authentication.
  1591. properties:
  1592. key:
  1593. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1594. type: string
  1595. name:
  1596. description: The name of the Secret resource being referred to.
  1597. type: string
  1598. namespace:
  1599. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1600. type: string
  1601. type: object
  1602. type: object
  1603. authType:
  1604. default: ServicePrincipal
  1605. description: 'Auth type defines how to authenticate to the keyvault service. Valid values are: - "ServicePrincipal" (default): Using a service principal (tenantId, clientId, clientSecret) - "ManagedIdentity": Using Managed Identity assigned to the pod (see aad-pod-identity)'
  1606. enum:
  1607. - ServicePrincipal
  1608. - ManagedIdentity
  1609. - WorkloadIdentity
  1610. type: string
  1611. identityId:
  1612. description: If multiple Managed Identity is assigned to the pod, you can select the one to be used
  1613. type: string
  1614. serviceAccountRef:
  1615. description: ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.
  1616. properties:
  1617. name:
  1618. description: The name of the ServiceAccount resource being referred to.
  1619. type: string
  1620. namespace:
  1621. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1622. type: string
  1623. required:
  1624. - name
  1625. type: object
  1626. tenantId:
  1627. description: TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.
  1628. type: string
  1629. vaultUrl:
  1630. description: Vault Url from which the secrets to be fetched from.
  1631. type: string
  1632. required:
  1633. - vaultUrl
  1634. type: object
  1635. fake:
  1636. description: Fake configures a store with static key/value pairs
  1637. properties:
  1638. data:
  1639. items:
  1640. properties:
  1641. key:
  1642. type: string
  1643. value:
  1644. type: string
  1645. valueMap:
  1646. additionalProperties:
  1647. type: string
  1648. type: object
  1649. version:
  1650. type: string
  1651. required:
  1652. - key
  1653. type: object
  1654. type: array
  1655. required:
  1656. - data
  1657. type: object
  1658. gcpsm:
  1659. description: GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider
  1660. properties:
  1661. auth:
  1662. description: Auth defines the information necessary to authenticate against GCP
  1663. properties:
  1664. secretRef:
  1665. properties:
  1666. secretAccessKeySecretRef:
  1667. description: The SecretAccessKey is used for authentication
  1668. properties:
  1669. key:
  1670. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1671. type: string
  1672. name:
  1673. description: The name of the Secret resource being referred to.
  1674. type: string
  1675. namespace:
  1676. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1677. type: string
  1678. type: object
  1679. type: object
  1680. workloadIdentity:
  1681. properties:
  1682. clusterLocation:
  1683. type: string
  1684. clusterName:
  1685. type: string
  1686. clusterProjectID:
  1687. type: string
  1688. serviceAccountRef:
  1689. description: A reference to a ServiceAccount resource.
  1690. properties:
  1691. name:
  1692. description: The name of the ServiceAccount resource being referred to.
  1693. type: string
  1694. namespace:
  1695. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1696. type: string
  1697. required:
  1698. - name
  1699. type: object
  1700. required:
  1701. - clusterLocation
  1702. - clusterName
  1703. - serviceAccountRef
  1704. type: object
  1705. type: object
  1706. projectID:
  1707. description: ProjectID project where secret is located
  1708. type: string
  1709. type: object
  1710. gitlab:
  1711. description: Gitlab configures this store to sync secrets using Gitlab Variables provider
  1712. properties:
  1713. auth:
  1714. description: Auth configures how secret-manager authenticates with a GitLab instance.
  1715. properties:
  1716. SecretRef:
  1717. properties:
  1718. accessToken:
  1719. description: AccessToken is used for authentication.
  1720. properties:
  1721. key:
  1722. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1723. type: string
  1724. name:
  1725. description: The name of the Secret resource being referred to.
  1726. type: string
  1727. namespace:
  1728. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1729. type: string
  1730. type: object
  1731. type: object
  1732. required:
  1733. - SecretRef
  1734. type: object
  1735. projectID:
  1736. description: ProjectID specifies a project where secrets are located.
  1737. type: string
  1738. url:
  1739. description: URL configures the GitLab instance URL. Defaults to https://gitlab.com/.
  1740. type: string
  1741. required:
  1742. - auth
  1743. type: object
  1744. ibm:
  1745. description: IBM configures this store to sync secrets using IBM Cloud provider
  1746. properties:
  1747. auth:
  1748. description: Auth configures how secret-manager authenticates with the IBM secrets manager.
  1749. properties:
  1750. secretRef:
  1751. properties:
  1752. secretApiKeySecretRef:
  1753. description: The SecretAccessKey is used for authentication
  1754. properties:
  1755. key:
  1756. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1757. type: string
  1758. name:
  1759. description: The name of the Secret resource being referred to.
  1760. type: string
  1761. namespace:
  1762. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1763. type: string
  1764. type: object
  1765. type: object
  1766. required:
  1767. - secretRef
  1768. type: object
  1769. serviceUrl:
  1770. description: ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance
  1771. type: string
  1772. required:
  1773. - auth
  1774. type: object
  1775. kubernetes:
  1776. description: Kubernetes configures this store to sync secrets using a Kubernetes cluster provider
  1777. properties:
  1778. auth:
  1779. description: Auth configures how secret-manager authenticates with a Kubernetes instance.
  1780. maxProperties: 1
  1781. minProperties: 1
  1782. properties:
  1783. cert:
  1784. description: has both clientCert and clientKey as secretKeySelector
  1785. properties:
  1786. clientCert:
  1787. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1788. properties:
  1789. key:
  1790. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1791. type: string
  1792. name:
  1793. description: The name of the Secret resource being referred to.
  1794. type: string
  1795. namespace:
  1796. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1797. type: string
  1798. type: object
  1799. clientKey:
  1800. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1801. properties:
  1802. key:
  1803. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1804. type: string
  1805. name:
  1806. description: The name of the Secret resource being referred to.
  1807. type: string
  1808. namespace:
  1809. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1810. type: string
  1811. type: object
  1812. type: object
  1813. serviceAccount:
  1814. description: points to a service account that should be used for authentication
  1815. properties:
  1816. serviceAccount:
  1817. description: A reference to a ServiceAccount resource.
  1818. properties:
  1819. name:
  1820. description: The name of the ServiceAccount resource being referred to.
  1821. type: string
  1822. namespace:
  1823. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1824. type: string
  1825. required:
  1826. - name
  1827. type: object
  1828. type: object
  1829. token:
  1830. description: use static token to authenticate with
  1831. properties:
  1832. bearerToken:
  1833. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1834. properties:
  1835. key:
  1836. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1837. type: string
  1838. name:
  1839. description: The name of the Secret resource being referred to.
  1840. type: string
  1841. namespace:
  1842. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1843. type: string
  1844. type: object
  1845. type: object
  1846. type: object
  1847. remoteNamespace:
  1848. default: default
  1849. description: Remote namespace to fetch the secrets from
  1850. type: string
  1851. server:
  1852. description: configures the Kubernetes server Address.
  1853. properties:
  1854. caBundle:
  1855. description: CABundle is a base64-encoded CA certificate
  1856. format: byte
  1857. type: string
  1858. caProvider:
  1859. description: 'see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider'
  1860. properties:
  1861. key:
  1862. description: The key the value inside of the provider type to use, only used with "Secret" type
  1863. type: string
  1864. name:
  1865. description: The name of the object located at the provider type.
  1866. type: string
  1867. namespace:
  1868. description: The namespace the Provider type is in.
  1869. type: string
  1870. type:
  1871. description: The type of provider to use such as "Secret", or "ConfigMap".
  1872. enum:
  1873. - Secret
  1874. - ConfigMap
  1875. type: string
  1876. required:
  1877. - name
  1878. - type
  1879. type: object
  1880. url:
  1881. default: kubernetes.default
  1882. description: configures the Kubernetes server Address.
  1883. type: string
  1884. type: object
  1885. required:
  1886. - auth
  1887. type: object
  1888. onepassword:
  1889. description: OnePassword configures this store to sync secrets using the 1Password Cloud provider
  1890. properties:
  1891. auth:
  1892. description: Auth defines the information necessary to authenticate against OnePassword Connect Server
  1893. properties:
  1894. secretRef:
  1895. description: OnePasswordAuthSecretRef holds secret references for 1Password credentials.
  1896. properties:
  1897. connectTokenSecretRef:
  1898. description: The ConnectToken is used for authentication to a 1Password Connect Server.
  1899. properties:
  1900. key:
  1901. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1902. type: string
  1903. name:
  1904. description: The name of the Secret resource being referred to.
  1905. type: string
  1906. namespace:
  1907. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1908. type: string
  1909. type: object
  1910. required:
  1911. - connectTokenSecretRef
  1912. type: object
  1913. required:
  1914. - secretRef
  1915. type: object
  1916. connectHost:
  1917. description: ConnectHost defines the OnePassword Connect Server to connect to
  1918. type: string
  1919. vaults:
  1920. additionalProperties:
  1921. type: integer
  1922. description: Vaults defines which OnePassword vaults to search in which order
  1923. type: object
  1924. required:
  1925. - auth
  1926. - connectHost
  1927. - vaults
  1928. type: object
  1929. oracle:
  1930. description: Oracle configures this store to sync secrets using Oracle Vault provider
  1931. properties:
  1932. auth:
  1933. description: Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.
  1934. properties:
  1935. secretRef:
  1936. description: SecretRef to pass through sensitive information.
  1937. properties:
  1938. fingerprint:
  1939. description: Fingerprint is the fingerprint of the API private key.
  1940. properties:
  1941. key:
  1942. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1943. type: string
  1944. name:
  1945. description: The name of the Secret resource being referred to.
  1946. type: string
  1947. namespace:
  1948. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1949. type: string
  1950. type: object
  1951. privatekey:
  1952. description: PrivateKey is the user's API Signing Key in PEM format, used for authentication.
  1953. properties:
  1954. key:
  1955. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  1956. type: string
  1957. name:
  1958. description: The name of the Secret resource being referred to.
  1959. type: string
  1960. namespace:
  1961. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1962. type: string
  1963. type: object
  1964. required:
  1965. - fingerprint
  1966. - privatekey
  1967. type: object
  1968. tenancy:
  1969. description: Tenancy is the tenancy OCID where user is located.
  1970. type: string
  1971. user:
  1972. description: User is an access OCID specific to the account.
  1973. type: string
  1974. required:
  1975. - secretRef
  1976. - tenancy
  1977. - user
  1978. type: object
  1979. region:
  1980. description: Region is the region where vault is located.
  1981. type: string
  1982. vault:
  1983. description: Vault is the vault's OCID of the specific vault where secret is located.
  1984. type: string
  1985. required:
  1986. - region
  1987. - vault
  1988. type: object
  1989. senhasegura:
  1990. description: Senhasegura configures this store to sync secrets using senhasegura provider
  1991. properties:
  1992. auth:
  1993. description: Auth defines parameters to authenticate in senhasegura
  1994. properties:
  1995. clientId:
  1996. type: string
  1997. clientSecretSecretRef:
  1998. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1999. properties:
  2000. key:
  2001. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2002. type: string
  2003. name:
  2004. description: The name of the Secret resource being referred to.
  2005. type: string
  2006. namespace:
  2007. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2008. type: string
  2009. type: object
  2010. required:
  2011. - clientId
  2012. - clientSecretSecretRef
  2013. type: object
  2014. ignoreSslCertificate:
  2015. default: false
  2016. description: IgnoreSslCertificate defines if SSL certificate must be ignored
  2017. type: boolean
  2018. module:
  2019. description: Module defines which senhasegura module should be used to get secrets
  2020. type: string
  2021. url:
  2022. description: URL of senhasegura
  2023. type: string
  2024. required:
  2025. - auth
  2026. - module
  2027. - url
  2028. type: object
  2029. vault:
  2030. description: Vault configures this store to sync secrets using Hashi provider
  2031. properties:
  2032. auth:
  2033. description: Auth configures how secret-manager authenticates with the Vault server.
  2034. properties:
  2035. appRole:
  2036. description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.
  2037. properties:
  2038. path:
  2039. default: approle
  2040. description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"'
  2041. type: string
  2042. roleId:
  2043. description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.
  2044. type: string
  2045. secretRef:
  2046. description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret.
  2047. properties:
  2048. key:
  2049. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2050. type: string
  2051. name:
  2052. description: The name of the Secret resource being referred to.
  2053. type: string
  2054. namespace:
  2055. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2056. type: string
  2057. type: object
  2058. required:
  2059. - path
  2060. - roleId
  2061. - secretRef
  2062. type: object
  2063. cert:
  2064. description: Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method
  2065. properties:
  2066. clientCert:
  2067. description: ClientCert is a certificate to authenticate using the Cert Vault authentication method
  2068. properties:
  2069. key:
  2070. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2071. type: string
  2072. name:
  2073. description: The name of the Secret resource being referred to.
  2074. type: string
  2075. namespace:
  2076. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2077. type: string
  2078. type: object
  2079. secretRef:
  2080. description: SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method
  2081. properties:
  2082. key:
  2083. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2084. type: string
  2085. name:
  2086. description: The name of the Secret resource being referred to.
  2087. type: string
  2088. namespace:
  2089. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2090. type: string
  2091. type: object
  2092. type: object
  2093. jwt:
  2094. description: Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method
  2095. properties:
  2096. kubernetesServiceAccountToken:
  2097. description: Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.
  2098. properties:
  2099. audiences:
  2100. description: Optional audiences field that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to a single audience `vault` it not specified.
  2101. items:
  2102. type: string
  2103. type: array
  2104. expirationSeconds:
  2105. description: Optional expiration time in seconds that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to 10 minutes.
  2106. format: int64
  2107. type: integer
  2108. serviceAccountRef:
  2109. description: Service account field containing the name of a kubernetes ServiceAccount.
  2110. properties:
  2111. name:
  2112. description: The name of the ServiceAccount resource being referred to.
  2113. type: string
  2114. namespace:
  2115. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2116. type: string
  2117. required:
  2118. - name
  2119. type: object
  2120. required:
  2121. - serviceAccountRef
  2122. type: object
  2123. path:
  2124. default: jwt
  2125. description: 'Path where the JWT authentication backend is mounted in Vault, e.g: "jwt"'
  2126. type: string
  2127. role:
  2128. description: Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method
  2129. type: string
  2130. secretRef:
  2131. description: Optional SecretRef that refers to a key in a Secret resource containing JWT token to authenticate with Vault using the JWT/OIDC authentication method.
  2132. properties:
  2133. key:
  2134. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2135. type: string
  2136. name:
  2137. description: The name of the Secret resource being referred to.
  2138. type: string
  2139. namespace:
  2140. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2141. type: string
  2142. type: object
  2143. required:
  2144. - path
  2145. type: object
  2146. kubernetes:
  2147. description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.
  2148. properties:
  2149. mountPath:
  2150. default: kubernetes
  2151. description: 'Path where the Kubernetes authentication backend is mounted in Vault, e.g: "kubernetes"'
  2152. type: string
  2153. role:
  2154. description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.
  2155. type: string
  2156. secretRef:
  2157. description: Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.
  2158. properties:
  2159. key:
  2160. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2161. type: string
  2162. name:
  2163. description: The name of the Secret resource being referred to.
  2164. type: string
  2165. namespace:
  2166. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2167. type: string
  2168. type: object
  2169. serviceAccountRef:
  2170. description: Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Vault. If the service account selector is not supplied, the secretRef will be used instead.
  2171. properties:
  2172. name:
  2173. description: The name of the ServiceAccount resource being referred to.
  2174. type: string
  2175. namespace:
  2176. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2177. type: string
  2178. required:
  2179. - name
  2180. type: object
  2181. required:
  2182. - mountPath
  2183. - role
  2184. type: object
  2185. ldap:
  2186. description: Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method
  2187. properties:
  2188. path:
  2189. default: ldap
  2190. description: 'Path where the LDAP authentication backend is mounted in Vault, e.g: "ldap"'
  2191. type: string
  2192. secretRef:
  2193. description: SecretRef to a key in a Secret resource containing password for the LDAP user used to authenticate with Vault using the LDAP authentication method
  2194. properties:
  2195. key:
  2196. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2197. type: string
  2198. name:
  2199. description: The name of the Secret resource being referred to.
  2200. type: string
  2201. namespace:
  2202. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2203. type: string
  2204. type: object
  2205. username:
  2206. description: Username is a LDAP user name used to authenticate using the LDAP Vault authentication method
  2207. type: string
  2208. required:
  2209. - path
  2210. - username
  2211. type: object
  2212. tokenSecretRef:
  2213. description: TokenSecretRef authenticates with Vault by presenting a token.
  2214. properties:
  2215. key:
  2216. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2217. type: string
  2218. name:
  2219. description: The name of the Secret resource being referred to.
  2220. type: string
  2221. namespace:
  2222. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2223. type: string
  2224. type: object
  2225. type: object
  2226. caBundle:
  2227. description: PEM encoded CA bundle used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.
  2228. format: byte
  2229. type: string
  2230. caProvider:
  2231. description: The provider for the CA bundle to use to validate Vault server certificate.
  2232. properties:
  2233. key:
  2234. description: The key the value inside of the provider type to use, only used with "Secret" type
  2235. type: string
  2236. name:
  2237. description: The name of the object located at the provider type.
  2238. type: string
  2239. namespace:
  2240. description: The namespace the Provider type is in.
  2241. type: string
  2242. type:
  2243. description: The type of provider to use such as "Secret", or "ConfigMap".
  2244. enum:
  2245. - Secret
  2246. - ConfigMap
  2247. type: string
  2248. required:
  2249. - name
  2250. - type
  2251. type: object
  2252. forwardInconsistent:
  2253. description: ForwardInconsistent tells Vault to forward read-after-write requests to the Vault leader instead of simply retrying within a loop. This can increase performance if the option is enabled serverside. https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header
  2254. type: boolean
  2255. namespace:
  2256. description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1". More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces'
  2257. type: string
  2258. path:
  2259. description: 'Path is the mount path of the Vault KV backend endpoint, e.g: "secret". The v2 KV secret engine version specific "/data" path suffix for fetching secrets from Vault is optional and will be appended if not present in specified path.'
  2260. type: string
  2261. readYourWrites:
  2262. description: ReadYourWrites ensures isolated read-after-write semantics by providing discovered cluster replication states in each request. More information about eventual consistency in Vault can be found here https://www.vaultproject.io/docs/enterprise/consistency
  2263. type: boolean
  2264. server:
  2265. description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".'
  2266. type: string
  2267. version:
  2268. default: v2
  2269. description: Version is the Vault KV secret engine version. This can be either "v1" or "v2". Version defaults to "v2".
  2270. enum:
  2271. - v1
  2272. - v2
  2273. type: string
  2274. required:
  2275. - auth
  2276. - server
  2277. type: object
  2278. webhook:
  2279. description: Webhook configures this store to sync secrets using a generic templated webhook
  2280. properties:
  2281. body:
  2282. description: Body
  2283. type: string
  2284. caBundle:
  2285. description: PEM encoded CA bundle used to validate webhook server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.
  2286. format: byte
  2287. type: string
  2288. caProvider:
  2289. description: The provider for the CA bundle to use to validate webhook server certificate.
  2290. properties:
  2291. key:
  2292. description: The key the value inside of the provider type to use, only used with "Secret" type
  2293. type: string
  2294. name:
  2295. description: The name of the object located at the provider type.
  2296. type: string
  2297. namespace:
  2298. description: The namespace the Provider type is in.
  2299. type: string
  2300. type:
  2301. description: The type of provider to use such as "Secret", or "ConfigMap".
  2302. enum:
  2303. - Secret
  2304. - ConfigMap
  2305. type: string
  2306. required:
  2307. - name
  2308. - type
  2309. type: object
  2310. headers:
  2311. additionalProperties:
  2312. type: string
  2313. description: Headers
  2314. type: object
  2315. method:
  2316. description: Webhook Method
  2317. type: string
  2318. result:
  2319. description: Result formatting
  2320. properties:
  2321. jsonPath:
  2322. description: Json path of return value
  2323. type: string
  2324. type: object
  2325. secrets:
  2326. description: Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name
  2327. items:
  2328. properties:
  2329. name:
  2330. description: Name of this secret in templates
  2331. type: string
  2332. secretRef:
  2333. description: Secret ref to fill in credentials
  2334. properties:
  2335. key:
  2336. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2337. type: string
  2338. name:
  2339. description: The name of the Secret resource being referred to.
  2340. type: string
  2341. namespace:
  2342. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2343. type: string
  2344. type: object
  2345. required:
  2346. - name
  2347. - secretRef
  2348. type: object
  2349. type: array
  2350. timeout:
  2351. description: Timeout
  2352. type: string
  2353. url:
  2354. description: Webhook url to call
  2355. type: string
  2356. required:
  2357. - result
  2358. - url
  2359. type: object
  2360. yandexlockbox:
  2361. description: YandexLockbox configures this store to sync secrets using Yandex Lockbox provider
  2362. properties:
  2363. apiEndpoint:
  2364. description: Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')
  2365. type: string
  2366. auth:
  2367. description: Auth defines the information necessary to authenticate against Yandex Lockbox
  2368. properties:
  2369. authorizedKeySecretRef:
  2370. description: The authorized key used for authentication
  2371. properties:
  2372. key:
  2373. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2374. type: string
  2375. name:
  2376. description: The name of the Secret resource being referred to.
  2377. type: string
  2378. namespace:
  2379. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2380. type: string
  2381. type: object
  2382. type: object
  2383. caProvider:
  2384. description: The provider for the CA bundle to use to validate Yandex.Cloud server certificate.
  2385. properties:
  2386. certSecretRef:
  2387. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  2388. properties:
  2389. key:
  2390. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  2391. type: string
  2392. name:
  2393. description: The name of the Secret resource being referred to.
  2394. type: string
  2395. namespace:
  2396. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2397. type: string
  2398. type: object
  2399. type: object
  2400. required:
  2401. - auth
  2402. type: object
  2403. type: object
  2404. refreshInterval:
  2405. description: Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.
  2406. type: integer
  2407. retrySettings:
  2408. description: Used to configure http retries if failed
  2409. properties:
  2410. maxRetries:
  2411. format: int32
  2412. type: integer
  2413. retryInterval:
  2414. type: string
  2415. type: object
  2416. required:
  2417. - provider
  2418. type: object
  2419. status:
  2420. description: SecretStoreStatus defines the observed state of the SecretStore.
  2421. properties:
  2422. capabilities:
  2423. description: SecretStoreCapabilities defines the possible operations a SecretStore can do.
  2424. type: string
  2425. conditions:
  2426. items:
  2427. properties:
  2428. lastTransitionTime:
  2429. format: date-time
  2430. type: string
  2431. message:
  2432. type: string
  2433. reason:
  2434. type: string
  2435. status:
  2436. type: string
  2437. type:
  2438. type: string
  2439. required:
  2440. - status
  2441. - type
  2442. type: object
  2443. type: array
  2444. type: object
  2445. type: object
  2446. served: true
  2447. storage: true
  2448. subresources:
  2449. status: {}
  2450. conversion:
  2451. strategy: Webhook
  2452. webhook:
  2453. conversionReviewVersions:
  2454. - v1
  2455. clientConfig:
  2456. service:
  2457. name: kubernetes
  2458. namespace: default
  2459. path: /convert
  2460. status:
  2461. acceptedNames:
  2462. kind: ""
  2463. plural: ""
  2464. conditions: []
  2465. storedVersions: []
  2466. ---
  2467. apiVersion: apiextensions.k8s.io/v1
  2468. kind: CustomResourceDefinition
  2469. metadata:
  2470. annotations:
  2471. controller-gen.kubebuilder.io/version: v0.8.0
  2472. creationTimestamp: null
  2473. name: externalsecrets.external-secrets.io
  2474. spec:
  2475. group: external-secrets.io
  2476. names:
  2477. categories:
  2478. - externalsecrets
  2479. kind: ExternalSecret
  2480. listKind: ExternalSecretList
  2481. plural: externalsecrets
  2482. shortNames:
  2483. - es
  2484. singular: externalsecret
  2485. scope: Namespaced
  2486. versions:
  2487. - additionalPrinterColumns:
  2488. - jsonPath: .spec.secretStoreRef.name
  2489. name: Store
  2490. type: string
  2491. - jsonPath: .spec.refreshInterval
  2492. name: Refresh Interval
  2493. type: string
  2494. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  2495. name: Status
  2496. type: string
  2497. deprecated: true
  2498. name: v1alpha1
  2499. schema:
  2500. openAPIV3Schema:
  2501. description: ExternalSecret is the Schema for the external-secrets API.
  2502. properties:
  2503. apiVersion:
  2504. description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
  2505. type: string
  2506. kind:
  2507. description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
  2508. type: string
  2509. metadata:
  2510. type: object
  2511. spec:
  2512. description: ExternalSecretSpec defines the desired state of ExternalSecret.
  2513. properties:
  2514. data:
  2515. description: Data defines the connection between the Kubernetes Secret keys and the Provider data
  2516. items:
  2517. description: ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.
  2518. properties:
  2519. remoteRef:
  2520. description: ExternalSecretDataRemoteRef defines Provider data location.
  2521. properties:
  2522. conversionStrategy:
  2523. default: Default
  2524. description: Used to define a conversion Strategy
  2525. type: string
  2526. key:
  2527. description: Key is the key used in the Provider, mandatory
  2528. type: string
  2529. property:
  2530. description: Used to select a specific property of the Provider value (if a map), if supported
  2531. type: string
  2532. version:
  2533. description: Used to select a specific version of the Provider value, if supported
  2534. type: string
  2535. required:
  2536. - key
  2537. type: object
  2538. secretKey:
  2539. type: string
  2540. required:
  2541. - remoteRef
  2542. - secretKey
  2543. type: object
  2544. type: array
  2545. dataFrom:
  2546. description: DataFrom is used to fetch all properties from a specific Provider data If multiple entries are specified, the Secret keys are merged in the specified order
  2547. items:
  2548. description: ExternalSecretDataRemoteRef defines Provider data location.
  2549. properties:
  2550. conversionStrategy:
  2551. default: Default
  2552. description: Used to define a conversion Strategy
  2553. type: string
  2554. key:
  2555. description: Key is the key used in the Provider, mandatory
  2556. type: string
  2557. property:
  2558. description: Used to select a specific property of the Provider value (if a map), if supported
  2559. type: string
  2560. version:
  2561. description: Used to select a specific version of the Provider value, if supported
  2562. type: string
  2563. required:
  2564. - key
  2565. type: object
  2566. type: array
  2567. refreshInterval:
  2568. default: 1h
  2569. description: RefreshInterval is the amount of time before the values are read again from the SecretStore provider Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h" May be set to zero to fetch and create it once. Defaults to 1h.
  2570. type: string
  2571. secretStoreRef:
  2572. description: SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.
  2573. properties:
  2574. kind:
  2575. description: Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`
  2576. type: string
  2577. name:
  2578. description: Name of the SecretStore resource
  2579. type: string
  2580. required:
  2581. - name
  2582. type: object
  2583. target:
  2584. description: ExternalSecretTarget defines the Kubernetes Secret to be created There can be only one target per ExternalSecret.
  2585. properties:
  2586. creationPolicy:
  2587. default: Owner
  2588. description: CreationPolicy defines rules on how to create the resulting Secret Defaults to 'Owner'
  2589. type: string
  2590. immutable:
  2591. description: Immutable defines if the final secret will be immutable
  2592. type: boolean
  2593. name:
  2594. description: Name defines the name of the Secret resource to be managed This field is immutable Defaults to the .metadata.name of the ExternalSecret resource
  2595. type: string
  2596. template:
  2597. description: Template defines a blueprint for the created Secret resource.
  2598. properties:
  2599. data:
  2600. additionalProperties:
  2601. type: string
  2602. type: object
  2603. engineVersion:
  2604. default: v1
  2605. description: EngineVersion specifies the template engine version that should be used to compile/execute the template specified in .data and .templateFrom[].
  2606. type: string
  2607. metadata:
  2608. description: ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.
  2609. properties:
  2610. annotations:
  2611. additionalProperties:
  2612. type: string
  2613. type: object
  2614. labels:
  2615. additionalProperties:
  2616. type: string
  2617. type: object
  2618. type: object
  2619. templateFrom:
  2620. items:
  2621. maxProperties: 1
  2622. minProperties: 1
  2623. properties:
  2624. configMap:
  2625. properties:
  2626. items:
  2627. items:
  2628. properties:
  2629. key:
  2630. type: string
  2631. required:
  2632. - key
  2633. type: object
  2634. type: array
  2635. name:
  2636. type: string
  2637. required:
  2638. - items
  2639. - name
  2640. type: object
  2641. secret:
  2642. properties:
  2643. items:
  2644. items:
  2645. properties:
  2646. key:
  2647. type: string
  2648. required:
  2649. - key
  2650. type: object
  2651. type: array
  2652. name:
  2653. type: string
  2654. required:
  2655. - items
  2656. - name
  2657. type: object
  2658. type: object
  2659. type: array
  2660. type:
  2661. type: string
  2662. type: object
  2663. type: object
  2664. required:
  2665. - secretStoreRef
  2666. - target
  2667. type: object
  2668. status:
  2669. properties:
  2670. conditions:
  2671. items:
  2672. properties:
  2673. lastTransitionTime:
  2674. format: date-time
  2675. type: string
  2676. message:
  2677. type: string
  2678. reason:
  2679. type: string
  2680. status:
  2681. type: string
  2682. type:
  2683. type: string
  2684. required:
  2685. - status
  2686. - type
  2687. type: object
  2688. type: array
  2689. refreshTime:
  2690. description: refreshTime is the time and date the external secret was fetched and the target secret updated
  2691. format: date-time
  2692. nullable: true
  2693. type: string
  2694. syncedResourceVersion:
  2695. description: SyncedResourceVersion keeps track of the last synced version
  2696. type: string
  2697. type: object
  2698. type: object
  2699. served: true
  2700. storage: false
  2701. subresources:
  2702. status: {}
  2703. - additionalPrinterColumns:
  2704. - jsonPath: .spec.secretStoreRef.name
  2705. name: Store
  2706. type: string
  2707. - jsonPath: .spec.refreshInterval
  2708. name: Refresh Interval
  2709. type: string
  2710. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  2711. name: Status
  2712. type: string
  2713. name: v1beta1
  2714. schema:
  2715. openAPIV3Schema:
  2716. description: ExternalSecret is the Schema for the external-secrets API.
  2717. properties:
  2718. apiVersion:
  2719. description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
  2720. type: string
  2721. kind:
  2722. description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
  2723. type: string
  2724. metadata:
  2725. type: object
  2726. spec:
  2727. description: ExternalSecretSpec defines the desired state of ExternalSecret.
  2728. properties:
  2729. data:
  2730. description: Data defines the connection between the Kubernetes Secret keys and the Provider data
  2731. items:
  2732. description: ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.
  2733. properties:
  2734. remoteRef:
  2735. description: ExternalSecretDataRemoteRef defines Provider data location.
  2736. properties:
  2737. conversionStrategy:
  2738. default: Default
  2739. description: Used to define a conversion Strategy
  2740. type: string
  2741. key:
  2742. description: Key is the key used in the Provider, mandatory
  2743. type: string
  2744. property:
  2745. description: Used to select a specific property of the Provider value (if a map), if supported
  2746. type: string
  2747. version:
  2748. description: Used to select a specific version of the Provider value, if supported
  2749. type: string
  2750. required:
  2751. - key
  2752. type: object
  2753. secretKey:
  2754. type: string
  2755. required:
  2756. - remoteRef
  2757. - secretKey
  2758. type: object
  2759. type: array
  2760. dataFrom:
  2761. description: DataFrom is used to fetch all properties from a specific Provider data If multiple entries are specified, the Secret keys are merged in the specified order
  2762. items:
  2763. maxProperties: 1
  2764. minProperties: 1
  2765. properties:
  2766. extract:
  2767. description: Used to extract multiple key/value pairs from one secret
  2768. properties:
  2769. conversionStrategy:
  2770. default: Default
  2771. description: Used to define a conversion Strategy
  2772. type: string
  2773. key:
  2774. description: Key is the key used in the Provider, mandatory
  2775. type: string
  2776. property:
  2777. description: Used to select a specific property of the Provider value (if a map), if supported
  2778. type: string
  2779. version:
  2780. description: Used to select a specific version of the Provider value, if supported
  2781. type: string
  2782. required:
  2783. - key
  2784. type: object
  2785. find:
  2786. description: Used to find secrets based on tags or regular expressions
  2787. properties:
  2788. conversionStrategy:
  2789. default: Default
  2790. description: Used to define a conversion Strategy
  2791. type: string
  2792. name:
  2793. description: Finds secrets based on the name.
  2794. properties:
  2795. regexp:
  2796. description: Finds secrets base
  2797. type: string
  2798. type: object
  2799. path:
  2800. description: A root path to start the find operations.
  2801. type: string
  2802. tags:
  2803. additionalProperties:
  2804. type: string
  2805. description: Find secrets based on tags.
  2806. type: object
  2807. type: object
  2808. type: object
  2809. type: array
  2810. refreshInterval:
  2811. default: 1h
  2812. description: RefreshInterval is the amount of time before the values are read again from the SecretStore provider Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h" May be set to zero to fetch and create it once. Defaults to 1h.
  2813. type: string
  2814. secretStoreRef:
  2815. description: SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.
  2816. properties:
  2817. kind:
  2818. description: Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`
  2819. type: string
  2820. name:
  2821. description: Name of the SecretStore resource
  2822. type: string
  2823. required:
  2824. - name
  2825. type: object
  2826. target:
  2827. description: ExternalSecretTarget defines the Kubernetes Secret to be created There can be only one target per ExternalSecret.
  2828. properties:
  2829. creationPolicy:
  2830. default: Owner
  2831. description: CreationPolicy defines rules on how to create the resulting Secret Defaults to 'Owner'
  2832. enum:
  2833. - Owner
  2834. - Orphan
  2835. - Merge
  2836. - None
  2837. type: string
  2838. deletionPolicy:
  2839. default: Retain
  2840. description: DeletionPolicy defines rules on how to delete the resulting Secret Defaults to 'Retain'
  2841. enum:
  2842. - Delete
  2843. - Merge
  2844. - Retain
  2845. type: string
  2846. immutable:
  2847. description: Immutable defines if the final secret will be immutable
  2848. type: boolean
  2849. name:
  2850. description: Name defines the name of the Secret resource to be managed This field is immutable Defaults to the .metadata.name of the ExternalSecret resource
  2851. type: string
  2852. template:
  2853. description: Template defines a blueprint for the created Secret resource.
  2854. properties:
  2855. data:
  2856. additionalProperties:
  2857. type: string
  2858. type: object
  2859. engineVersion:
  2860. default: v2
  2861. type: string
  2862. metadata:
  2863. description: ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.
  2864. properties:
  2865. annotations:
  2866. additionalProperties:
  2867. type: string
  2868. type: object
  2869. labels:
  2870. additionalProperties:
  2871. type: string
  2872. type: object
  2873. type: object
  2874. templateFrom:
  2875. items:
  2876. maxProperties: 1
  2877. minProperties: 1
  2878. properties:
  2879. configMap:
  2880. properties:
  2881. items:
  2882. items:
  2883. properties:
  2884. key:
  2885. type: string
  2886. required:
  2887. - key
  2888. type: object
  2889. type: array
  2890. name:
  2891. type: string
  2892. required:
  2893. - items
  2894. - name
  2895. type: object
  2896. secret:
  2897. properties:
  2898. items:
  2899. items:
  2900. properties:
  2901. key:
  2902. type: string
  2903. required:
  2904. - key
  2905. type: object
  2906. type: array
  2907. name:
  2908. type: string
  2909. required:
  2910. - items
  2911. - name
  2912. type: object
  2913. type: object
  2914. type: array
  2915. type:
  2916. type: string
  2917. type: object
  2918. type: object
  2919. required:
  2920. - secretStoreRef
  2921. type: object
  2922. status:
  2923. properties:
  2924. conditions:
  2925. items:
  2926. properties:
  2927. lastTransitionTime:
  2928. format: date-time
  2929. type: string
  2930. message:
  2931. type: string
  2932. reason:
  2933. type: string
  2934. status:
  2935. type: string
  2936. type:
  2937. type: string
  2938. required:
  2939. - status
  2940. - type
  2941. type: object
  2942. type: array
  2943. refreshTime:
  2944. description: refreshTime is the time and date the external secret was fetched and the target secret updated
  2945. format: date-time
  2946. nullable: true
  2947. type: string
  2948. syncedResourceVersion:
  2949. description: SyncedResourceVersion keeps track of the last synced version
  2950. type: string
  2951. type: object
  2952. type: object
  2953. served: true
  2954. storage: true
  2955. subresources:
  2956. status: {}
  2957. conversion:
  2958. strategy: Webhook
  2959. webhook:
  2960. conversionReviewVersions:
  2961. - v1
  2962. clientConfig:
  2963. service:
  2964. name: kubernetes
  2965. namespace: default
  2966. path: /convert
  2967. status:
  2968. acceptedNames:
  2969. kind: ""
  2970. plural: ""
  2971. conditions: []
  2972. storedVersions: []
  2973. ---
  2974. apiVersion: apiextensions.k8s.io/v1
  2975. kind: CustomResourceDefinition
  2976. metadata:
  2977. annotations:
  2978. controller-gen.kubebuilder.io/version: v0.8.0
  2979. creationTimestamp: null
  2980. name: secretsinks.external-secrets.io
  2981. spec:
  2982. group: external-secrets.io
  2983. names:
  2984. categories:
  2985. - secretsinks
  2986. kind: SecretSink
  2987. listKind: SecretSinkList
  2988. plural: secretsinks
  2989. singular: secretsink
  2990. scope: Namespaced
  2991. versions:
  2992. - additionalPrinterColumns:
  2993. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  2994. name: Status
  2995. type: string
  2996. name: v1alpha1
  2997. schema:
  2998. openAPIV3Schema:
  2999. properties:
  3000. apiVersion:
  3001. description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
  3002. type: string
  3003. kind:
  3004. description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
  3005. type: string
  3006. metadata:
  3007. type: object
  3008. spec:
  3009. description: SecretSinkSpec configures the behavior of the SecretSink.
  3010. properties:
  3011. data:
  3012. items:
  3013. properties:
  3014. match:
  3015. items:
  3016. properties:
  3017. remoteRefs:
  3018. items:
  3019. properties:
  3020. remoteKey:
  3021. type: string
  3022. required:
  3023. - remoteKey
  3024. type: object
  3025. type: array
  3026. secretKey:
  3027. type: string
  3028. required:
  3029. - remoteRefs
  3030. - secretKey
  3031. type: object
  3032. type: array
  3033. required:
  3034. - match
  3035. type: object
  3036. type: array
  3037. secretStoreRefs:
  3038. items:
  3039. properties:
  3040. kind:
  3041. description: Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`
  3042. type: string
  3043. name:
  3044. description: Name of the SecretStore resource
  3045. type: string
  3046. required:
  3047. - name
  3048. type: object
  3049. type: array
  3050. selector:
  3051. properties:
  3052. secret:
  3053. properties:
  3054. name:
  3055. type: string
  3056. required:
  3057. - name
  3058. type: object
  3059. required:
  3060. - secret
  3061. type: object
  3062. required:
  3063. - secretStoreRefs
  3064. - selector
  3065. type: object
  3066. status:
  3067. description: SecretSinkStatus indicates the history of the status of SecretSink.
  3068. properties:
  3069. conditions:
  3070. items:
  3071. description: SecretSinkStatusCondition indicates the status of the SecretSink.
  3072. properties:
  3073. lastTransitionTime:
  3074. format: date-time
  3075. type: string
  3076. message:
  3077. type: string
  3078. reason:
  3079. type: string
  3080. status:
  3081. type: string
  3082. type:
  3083. description: SecretSinkConditionType indicates the condition of the SecretSink.
  3084. type: string
  3085. required:
  3086. - status
  3087. - type
  3088. type: object
  3089. type: array
  3090. refreshTime:
  3091. description: refreshTime is the time and date the external secret was fetched and the target secret updated
  3092. format: date-time
  3093. nullable: true
  3094. type: string
  3095. syncedResourceVersion:
  3096. description: SyncedResourceVersion keeps track of the last synced version.
  3097. type: string
  3098. type: object
  3099. type: object
  3100. served: true
  3101. storage: true
  3102. subresources:
  3103. status: {}
  3104. conversion:
  3105. strategy: Webhook
  3106. webhook:
  3107. conversionReviewVersions:
  3108. - v1
  3109. clientConfig:
  3110. service:
  3111. name: kubernetes
  3112. namespace: default
  3113. path: /convert
  3114. status:
  3115. acceptedNames:
  3116. kind: ""
  3117. plural: ""
  3118. conditions: []
  3119. storedVersions: []
  3120. ---
  3121. apiVersion: apiextensions.k8s.io/v1
  3122. kind: CustomResourceDefinition
  3123. metadata:
  3124. annotations:
  3125. controller-gen.kubebuilder.io/version: v0.8.0
  3126. creationTimestamp: null
  3127. name: secretstores.external-secrets.io
  3128. spec:
  3129. group: external-secrets.io
  3130. names:
  3131. categories:
  3132. - externalsecrets
  3133. kind: SecretStore
  3134. listKind: SecretStoreList
  3135. plural: secretstores
  3136. shortNames:
  3137. - ss
  3138. singular: secretstore
  3139. scope: Namespaced
  3140. versions:
  3141. - additionalPrinterColumns:
  3142. - jsonPath: .metadata.creationTimestamp
  3143. name: AGE
  3144. type: date
  3145. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  3146. name: Status
  3147. type: string
  3148. deprecated: true
  3149. name: v1alpha1
  3150. schema:
  3151. openAPIV3Schema:
  3152. description: SecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
  3153. properties:
  3154. apiVersion:
  3155. description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
  3156. type: string
  3157. kind:
  3158. description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
  3159. type: string
  3160. metadata:
  3161. type: object
  3162. spec:
  3163. description: SecretStoreSpec defines the desired state of SecretStore.
  3164. properties:
  3165. controller:
  3166. description: 'Used to select the correct KES controller (think: ingress.ingressClassName) The KES controller is instantiated with a specific controller name and filters ES based on this property'
  3167. type: string
  3168. provider:
  3169. description: Used to configure the provider. Only one provider may be set
  3170. maxProperties: 1
  3171. minProperties: 1
  3172. properties:
  3173. akeyless:
  3174. description: Akeyless configures this store to sync secrets using Akeyless Vault provider
  3175. properties:
  3176. akeylessGWApiURL:
  3177. description: Akeyless GW API Url from which the secrets to be fetched from.
  3178. type: string
  3179. authSecretRef:
  3180. description: Auth configures how the operator authenticates with Akeyless.
  3181. properties:
  3182. secretRef:
  3183. description: 'AkeylessAuthSecretRef AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.'
  3184. properties:
  3185. accessID:
  3186. description: The SecretAccessID is used for authentication
  3187. properties:
  3188. key:
  3189. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3190. type: string
  3191. name:
  3192. description: The name of the Secret resource being referred to.
  3193. type: string
  3194. namespace:
  3195. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3196. type: string
  3197. type: object
  3198. accessType:
  3199. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3200. properties:
  3201. key:
  3202. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3203. type: string
  3204. name:
  3205. description: The name of the Secret resource being referred to.
  3206. type: string
  3207. namespace:
  3208. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3209. type: string
  3210. type: object
  3211. accessTypeParam:
  3212. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3213. properties:
  3214. key:
  3215. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3216. type: string
  3217. name:
  3218. description: The name of the Secret resource being referred to.
  3219. type: string
  3220. namespace:
  3221. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3222. type: string
  3223. type: object
  3224. type: object
  3225. required:
  3226. - secretRef
  3227. type: object
  3228. required:
  3229. - akeylessGWApiURL
  3230. - authSecretRef
  3231. type: object
  3232. alibaba:
  3233. description: Alibaba configures this store to sync secrets using Alibaba Cloud provider
  3234. properties:
  3235. auth:
  3236. description: AlibabaAuth contains a secretRef for credentials.
  3237. properties:
  3238. secretRef:
  3239. description: AlibabaAuthSecretRef holds secret references for Alibaba credentials.
  3240. properties:
  3241. accessKeyIDSecretRef:
  3242. description: The AccessKeyID is used for authentication
  3243. properties:
  3244. key:
  3245. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3246. type: string
  3247. name:
  3248. description: The name of the Secret resource being referred to.
  3249. type: string
  3250. namespace:
  3251. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3252. type: string
  3253. type: object
  3254. accessKeySecretSecretRef:
  3255. description: The AccessKeySecret is used for authentication
  3256. properties:
  3257. key:
  3258. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3259. type: string
  3260. name:
  3261. description: The name of the Secret resource being referred to.
  3262. type: string
  3263. namespace:
  3264. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3265. type: string
  3266. type: object
  3267. required:
  3268. - accessKeyIDSecretRef
  3269. - accessKeySecretSecretRef
  3270. type: object
  3271. required:
  3272. - secretRef
  3273. type: object
  3274. endpoint:
  3275. type: string
  3276. regionID:
  3277. description: Alibaba Region to be used for the provider
  3278. type: string
  3279. required:
  3280. - auth
  3281. - regionID
  3282. type: object
  3283. aws:
  3284. description: AWS configures this store to sync secrets using AWS Secret Manager provider
  3285. properties:
  3286. auth:
  3287. description: 'Auth defines the information necessary to authenticate against AWS if not set aws sdk will infer credentials from your environment see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
  3288. properties:
  3289. jwt:
  3290. description: Authenticate against AWS using service account tokens.
  3291. properties:
  3292. serviceAccountRef:
  3293. description: A reference to a ServiceAccount resource.
  3294. properties:
  3295. name:
  3296. description: The name of the ServiceAccount resource being referred to.
  3297. type: string
  3298. namespace:
  3299. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3300. type: string
  3301. required:
  3302. - name
  3303. type: object
  3304. type: object
  3305. secretRef:
  3306. description: AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.
  3307. properties:
  3308. accessKeyIDSecretRef:
  3309. description: The AccessKeyID is used for authentication
  3310. properties:
  3311. key:
  3312. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3313. type: string
  3314. name:
  3315. description: The name of the Secret resource being referred to.
  3316. type: string
  3317. namespace:
  3318. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3319. type: string
  3320. type: object
  3321. secretAccessKeySecretRef:
  3322. description: The SecretAccessKey is used for authentication
  3323. properties:
  3324. key:
  3325. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3326. type: string
  3327. name:
  3328. description: The name of the Secret resource being referred to.
  3329. type: string
  3330. namespace:
  3331. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3332. type: string
  3333. type: object
  3334. type: object
  3335. type: object
  3336. region:
  3337. description: AWS Region to be used for the provider
  3338. type: string
  3339. role:
  3340. description: Role is a Role ARN which the SecretManager provider will assume
  3341. type: string
  3342. service:
  3343. description: Service defines which service should be used to fetch the secrets
  3344. enum:
  3345. - SecretsManager
  3346. - ParameterStore
  3347. type: string
  3348. required:
  3349. - region
  3350. - service
  3351. type: object
  3352. azurekv:
  3353. description: AzureKV configures this store to sync secrets using Azure Key Vault provider
  3354. properties:
  3355. authSecretRef:
  3356. description: Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.
  3357. properties:
  3358. clientId:
  3359. description: The Azure clientId of the service principle used for authentication.
  3360. properties:
  3361. key:
  3362. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3363. type: string
  3364. name:
  3365. description: The name of the Secret resource being referred to.
  3366. type: string
  3367. namespace:
  3368. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3369. type: string
  3370. type: object
  3371. clientSecret:
  3372. description: The Azure ClientSecret of the service principle used for authentication.
  3373. properties:
  3374. key:
  3375. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3376. type: string
  3377. name:
  3378. description: The name of the Secret resource being referred to.
  3379. type: string
  3380. namespace:
  3381. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3382. type: string
  3383. type: object
  3384. type: object
  3385. authType:
  3386. default: ServicePrincipal
  3387. description: 'Auth type defines how to authenticate to the keyvault service. Valid values are: - "ServicePrincipal" (default): Using a service principal (tenantId, clientId, clientSecret) - "ManagedIdentity": Using Managed Identity assigned to the pod (see aad-pod-identity)'
  3388. enum:
  3389. - ServicePrincipal
  3390. - ManagedIdentity
  3391. - WorkloadIdentity
  3392. type: string
  3393. identityId:
  3394. description: If multiple Managed Identity is assigned to the pod, you can select the one to be used
  3395. type: string
  3396. serviceAccountRef:
  3397. description: ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.
  3398. properties:
  3399. name:
  3400. description: The name of the ServiceAccount resource being referred to.
  3401. type: string
  3402. namespace:
  3403. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3404. type: string
  3405. required:
  3406. - name
  3407. type: object
  3408. tenantId:
  3409. description: TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.
  3410. type: string
  3411. vaultUrl:
  3412. description: Vault Url from which the secrets to be fetched from.
  3413. type: string
  3414. required:
  3415. - vaultUrl
  3416. type: object
  3417. fake:
  3418. description: Fake configures a store with static key/value pairs
  3419. properties:
  3420. data:
  3421. items:
  3422. properties:
  3423. key:
  3424. type: string
  3425. value:
  3426. type: string
  3427. valueMap:
  3428. additionalProperties:
  3429. type: string
  3430. type: object
  3431. version:
  3432. type: string
  3433. required:
  3434. - key
  3435. type: object
  3436. type: array
  3437. required:
  3438. - data
  3439. type: object
  3440. gcpsm:
  3441. description: GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider
  3442. properties:
  3443. auth:
  3444. description: Auth defines the information necessary to authenticate against GCP
  3445. properties:
  3446. secretRef:
  3447. properties:
  3448. secretAccessKeySecretRef:
  3449. description: The SecretAccessKey is used for authentication
  3450. properties:
  3451. key:
  3452. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3453. type: string
  3454. name:
  3455. description: The name of the Secret resource being referred to.
  3456. type: string
  3457. namespace:
  3458. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3459. type: string
  3460. type: object
  3461. type: object
  3462. workloadIdentity:
  3463. properties:
  3464. clusterLocation:
  3465. type: string
  3466. clusterName:
  3467. type: string
  3468. clusterProjectID:
  3469. type: string
  3470. serviceAccountRef:
  3471. description: A reference to a ServiceAccount resource.
  3472. properties:
  3473. name:
  3474. description: The name of the ServiceAccount resource being referred to.
  3475. type: string
  3476. namespace:
  3477. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3478. type: string
  3479. required:
  3480. - name
  3481. type: object
  3482. required:
  3483. - clusterLocation
  3484. - clusterName
  3485. - serviceAccountRef
  3486. type: object
  3487. type: object
  3488. projectID:
  3489. description: ProjectID project where secret is located
  3490. type: string
  3491. type: object
  3492. gitlab:
  3493. description: Gitlab configures this store to sync secrets using Gitlab Variables provider
  3494. properties:
  3495. auth:
  3496. description: Auth configures how secret-manager authenticates with a GitLab instance.
  3497. properties:
  3498. SecretRef:
  3499. properties:
  3500. accessToken:
  3501. description: AccessToken is used for authentication.
  3502. properties:
  3503. key:
  3504. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3505. type: string
  3506. name:
  3507. description: The name of the Secret resource being referred to.
  3508. type: string
  3509. namespace:
  3510. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3511. type: string
  3512. type: object
  3513. type: object
  3514. required:
  3515. - SecretRef
  3516. type: object
  3517. projectID:
  3518. description: ProjectID specifies a project where secrets are located.
  3519. type: string
  3520. url:
  3521. description: URL configures the GitLab instance URL. Defaults to https://gitlab.com/.
  3522. type: string
  3523. required:
  3524. - auth
  3525. type: object
  3526. ibm:
  3527. description: IBM configures this store to sync secrets using IBM Cloud provider
  3528. properties:
  3529. auth:
  3530. description: Auth configures how secret-manager authenticates with the IBM secrets manager.
  3531. properties:
  3532. secretRef:
  3533. properties:
  3534. secretApiKeySecretRef:
  3535. description: The SecretAccessKey is used for authentication
  3536. properties:
  3537. key:
  3538. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3539. type: string
  3540. name:
  3541. description: The name of the Secret resource being referred to.
  3542. type: string
  3543. namespace:
  3544. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3545. type: string
  3546. type: object
  3547. type: object
  3548. required:
  3549. - secretRef
  3550. type: object
  3551. serviceUrl:
  3552. description: ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance
  3553. type: string
  3554. required:
  3555. - auth
  3556. type: object
  3557. kubernetes:
  3558. description: Kubernetes configures this store to sync secrets using a Kubernetes cluster provider
  3559. properties:
  3560. auth:
  3561. description: Auth configures how secret-manager authenticates with a Kubernetes instance.
  3562. maxProperties: 1
  3563. minProperties: 1
  3564. properties:
  3565. cert:
  3566. description: has both clientCert and clientKey as secretKeySelector
  3567. properties:
  3568. clientCert:
  3569. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3570. properties:
  3571. key:
  3572. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3573. type: string
  3574. name:
  3575. description: The name of the Secret resource being referred to.
  3576. type: string
  3577. namespace:
  3578. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3579. type: string
  3580. type: object
  3581. clientKey:
  3582. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3583. properties:
  3584. key:
  3585. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3586. type: string
  3587. name:
  3588. description: The name of the Secret resource being referred to.
  3589. type: string
  3590. namespace:
  3591. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3592. type: string
  3593. type: object
  3594. type: object
  3595. serviceAccount:
  3596. description: points to a service account that should be used for authentication
  3597. properties:
  3598. serviceAccount:
  3599. description: A reference to a ServiceAccount resource.
  3600. properties:
  3601. name:
  3602. description: The name of the ServiceAccount resource being referred to.
  3603. type: string
  3604. namespace:
  3605. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3606. type: string
  3607. required:
  3608. - name
  3609. type: object
  3610. type: object
  3611. token:
  3612. description: use static token to authenticate with
  3613. properties:
  3614. bearerToken:
  3615. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3616. properties:
  3617. key:
  3618. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3619. type: string
  3620. name:
  3621. description: The name of the Secret resource being referred to.
  3622. type: string
  3623. namespace:
  3624. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3625. type: string
  3626. type: object
  3627. type: object
  3628. type: object
  3629. remoteNamespace:
  3630. default: default
  3631. description: Remote namespace to fetch the secrets from
  3632. type: string
  3633. server:
  3634. description: configures the Kubernetes server Address.
  3635. properties:
  3636. caBundle:
  3637. description: CABundle is a base64-encoded CA certificate
  3638. format: byte
  3639. type: string
  3640. caProvider:
  3641. description: 'see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider'
  3642. properties:
  3643. key:
  3644. description: The key the value inside of the provider type to use, only used with "Secret" type
  3645. type: string
  3646. name:
  3647. description: The name of the object located at the provider type.
  3648. type: string
  3649. namespace:
  3650. description: The namespace the Provider type is in.
  3651. type: string
  3652. type:
  3653. description: The type of provider to use such as "Secret", or "ConfigMap".
  3654. enum:
  3655. - Secret
  3656. - ConfigMap
  3657. type: string
  3658. required:
  3659. - name
  3660. - type
  3661. type: object
  3662. url:
  3663. default: kubernetes.default
  3664. description: configures the Kubernetes server Address.
  3665. type: string
  3666. type: object
  3667. required:
  3668. - auth
  3669. type: object
  3670. oracle:
  3671. description: Oracle configures this store to sync secrets using Oracle Vault provider
  3672. properties:
  3673. auth:
  3674. description: Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.
  3675. properties:
  3676. secretRef:
  3677. description: SecretRef to pass through sensitive information.
  3678. properties:
  3679. fingerprint:
  3680. description: Fingerprint is the fingerprint of the API private key.
  3681. properties:
  3682. key:
  3683. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3684. type: string
  3685. name:
  3686. description: The name of the Secret resource being referred to.
  3687. type: string
  3688. namespace:
  3689. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3690. type: string
  3691. type: object
  3692. privatekey:
  3693. description: PrivateKey is the user's API Signing Key in PEM format, used for authentication.
  3694. properties:
  3695. key:
  3696. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3697. type: string
  3698. name:
  3699. description: The name of the Secret resource being referred to.
  3700. type: string
  3701. namespace:
  3702. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3703. type: string
  3704. type: object
  3705. required:
  3706. - fingerprint
  3707. - privatekey
  3708. type: object
  3709. tenancy:
  3710. description: Tenancy is the tenancy OCID where user is located.
  3711. type: string
  3712. user:
  3713. description: User is an access OCID specific to the account.
  3714. type: string
  3715. required:
  3716. - secretRef
  3717. - tenancy
  3718. - user
  3719. type: object
  3720. region:
  3721. description: Region is the region where vault is located.
  3722. type: string
  3723. vault:
  3724. description: Vault is the vault's OCID of the specific vault where secret is located.
  3725. type: string
  3726. required:
  3727. - region
  3728. - vault
  3729. type: object
  3730. vault:
  3731. description: Vault configures this store to sync secrets using Hashi provider
  3732. properties:
  3733. auth:
  3734. description: Auth configures how secret-manager authenticates with the Vault server.
  3735. properties:
  3736. appRole:
  3737. description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.
  3738. properties:
  3739. path:
  3740. default: approle
  3741. description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"'
  3742. type: string
  3743. roleId:
  3744. description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.
  3745. type: string
  3746. secretRef:
  3747. description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret.
  3748. properties:
  3749. key:
  3750. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3751. type: string
  3752. name:
  3753. description: The name of the Secret resource being referred to.
  3754. type: string
  3755. namespace:
  3756. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3757. type: string
  3758. type: object
  3759. required:
  3760. - path
  3761. - roleId
  3762. - secretRef
  3763. type: object
  3764. cert:
  3765. description: Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method
  3766. properties:
  3767. clientCert:
  3768. description: ClientCert is a certificate to authenticate using the Cert Vault authentication method
  3769. properties:
  3770. key:
  3771. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3772. type: string
  3773. name:
  3774. description: The name of the Secret resource being referred to.
  3775. type: string
  3776. namespace:
  3777. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3778. type: string
  3779. type: object
  3780. secretRef:
  3781. description: SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method
  3782. properties:
  3783. key:
  3784. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3785. type: string
  3786. name:
  3787. description: The name of the Secret resource being referred to.
  3788. type: string
  3789. namespace:
  3790. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3791. type: string
  3792. type: object
  3793. type: object
  3794. jwt:
  3795. description: Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method
  3796. properties:
  3797. kubernetesServiceAccountToken:
  3798. description: Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.
  3799. properties:
  3800. audiences:
  3801. description: Optional audiences field that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to a single audience `vault` it not specified.
  3802. items:
  3803. type: string
  3804. type: array
  3805. expirationSeconds:
  3806. description: Optional expiration time in seconds that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to 10 minutes.
  3807. format: int64
  3808. type: integer
  3809. serviceAccountRef:
  3810. description: Service account field containing the name of a kubernetes ServiceAccount.
  3811. properties:
  3812. name:
  3813. description: The name of the ServiceAccount resource being referred to.
  3814. type: string
  3815. namespace:
  3816. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3817. type: string
  3818. required:
  3819. - name
  3820. type: object
  3821. required:
  3822. - serviceAccountRef
  3823. type: object
  3824. path:
  3825. default: jwt
  3826. description: 'Path where the JWT authentication backend is mounted in Vault, e.g: "jwt"'
  3827. type: string
  3828. role:
  3829. description: Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method
  3830. type: string
  3831. secretRef:
  3832. description: Optional SecretRef that refers to a key in a Secret resource containing JWT token to authenticate with Vault using the JWT/OIDC authentication method.
  3833. properties:
  3834. key:
  3835. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3836. type: string
  3837. name:
  3838. description: The name of the Secret resource being referred to.
  3839. type: string
  3840. namespace:
  3841. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3842. type: string
  3843. type: object
  3844. required:
  3845. - path
  3846. type: object
  3847. kubernetes:
  3848. description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.
  3849. properties:
  3850. mountPath:
  3851. default: kubernetes
  3852. description: 'Path where the Kubernetes authentication backend is mounted in Vault, e.g: "kubernetes"'
  3853. type: string
  3854. role:
  3855. description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.
  3856. type: string
  3857. secretRef:
  3858. description: Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.
  3859. properties:
  3860. key:
  3861. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3862. type: string
  3863. name:
  3864. description: The name of the Secret resource being referred to.
  3865. type: string
  3866. namespace:
  3867. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3868. type: string
  3869. type: object
  3870. serviceAccountRef:
  3871. description: Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Vault. If the service account selector is not supplied, the secretRef will be used instead.
  3872. properties:
  3873. name:
  3874. description: The name of the ServiceAccount resource being referred to.
  3875. type: string
  3876. namespace:
  3877. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3878. type: string
  3879. required:
  3880. - name
  3881. type: object
  3882. required:
  3883. - mountPath
  3884. - role
  3885. type: object
  3886. ldap:
  3887. description: Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method
  3888. properties:
  3889. path:
  3890. default: ldap
  3891. description: 'Path where the LDAP authentication backend is mounted in Vault, e.g: "ldap"'
  3892. type: string
  3893. secretRef:
  3894. description: SecretRef to a key in a Secret resource containing password for the LDAP user used to authenticate with Vault using the LDAP authentication method
  3895. properties:
  3896. key:
  3897. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3898. type: string
  3899. name:
  3900. description: The name of the Secret resource being referred to.
  3901. type: string
  3902. namespace:
  3903. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3904. type: string
  3905. type: object
  3906. username:
  3907. description: Username is a LDAP user name used to authenticate using the LDAP Vault authentication method
  3908. type: string
  3909. required:
  3910. - path
  3911. - username
  3912. type: object
  3913. tokenSecretRef:
  3914. description: TokenSecretRef authenticates with Vault by presenting a token.
  3915. properties:
  3916. key:
  3917. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  3918. type: string
  3919. name:
  3920. description: The name of the Secret resource being referred to.
  3921. type: string
  3922. namespace:
  3923. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3924. type: string
  3925. type: object
  3926. type: object
  3927. caBundle:
  3928. description: PEM encoded CA bundle used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.
  3929. format: byte
  3930. type: string
  3931. caProvider:
  3932. description: The provider for the CA bundle to use to validate Vault server certificate.
  3933. properties:
  3934. key:
  3935. description: The key the value inside of the provider type to use, only used with "Secret" type
  3936. type: string
  3937. name:
  3938. description: The name of the object located at the provider type.
  3939. type: string
  3940. namespace:
  3941. description: The namespace the Provider type is in.
  3942. type: string
  3943. type:
  3944. description: The type of provider to use such as "Secret", or "ConfigMap".
  3945. enum:
  3946. - Secret
  3947. - ConfigMap
  3948. type: string
  3949. required:
  3950. - name
  3951. - type
  3952. type: object
  3953. forwardInconsistent:
  3954. description: ForwardInconsistent tells Vault to forward read-after-write requests to the Vault leader instead of simply retrying within a loop. This can increase performance if the option is enabled serverside. https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header
  3955. type: boolean
  3956. namespace:
  3957. description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1". More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces'
  3958. type: string
  3959. path:
  3960. description: 'Path is the mount path of the Vault KV backend endpoint, e.g: "secret". The v2 KV secret engine version specific "/data" path suffix for fetching secrets from Vault is optional and will be appended if not present in specified path.'
  3961. type: string
  3962. readYourWrites:
  3963. description: ReadYourWrites ensures isolated read-after-write semantics by providing discovered cluster replication states in each request. More information about eventual consistency in Vault can be found here https://www.vaultproject.io/docs/enterprise/consistency
  3964. type: boolean
  3965. server:
  3966. description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".'
  3967. type: string
  3968. version:
  3969. default: v2
  3970. description: Version is the Vault KV secret engine version. This can be either "v1" or "v2". Version defaults to "v2".
  3971. enum:
  3972. - v1
  3973. - v2
  3974. type: string
  3975. required:
  3976. - auth
  3977. - server
  3978. type: object
  3979. webhook:
  3980. description: Webhook configures this store to sync secrets using a generic templated webhook
  3981. properties:
  3982. body:
  3983. description: Body
  3984. type: string
  3985. caBundle:
  3986. description: PEM encoded CA bundle used to validate webhook server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.
  3987. format: byte
  3988. type: string
  3989. caProvider:
  3990. description: The provider for the CA bundle to use to validate webhook server certificate.
  3991. properties:
  3992. key:
  3993. description: The key the value inside of the provider type to use, only used with "Secret" type
  3994. type: string
  3995. name:
  3996. description: The name of the object located at the provider type.
  3997. type: string
  3998. namespace:
  3999. description: The namespace the Provider type is in.
  4000. type: string
  4001. type:
  4002. description: The type of provider to use such as "Secret", or "ConfigMap".
  4003. enum:
  4004. - Secret
  4005. - ConfigMap
  4006. type: string
  4007. required:
  4008. - name
  4009. - type
  4010. type: object
  4011. headers:
  4012. additionalProperties:
  4013. type: string
  4014. description: Headers
  4015. type: object
  4016. method:
  4017. description: Webhook Method
  4018. type: string
  4019. result:
  4020. description: Result formatting
  4021. properties:
  4022. jsonPath:
  4023. description: Json path of return value
  4024. type: string
  4025. type: object
  4026. secrets:
  4027. description: Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name
  4028. items:
  4029. properties:
  4030. name:
  4031. description: Name of this secret in templates
  4032. type: string
  4033. secretRef:
  4034. description: Secret ref to fill in credentials
  4035. properties:
  4036. key:
  4037. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4038. type: string
  4039. name:
  4040. description: The name of the Secret resource being referred to.
  4041. type: string
  4042. namespace:
  4043. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4044. type: string
  4045. type: object
  4046. required:
  4047. - name
  4048. - secretRef
  4049. type: object
  4050. type: array
  4051. timeout:
  4052. description: Timeout
  4053. type: string
  4054. url:
  4055. description: Webhook url to call
  4056. type: string
  4057. required:
  4058. - result
  4059. - url
  4060. type: object
  4061. yandexlockbox:
  4062. description: YandexLockbox configures this store to sync secrets using Yandex Lockbox provider
  4063. properties:
  4064. apiEndpoint:
  4065. description: Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')
  4066. type: string
  4067. auth:
  4068. description: Auth defines the information necessary to authenticate against Yandex Lockbox
  4069. properties:
  4070. authorizedKeySecretRef:
  4071. description: The authorized key used for authentication
  4072. properties:
  4073. key:
  4074. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4075. type: string
  4076. name:
  4077. description: The name of the Secret resource being referred to.
  4078. type: string
  4079. namespace:
  4080. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4081. type: string
  4082. type: object
  4083. type: object
  4084. caProvider:
  4085. description: The provider for the CA bundle to use to validate Yandex.Cloud server certificate.
  4086. properties:
  4087. certSecretRef:
  4088. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4089. properties:
  4090. key:
  4091. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4092. type: string
  4093. name:
  4094. description: The name of the Secret resource being referred to.
  4095. type: string
  4096. namespace:
  4097. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4098. type: string
  4099. type: object
  4100. type: object
  4101. required:
  4102. - auth
  4103. type: object
  4104. type: object
  4105. retrySettings:
  4106. description: Used to configure http retries if failed
  4107. properties:
  4108. maxRetries:
  4109. format: int32
  4110. type: integer
  4111. retryInterval:
  4112. type: string
  4113. type: object
  4114. required:
  4115. - provider
  4116. type: object
  4117. status:
  4118. description: SecretStoreStatus defines the observed state of the SecretStore.
  4119. properties:
  4120. conditions:
  4121. items:
  4122. properties:
  4123. lastTransitionTime:
  4124. format: date-time
  4125. type: string
  4126. message:
  4127. type: string
  4128. reason:
  4129. type: string
  4130. status:
  4131. type: string
  4132. type:
  4133. type: string
  4134. required:
  4135. - status
  4136. - type
  4137. type: object
  4138. type: array
  4139. type: object
  4140. type: object
  4141. served: true
  4142. storage: false
  4143. subresources:
  4144. status: {}
  4145. - additionalPrinterColumns:
  4146. - jsonPath: .metadata.creationTimestamp
  4147. name: AGE
  4148. type: date
  4149. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  4150. name: Status
  4151. type: string
  4152. - jsonPath: .status.capabilities
  4153. name: Capabilities
  4154. type: string
  4155. name: v1beta1
  4156. schema:
  4157. openAPIV3Schema:
  4158. description: SecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
  4159. properties:
  4160. apiVersion:
  4161. description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
  4162. type: string
  4163. kind:
  4164. description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
  4165. type: string
  4166. metadata:
  4167. type: object
  4168. spec:
  4169. description: SecretStoreSpec defines the desired state of SecretStore.
  4170. properties:
  4171. controller:
  4172. description: 'Used to select the correct KES controller (think: ingress.ingressClassName) The KES controller is instantiated with a specific controller name and filters ES based on this property'
  4173. type: string
  4174. provider:
  4175. description: Used to configure the provider. Only one provider may be set
  4176. maxProperties: 1
  4177. minProperties: 1
  4178. properties:
  4179. akeyless:
  4180. description: Akeyless configures this store to sync secrets using Akeyless Vault provider
  4181. properties:
  4182. akeylessGWApiURL:
  4183. description: Akeyless GW API Url from which the secrets to be fetched from.
  4184. type: string
  4185. authSecretRef:
  4186. description: Auth configures how the operator authenticates with Akeyless.
  4187. properties:
  4188. secretRef:
  4189. description: 'AkeylessAuthSecretRef AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.'
  4190. properties:
  4191. accessID:
  4192. description: The SecretAccessID is used for authentication
  4193. properties:
  4194. key:
  4195. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4196. type: string
  4197. name:
  4198. description: The name of the Secret resource being referred to.
  4199. type: string
  4200. namespace:
  4201. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4202. type: string
  4203. type: object
  4204. accessType:
  4205. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4206. properties:
  4207. key:
  4208. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4209. type: string
  4210. name:
  4211. description: The name of the Secret resource being referred to.
  4212. type: string
  4213. namespace:
  4214. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4215. type: string
  4216. type: object
  4217. accessTypeParam:
  4218. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4219. properties:
  4220. key:
  4221. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4222. type: string
  4223. name:
  4224. description: The name of the Secret resource being referred to.
  4225. type: string
  4226. namespace:
  4227. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4228. type: string
  4229. type: object
  4230. type: object
  4231. required:
  4232. - secretRef
  4233. type: object
  4234. required:
  4235. - akeylessGWApiURL
  4236. - authSecretRef
  4237. type: object
  4238. alibaba:
  4239. description: Alibaba configures this store to sync secrets using Alibaba Cloud provider
  4240. properties:
  4241. auth:
  4242. description: AlibabaAuth contains a secretRef for credentials.
  4243. properties:
  4244. secretRef:
  4245. description: AlibabaAuthSecretRef holds secret references for Alibaba credentials.
  4246. properties:
  4247. accessKeyIDSecretRef:
  4248. description: The AccessKeyID is used for authentication
  4249. properties:
  4250. key:
  4251. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4252. type: string
  4253. name:
  4254. description: The name of the Secret resource being referred to.
  4255. type: string
  4256. namespace:
  4257. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4258. type: string
  4259. type: object
  4260. accessKeySecretSecretRef:
  4261. description: The AccessKeySecret is used for authentication
  4262. properties:
  4263. key:
  4264. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4265. type: string
  4266. name:
  4267. description: The name of the Secret resource being referred to.
  4268. type: string
  4269. namespace:
  4270. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4271. type: string
  4272. type: object
  4273. required:
  4274. - accessKeyIDSecretRef
  4275. - accessKeySecretSecretRef
  4276. type: object
  4277. required:
  4278. - secretRef
  4279. type: object
  4280. endpoint:
  4281. type: string
  4282. regionID:
  4283. description: Alibaba Region to be used for the provider
  4284. type: string
  4285. required:
  4286. - auth
  4287. - regionID
  4288. type: object
  4289. aws:
  4290. description: AWS configures this store to sync secrets using AWS Secret Manager provider
  4291. properties:
  4292. auth:
  4293. description: 'Auth defines the information necessary to authenticate against AWS if not set aws sdk will infer credentials from your environment see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials'
  4294. properties:
  4295. jwt:
  4296. description: Authenticate against AWS using service account tokens.
  4297. properties:
  4298. serviceAccountRef:
  4299. description: A reference to a ServiceAccount resource.
  4300. properties:
  4301. name:
  4302. description: The name of the ServiceAccount resource being referred to.
  4303. type: string
  4304. namespace:
  4305. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4306. type: string
  4307. required:
  4308. - name
  4309. type: object
  4310. type: object
  4311. secretRef:
  4312. description: AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.
  4313. properties:
  4314. accessKeyIDSecretRef:
  4315. description: The AccessKeyID is used for authentication
  4316. properties:
  4317. key:
  4318. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4319. type: string
  4320. name:
  4321. description: The name of the Secret resource being referred to.
  4322. type: string
  4323. namespace:
  4324. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4325. type: string
  4326. type: object
  4327. secretAccessKeySecretRef:
  4328. description: The SecretAccessKey is used for authentication
  4329. properties:
  4330. key:
  4331. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4332. type: string
  4333. name:
  4334. description: The name of the Secret resource being referred to.
  4335. type: string
  4336. namespace:
  4337. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4338. type: string
  4339. type: object
  4340. type: object
  4341. type: object
  4342. region:
  4343. description: AWS Region to be used for the provider
  4344. type: string
  4345. role:
  4346. description: Role is a Role ARN which the SecretManager provider will assume
  4347. type: string
  4348. service:
  4349. description: Service defines which service should be used to fetch the secrets
  4350. enum:
  4351. - SecretsManager
  4352. - ParameterStore
  4353. type: string
  4354. required:
  4355. - region
  4356. - service
  4357. type: object
  4358. azurekv:
  4359. description: AzureKV configures this store to sync secrets using Azure Key Vault provider
  4360. properties:
  4361. authSecretRef:
  4362. description: Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.
  4363. properties:
  4364. clientId:
  4365. description: The Azure clientId of the service principle used for authentication.
  4366. properties:
  4367. key:
  4368. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4369. type: string
  4370. name:
  4371. description: The name of the Secret resource being referred to.
  4372. type: string
  4373. namespace:
  4374. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4375. type: string
  4376. type: object
  4377. clientSecret:
  4378. description: The Azure ClientSecret of the service principle used for authentication.
  4379. properties:
  4380. key:
  4381. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4382. type: string
  4383. name:
  4384. description: The name of the Secret resource being referred to.
  4385. type: string
  4386. namespace:
  4387. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4388. type: string
  4389. type: object
  4390. type: object
  4391. authType:
  4392. default: ServicePrincipal
  4393. description: 'Auth type defines how to authenticate to the keyvault service. Valid values are: - "ServicePrincipal" (default): Using a service principal (tenantId, clientId, clientSecret) - "ManagedIdentity": Using Managed Identity assigned to the pod (see aad-pod-identity)'
  4394. enum:
  4395. - ServicePrincipal
  4396. - ManagedIdentity
  4397. - WorkloadIdentity
  4398. type: string
  4399. identityId:
  4400. description: If multiple Managed Identity is assigned to the pod, you can select the one to be used
  4401. type: string
  4402. serviceAccountRef:
  4403. description: ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.
  4404. properties:
  4405. name:
  4406. description: The name of the ServiceAccount resource being referred to.
  4407. type: string
  4408. namespace:
  4409. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4410. type: string
  4411. required:
  4412. - name
  4413. type: object
  4414. tenantId:
  4415. description: TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.
  4416. type: string
  4417. vaultUrl:
  4418. description: Vault Url from which the secrets to be fetched from.
  4419. type: string
  4420. required:
  4421. - vaultUrl
  4422. type: object
  4423. fake:
  4424. description: Fake configures a store with static key/value pairs
  4425. properties:
  4426. data:
  4427. items:
  4428. properties:
  4429. key:
  4430. type: string
  4431. value:
  4432. type: string
  4433. valueMap:
  4434. additionalProperties:
  4435. type: string
  4436. type: object
  4437. version:
  4438. type: string
  4439. required:
  4440. - key
  4441. type: object
  4442. type: array
  4443. required:
  4444. - data
  4445. type: object
  4446. gcpsm:
  4447. description: GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider
  4448. properties:
  4449. auth:
  4450. description: Auth defines the information necessary to authenticate against GCP
  4451. properties:
  4452. secretRef:
  4453. properties:
  4454. secretAccessKeySecretRef:
  4455. description: The SecretAccessKey is used for authentication
  4456. properties:
  4457. key:
  4458. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4459. type: string
  4460. name:
  4461. description: The name of the Secret resource being referred to.
  4462. type: string
  4463. namespace:
  4464. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4465. type: string
  4466. type: object
  4467. type: object
  4468. workloadIdentity:
  4469. properties:
  4470. clusterLocation:
  4471. type: string
  4472. clusterName:
  4473. type: string
  4474. clusterProjectID:
  4475. type: string
  4476. serviceAccountRef:
  4477. description: A reference to a ServiceAccount resource.
  4478. properties:
  4479. name:
  4480. description: The name of the ServiceAccount resource being referred to.
  4481. type: string
  4482. namespace:
  4483. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4484. type: string
  4485. required:
  4486. - name
  4487. type: object
  4488. required:
  4489. - clusterLocation
  4490. - clusterName
  4491. - serviceAccountRef
  4492. type: object
  4493. type: object
  4494. projectID:
  4495. description: ProjectID project where secret is located
  4496. type: string
  4497. type: object
  4498. gitlab:
  4499. description: Gitlab configures this store to sync secrets using Gitlab Variables provider
  4500. properties:
  4501. auth:
  4502. description: Auth configures how secret-manager authenticates with a GitLab instance.
  4503. properties:
  4504. SecretRef:
  4505. properties:
  4506. accessToken:
  4507. description: AccessToken is used for authentication.
  4508. properties:
  4509. key:
  4510. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4511. type: string
  4512. name:
  4513. description: The name of the Secret resource being referred to.
  4514. type: string
  4515. namespace:
  4516. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4517. type: string
  4518. type: object
  4519. type: object
  4520. required:
  4521. - SecretRef
  4522. type: object
  4523. projectID:
  4524. description: ProjectID specifies a project where secrets are located.
  4525. type: string
  4526. url:
  4527. description: URL configures the GitLab instance URL. Defaults to https://gitlab.com/.
  4528. type: string
  4529. required:
  4530. - auth
  4531. type: object
  4532. ibm:
  4533. description: IBM configures this store to sync secrets using IBM Cloud provider
  4534. properties:
  4535. auth:
  4536. description: Auth configures how secret-manager authenticates with the IBM secrets manager.
  4537. properties:
  4538. secretRef:
  4539. properties:
  4540. secretApiKeySecretRef:
  4541. description: The SecretAccessKey is used for authentication
  4542. properties:
  4543. key:
  4544. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4545. type: string
  4546. name:
  4547. description: The name of the Secret resource being referred to.
  4548. type: string
  4549. namespace:
  4550. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4551. type: string
  4552. type: object
  4553. type: object
  4554. required:
  4555. - secretRef
  4556. type: object
  4557. serviceUrl:
  4558. description: ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance
  4559. type: string
  4560. required:
  4561. - auth
  4562. type: object
  4563. kubernetes:
  4564. description: Kubernetes configures this store to sync secrets using a Kubernetes cluster provider
  4565. properties:
  4566. auth:
  4567. description: Auth configures how secret-manager authenticates with a Kubernetes instance.
  4568. maxProperties: 1
  4569. minProperties: 1
  4570. properties:
  4571. cert:
  4572. description: has both clientCert and clientKey as secretKeySelector
  4573. properties:
  4574. clientCert:
  4575. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4576. properties:
  4577. key:
  4578. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4579. type: string
  4580. name:
  4581. description: The name of the Secret resource being referred to.
  4582. type: string
  4583. namespace:
  4584. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4585. type: string
  4586. type: object
  4587. clientKey:
  4588. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4589. properties:
  4590. key:
  4591. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4592. type: string
  4593. name:
  4594. description: The name of the Secret resource being referred to.
  4595. type: string
  4596. namespace:
  4597. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4598. type: string
  4599. type: object
  4600. type: object
  4601. serviceAccount:
  4602. description: points to a service account that should be used for authentication
  4603. properties:
  4604. serviceAccount:
  4605. description: A reference to a ServiceAccount resource.
  4606. properties:
  4607. name:
  4608. description: The name of the ServiceAccount resource being referred to.
  4609. type: string
  4610. namespace:
  4611. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4612. type: string
  4613. required:
  4614. - name
  4615. type: object
  4616. type: object
  4617. token:
  4618. description: use static token to authenticate with
  4619. properties:
  4620. bearerToken:
  4621. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4622. properties:
  4623. key:
  4624. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4625. type: string
  4626. name:
  4627. description: The name of the Secret resource being referred to.
  4628. type: string
  4629. namespace:
  4630. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4631. type: string
  4632. type: object
  4633. type: object
  4634. type: object
  4635. remoteNamespace:
  4636. default: default
  4637. description: Remote namespace to fetch the secrets from
  4638. type: string
  4639. server:
  4640. description: configures the Kubernetes server Address.
  4641. properties:
  4642. caBundle:
  4643. description: CABundle is a base64-encoded CA certificate
  4644. format: byte
  4645. type: string
  4646. caProvider:
  4647. description: 'see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider'
  4648. properties:
  4649. key:
  4650. description: The key the value inside of the provider type to use, only used with "Secret" type
  4651. type: string
  4652. name:
  4653. description: The name of the object located at the provider type.
  4654. type: string
  4655. namespace:
  4656. description: The namespace the Provider type is in.
  4657. type: string
  4658. type:
  4659. description: The type of provider to use such as "Secret", or "ConfigMap".
  4660. enum:
  4661. - Secret
  4662. - ConfigMap
  4663. type: string
  4664. required:
  4665. - name
  4666. - type
  4667. type: object
  4668. url:
  4669. default: kubernetes.default
  4670. description: configures the Kubernetes server Address.
  4671. type: string
  4672. type: object
  4673. required:
  4674. - auth
  4675. type: object
  4676. onepassword:
  4677. description: OnePassword configures this store to sync secrets using the 1Password Cloud provider
  4678. properties:
  4679. auth:
  4680. description: Auth defines the information necessary to authenticate against OnePassword Connect Server
  4681. properties:
  4682. secretRef:
  4683. description: OnePasswordAuthSecretRef holds secret references for 1Password credentials.
  4684. properties:
  4685. connectTokenSecretRef:
  4686. description: The ConnectToken is used for authentication to a 1Password Connect Server.
  4687. properties:
  4688. key:
  4689. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4690. type: string
  4691. name:
  4692. description: The name of the Secret resource being referred to.
  4693. type: string
  4694. namespace:
  4695. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4696. type: string
  4697. type: object
  4698. required:
  4699. - connectTokenSecretRef
  4700. type: object
  4701. required:
  4702. - secretRef
  4703. type: object
  4704. connectHost:
  4705. description: ConnectHost defines the OnePassword Connect Server to connect to
  4706. type: string
  4707. vaults:
  4708. additionalProperties:
  4709. type: integer
  4710. description: Vaults defines which OnePassword vaults to search in which order
  4711. type: object
  4712. required:
  4713. - auth
  4714. - connectHost
  4715. - vaults
  4716. type: object
  4717. oracle:
  4718. description: Oracle configures this store to sync secrets using Oracle Vault provider
  4719. properties:
  4720. auth:
  4721. description: Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.
  4722. properties:
  4723. secretRef:
  4724. description: SecretRef to pass through sensitive information.
  4725. properties:
  4726. fingerprint:
  4727. description: Fingerprint is the fingerprint of the API private key.
  4728. properties:
  4729. key:
  4730. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4731. type: string
  4732. name:
  4733. description: The name of the Secret resource being referred to.
  4734. type: string
  4735. namespace:
  4736. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4737. type: string
  4738. type: object
  4739. privatekey:
  4740. description: PrivateKey is the user's API Signing Key in PEM format, used for authentication.
  4741. properties:
  4742. key:
  4743. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4744. type: string
  4745. name:
  4746. description: The name of the Secret resource being referred to.
  4747. type: string
  4748. namespace:
  4749. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4750. type: string
  4751. type: object
  4752. required:
  4753. - fingerprint
  4754. - privatekey
  4755. type: object
  4756. tenancy:
  4757. description: Tenancy is the tenancy OCID where user is located.
  4758. type: string
  4759. user:
  4760. description: User is an access OCID specific to the account.
  4761. type: string
  4762. required:
  4763. - secretRef
  4764. - tenancy
  4765. - user
  4766. type: object
  4767. region:
  4768. description: Region is the region where vault is located.
  4769. type: string
  4770. vault:
  4771. description: Vault is the vault's OCID of the specific vault where secret is located.
  4772. type: string
  4773. required:
  4774. - region
  4775. - vault
  4776. type: object
  4777. senhasegura:
  4778. description: Senhasegura configures this store to sync secrets using senhasegura provider
  4779. properties:
  4780. auth:
  4781. description: Auth defines parameters to authenticate in senhasegura
  4782. properties:
  4783. clientId:
  4784. type: string
  4785. clientSecretSecretRef:
  4786. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4787. properties:
  4788. key:
  4789. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4790. type: string
  4791. name:
  4792. description: The name of the Secret resource being referred to.
  4793. type: string
  4794. namespace:
  4795. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4796. type: string
  4797. type: object
  4798. required:
  4799. - clientId
  4800. - clientSecretSecretRef
  4801. type: object
  4802. ignoreSslCertificate:
  4803. default: false
  4804. description: IgnoreSslCertificate defines if SSL certificate must be ignored
  4805. type: boolean
  4806. module:
  4807. description: Module defines which senhasegura module should be used to get secrets
  4808. type: string
  4809. url:
  4810. description: URL of senhasegura
  4811. type: string
  4812. required:
  4813. - auth
  4814. - module
  4815. - url
  4816. type: object
  4817. vault:
  4818. description: Vault configures this store to sync secrets using Hashi provider
  4819. properties:
  4820. auth:
  4821. description: Auth configures how secret-manager authenticates with the Vault server.
  4822. properties:
  4823. appRole:
  4824. description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.
  4825. properties:
  4826. path:
  4827. default: approle
  4828. description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"'
  4829. type: string
  4830. roleId:
  4831. description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.
  4832. type: string
  4833. secretRef:
  4834. description: Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret.
  4835. properties:
  4836. key:
  4837. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4838. type: string
  4839. name:
  4840. description: The name of the Secret resource being referred to.
  4841. type: string
  4842. namespace:
  4843. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4844. type: string
  4845. type: object
  4846. required:
  4847. - path
  4848. - roleId
  4849. - secretRef
  4850. type: object
  4851. cert:
  4852. description: Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method
  4853. properties:
  4854. clientCert:
  4855. description: ClientCert is a certificate to authenticate using the Cert Vault authentication method
  4856. properties:
  4857. key:
  4858. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4859. type: string
  4860. name:
  4861. description: The name of the Secret resource being referred to.
  4862. type: string
  4863. namespace:
  4864. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4865. type: string
  4866. type: object
  4867. secretRef:
  4868. description: SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method
  4869. properties:
  4870. key:
  4871. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4872. type: string
  4873. name:
  4874. description: The name of the Secret resource being referred to.
  4875. type: string
  4876. namespace:
  4877. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4878. type: string
  4879. type: object
  4880. type: object
  4881. jwt:
  4882. description: Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method
  4883. properties:
  4884. kubernetesServiceAccountToken:
  4885. description: Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.
  4886. properties:
  4887. audiences:
  4888. description: Optional audiences field that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to a single audience `vault` it not specified.
  4889. items:
  4890. type: string
  4891. type: array
  4892. expirationSeconds:
  4893. description: Optional expiration time in seconds that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to 10 minutes.
  4894. format: int64
  4895. type: integer
  4896. serviceAccountRef:
  4897. description: Service account field containing the name of a kubernetes ServiceAccount.
  4898. properties:
  4899. name:
  4900. description: The name of the ServiceAccount resource being referred to.
  4901. type: string
  4902. namespace:
  4903. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4904. type: string
  4905. required:
  4906. - name
  4907. type: object
  4908. required:
  4909. - serviceAccountRef
  4910. type: object
  4911. path:
  4912. default: jwt
  4913. description: 'Path where the JWT authentication backend is mounted in Vault, e.g: "jwt"'
  4914. type: string
  4915. role:
  4916. description: Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method
  4917. type: string
  4918. secretRef:
  4919. description: Optional SecretRef that refers to a key in a Secret resource containing JWT token to authenticate with Vault using the JWT/OIDC authentication method.
  4920. properties:
  4921. key:
  4922. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4923. type: string
  4924. name:
  4925. description: The name of the Secret resource being referred to.
  4926. type: string
  4927. namespace:
  4928. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4929. type: string
  4930. type: object
  4931. required:
  4932. - path
  4933. type: object
  4934. kubernetes:
  4935. description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.
  4936. properties:
  4937. mountPath:
  4938. default: kubernetes
  4939. description: 'Path where the Kubernetes authentication backend is mounted in Vault, e.g: "kubernetes"'
  4940. type: string
  4941. role:
  4942. description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.
  4943. type: string
  4944. secretRef:
  4945. description: Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.
  4946. properties:
  4947. key:
  4948. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4949. type: string
  4950. name:
  4951. description: The name of the Secret resource being referred to.
  4952. type: string
  4953. namespace:
  4954. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4955. type: string
  4956. type: object
  4957. serviceAccountRef:
  4958. description: Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Vault. If the service account selector is not supplied, the secretRef will be used instead.
  4959. properties:
  4960. name:
  4961. description: The name of the ServiceAccount resource being referred to.
  4962. type: string
  4963. namespace:
  4964. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4965. type: string
  4966. required:
  4967. - name
  4968. type: object
  4969. required:
  4970. - mountPath
  4971. - role
  4972. type: object
  4973. ldap:
  4974. description: Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method
  4975. properties:
  4976. path:
  4977. default: ldap
  4978. description: 'Path where the LDAP authentication backend is mounted in Vault, e.g: "ldap"'
  4979. type: string
  4980. secretRef:
  4981. description: SecretRef to a key in a Secret resource containing password for the LDAP user used to authenticate with Vault using the LDAP authentication method
  4982. properties:
  4983. key:
  4984. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  4985. type: string
  4986. name:
  4987. description: The name of the Secret resource being referred to.
  4988. type: string
  4989. namespace:
  4990. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4991. type: string
  4992. type: object
  4993. username:
  4994. description: Username is a LDAP user name used to authenticate using the LDAP Vault authentication method
  4995. type: string
  4996. required:
  4997. - path
  4998. - username
  4999. type: object
  5000. tokenSecretRef:
  5001. description: TokenSecretRef authenticates with Vault by presenting a token.
  5002. properties:
  5003. key:
  5004. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  5005. type: string
  5006. name:
  5007. description: The name of the Secret resource being referred to.
  5008. type: string
  5009. namespace:
  5010. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  5011. type: string
  5012. type: object
  5013. type: object
  5014. caBundle:
  5015. description: PEM encoded CA bundle used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.
  5016. format: byte
  5017. type: string
  5018. caProvider:
  5019. description: The provider for the CA bundle to use to validate Vault server certificate.
  5020. properties:
  5021. key:
  5022. description: The key the value inside of the provider type to use, only used with "Secret" type
  5023. type: string
  5024. name:
  5025. description: The name of the object located at the provider type.
  5026. type: string
  5027. namespace:
  5028. description: The namespace the Provider type is in.
  5029. type: string
  5030. type:
  5031. description: The type of provider to use such as "Secret", or "ConfigMap".
  5032. enum:
  5033. - Secret
  5034. - ConfigMap
  5035. type: string
  5036. required:
  5037. - name
  5038. - type
  5039. type: object
  5040. forwardInconsistent:
  5041. description: ForwardInconsistent tells Vault to forward read-after-write requests to the Vault leader instead of simply retrying within a loop. This can increase performance if the option is enabled serverside. https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header
  5042. type: boolean
  5043. namespace:
  5044. description: 'Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1". More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces'
  5045. type: string
  5046. path:
  5047. description: 'Path is the mount path of the Vault KV backend endpoint, e.g: "secret". The v2 KV secret engine version specific "/data" path suffix for fetching secrets from Vault is optional and will be appended if not present in specified path.'
  5048. type: string
  5049. readYourWrites:
  5050. description: ReadYourWrites ensures isolated read-after-write semantics by providing discovered cluster replication states in each request. More information about eventual consistency in Vault can be found here https://www.vaultproject.io/docs/enterprise/consistency
  5051. type: boolean
  5052. server:
  5053. description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".'
  5054. type: string
  5055. version:
  5056. default: v2
  5057. description: Version is the Vault KV secret engine version. This can be either "v1" or "v2". Version defaults to "v2".
  5058. enum:
  5059. - v1
  5060. - v2
  5061. type: string
  5062. required:
  5063. - auth
  5064. - server
  5065. type: object
  5066. webhook:
  5067. description: Webhook configures this store to sync secrets using a generic templated webhook
  5068. properties:
  5069. body:
  5070. description: Body
  5071. type: string
  5072. caBundle:
  5073. description: PEM encoded CA bundle used to validate webhook server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.
  5074. format: byte
  5075. type: string
  5076. caProvider:
  5077. description: The provider for the CA bundle to use to validate webhook server certificate.
  5078. properties:
  5079. key:
  5080. description: The key the value inside of the provider type to use, only used with "Secret" type
  5081. type: string
  5082. name:
  5083. description: The name of the object located at the provider type.
  5084. type: string
  5085. namespace:
  5086. description: The namespace the Provider type is in.
  5087. type: string
  5088. type:
  5089. description: The type of provider to use such as "Secret", or "ConfigMap".
  5090. enum:
  5091. - Secret
  5092. - ConfigMap
  5093. type: string
  5094. required:
  5095. - name
  5096. - type
  5097. type: object
  5098. headers:
  5099. additionalProperties:
  5100. type: string
  5101. description: Headers
  5102. type: object
  5103. method:
  5104. description: Webhook Method
  5105. type: string
  5106. result:
  5107. description: Result formatting
  5108. properties:
  5109. jsonPath:
  5110. description: Json path of return value
  5111. type: string
  5112. type: object
  5113. secrets:
  5114. description: Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name
  5115. items:
  5116. properties:
  5117. name:
  5118. description: Name of this secret in templates
  5119. type: string
  5120. secretRef:
  5121. description: Secret ref to fill in credentials
  5122. properties:
  5123. key:
  5124. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  5125. type: string
  5126. name:
  5127. description: The name of the Secret resource being referred to.
  5128. type: string
  5129. namespace:
  5130. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  5131. type: string
  5132. type: object
  5133. required:
  5134. - name
  5135. - secretRef
  5136. type: object
  5137. type: array
  5138. timeout:
  5139. description: Timeout
  5140. type: string
  5141. url:
  5142. description: Webhook url to call
  5143. type: string
  5144. required:
  5145. - result
  5146. - url
  5147. type: object
  5148. yandexlockbox:
  5149. description: YandexLockbox configures this store to sync secrets using Yandex Lockbox provider
  5150. properties:
  5151. apiEndpoint:
  5152. description: Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')
  5153. type: string
  5154. auth:
  5155. description: Auth defines the information necessary to authenticate against Yandex Lockbox
  5156. properties:
  5157. authorizedKeySecretRef:
  5158. description: The authorized key used for authentication
  5159. properties:
  5160. key:
  5161. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  5162. type: string
  5163. name:
  5164. description: The name of the Secret resource being referred to.
  5165. type: string
  5166. namespace:
  5167. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  5168. type: string
  5169. type: object
  5170. type: object
  5171. caProvider:
  5172. description: The provider for the CA bundle to use to validate Yandex.Cloud server certificate.
  5173. properties:
  5174. certSecretRef:
  5175. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  5176. properties:
  5177. key:
  5178. description: The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.
  5179. type: string
  5180. name:
  5181. description: The name of the Secret resource being referred to.
  5182. type: string
  5183. namespace:
  5184. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  5185. type: string
  5186. type: object
  5187. type: object
  5188. required:
  5189. - auth
  5190. type: object
  5191. type: object
  5192. refreshInterval:
  5193. description: Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.
  5194. type: integer
  5195. retrySettings:
  5196. description: Used to configure http retries if failed
  5197. properties:
  5198. maxRetries:
  5199. format: int32
  5200. type: integer
  5201. retryInterval:
  5202. type: string
  5203. type: object
  5204. required:
  5205. - provider
  5206. type: object
  5207. status:
  5208. description: SecretStoreStatus defines the observed state of the SecretStore.
  5209. properties:
  5210. capabilities:
  5211. description: SecretStoreCapabilities defines the possible operations a SecretStore can do.
  5212. type: string
  5213. conditions:
  5214. items:
  5215. properties:
  5216. lastTransitionTime:
  5217. format: date-time
  5218. type: string
  5219. message:
  5220. type: string
  5221. reason:
  5222. type: string
  5223. status:
  5224. type: string
  5225. type:
  5226. type: string
  5227. required:
  5228. - status
  5229. - type
  5230. type: object
  5231. type: array
  5232. type: object
  5233. type: object
  5234. served: true
  5235. storage: true
  5236. subresources:
  5237. status: {}
  5238. conversion:
  5239. strategy: Webhook
  5240. webhook:
  5241. conversionReviewVersions:
  5242. - v1
  5243. clientConfig:
  5244. service:
  5245. name: kubernetes
  5246. namespace: default
  5247. path: /convert
  5248. status:
  5249. acceptedNames:
  5250. kind: ""
  5251. plural: ""
  5252. conditions: []
  5253. storedVersions: []