bundle.yaml 305 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106
  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. name: v1beta1
  1362. schema:
  1363. openAPIV3Schema:
  1364. description: ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
  1365. properties:
  1366. apiVersion:
  1367. 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'
  1368. type: string
  1369. kind:
  1370. 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'
  1371. type: string
  1372. metadata:
  1373. type: object
  1374. spec:
  1375. description: SecretStoreSpec defines the desired state of SecretStore.
  1376. properties:
  1377. controller:
  1378. 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'
  1379. type: string
  1380. provider:
  1381. description: Used to configure the provider. Only one provider may be set
  1382. maxProperties: 1
  1383. minProperties: 1
  1384. properties:
  1385. akeyless:
  1386. description: Akeyless configures this store to sync secrets using Akeyless Vault provider
  1387. properties:
  1388. akeylessGWApiURL:
  1389. description: Akeyless GW API Url from which the secrets to be fetched from.
  1390. type: string
  1391. authSecretRef:
  1392. description: Auth configures how the operator authenticates with Akeyless.
  1393. properties:
  1394. secretRef:
  1395. description: 'AkeylessAuthSecretRef AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.'
  1396. properties:
  1397. accessID:
  1398. description: The SecretAccessID is used for authentication
  1399. properties:
  1400. key:
  1401. 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.
  1402. type: string
  1403. name:
  1404. description: The name of the Secret resource being referred to.
  1405. type: string
  1406. namespace:
  1407. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1408. type: string
  1409. type: object
  1410. accessType:
  1411. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1412. properties:
  1413. key:
  1414. 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.
  1415. type: string
  1416. name:
  1417. description: The name of the Secret resource being referred to.
  1418. type: string
  1419. namespace:
  1420. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1421. type: string
  1422. type: object
  1423. accessTypeParam:
  1424. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1425. properties:
  1426. key:
  1427. 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.
  1428. type: string
  1429. name:
  1430. description: The name of the Secret resource being referred to.
  1431. type: string
  1432. namespace:
  1433. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1434. type: string
  1435. type: object
  1436. type: object
  1437. required:
  1438. - secretRef
  1439. type: object
  1440. required:
  1441. - akeylessGWApiURL
  1442. - authSecretRef
  1443. type: object
  1444. alibaba:
  1445. description: Alibaba configures this store to sync secrets using Alibaba Cloud provider
  1446. properties:
  1447. auth:
  1448. description: AlibabaAuth contains a secretRef for credentials.
  1449. properties:
  1450. secretRef:
  1451. description: AlibabaAuthSecretRef holds secret references for Alibaba credentials.
  1452. properties:
  1453. accessKeyIDSecretRef:
  1454. description: The AccessKeyID is used for authentication
  1455. properties:
  1456. key:
  1457. 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.
  1458. type: string
  1459. name:
  1460. description: The name of the Secret resource being referred to.
  1461. type: string
  1462. namespace:
  1463. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1464. type: string
  1465. type: object
  1466. accessKeySecretSecretRef:
  1467. description: The AccessKeySecret is used for authentication
  1468. properties:
  1469. key:
  1470. 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.
  1471. type: string
  1472. name:
  1473. description: The name of the Secret resource being referred to.
  1474. type: string
  1475. namespace:
  1476. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1477. type: string
  1478. type: object
  1479. required:
  1480. - accessKeyIDSecretRef
  1481. - accessKeySecretSecretRef
  1482. type: object
  1483. required:
  1484. - secretRef
  1485. type: object
  1486. endpoint:
  1487. type: string
  1488. regionID:
  1489. description: Alibaba Region to be used for the provider
  1490. type: string
  1491. required:
  1492. - auth
  1493. - regionID
  1494. type: object
  1495. aws:
  1496. description: AWS configures this store to sync secrets using AWS Secret Manager provider
  1497. properties:
  1498. auth:
  1499. 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'
  1500. properties:
  1501. jwt:
  1502. description: Authenticate against AWS using service account tokens.
  1503. properties:
  1504. serviceAccountRef:
  1505. description: A reference to a ServiceAccount resource.
  1506. properties:
  1507. name:
  1508. description: The name of the ServiceAccount resource being referred to.
  1509. type: string
  1510. namespace:
  1511. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1512. type: string
  1513. required:
  1514. - name
  1515. type: object
  1516. type: object
  1517. secretRef:
  1518. description: AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.
  1519. properties:
  1520. accessKeyIDSecretRef:
  1521. description: The AccessKeyID is used for authentication
  1522. properties:
  1523. key:
  1524. 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.
  1525. type: string
  1526. name:
  1527. description: The name of the Secret resource being referred to.
  1528. type: string
  1529. namespace:
  1530. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1531. type: string
  1532. type: object
  1533. secretAccessKeySecretRef:
  1534. description: The SecretAccessKey is used for authentication
  1535. properties:
  1536. key:
  1537. 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.
  1538. type: string
  1539. name:
  1540. description: The name of the Secret resource being referred to.
  1541. type: string
  1542. namespace:
  1543. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1544. type: string
  1545. type: object
  1546. type: object
  1547. type: object
  1548. region:
  1549. description: AWS Region to be used for the provider
  1550. type: string
  1551. role:
  1552. description: Role is a Role ARN which the SecretManager provider will assume
  1553. type: string
  1554. service:
  1555. description: Service defines which service should be used to fetch the secrets
  1556. enum:
  1557. - SecretsManager
  1558. - ParameterStore
  1559. type: string
  1560. required:
  1561. - region
  1562. - service
  1563. type: object
  1564. azurekv:
  1565. description: AzureKV configures this store to sync secrets using Azure Key Vault provider
  1566. properties:
  1567. authSecretRef:
  1568. description: Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.
  1569. properties:
  1570. clientId:
  1571. description: The Azure clientId of the service principle used for authentication.
  1572. properties:
  1573. key:
  1574. 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.
  1575. type: string
  1576. name:
  1577. description: The name of the Secret resource being referred to.
  1578. type: string
  1579. namespace:
  1580. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1581. type: string
  1582. type: object
  1583. clientSecret:
  1584. description: The Azure ClientSecret of the service principle used for authentication.
  1585. properties:
  1586. key:
  1587. 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.
  1588. type: string
  1589. name:
  1590. description: The name of the Secret resource being referred to.
  1591. type: string
  1592. namespace:
  1593. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1594. type: string
  1595. type: object
  1596. type: object
  1597. authType:
  1598. default: ServicePrincipal
  1599. 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)'
  1600. enum:
  1601. - ServicePrincipal
  1602. - ManagedIdentity
  1603. - WorkloadIdentity
  1604. type: string
  1605. identityId:
  1606. description: If multiple Managed Identity is assigned to the pod, you can select the one to be used
  1607. type: string
  1608. serviceAccountRef:
  1609. description: ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.
  1610. properties:
  1611. name:
  1612. description: The name of the ServiceAccount resource being referred to.
  1613. type: string
  1614. namespace:
  1615. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1616. type: string
  1617. required:
  1618. - name
  1619. type: object
  1620. tenantId:
  1621. description: TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.
  1622. type: string
  1623. vaultUrl:
  1624. description: Vault Url from which the secrets to be fetched from.
  1625. type: string
  1626. required:
  1627. - vaultUrl
  1628. type: object
  1629. fake:
  1630. description: Fake configures a store with static key/value pairs
  1631. properties:
  1632. data:
  1633. items:
  1634. properties:
  1635. key:
  1636. type: string
  1637. value:
  1638. type: string
  1639. valueMap:
  1640. additionalProperties:
  1641. type: string
  1642. type: object
  1643. version:
  1644. type: string
  1645. required:
  1646. - key
  1647. type: object
  1648. type: array
  1649. required:
  1650. - data
  1651. type: object
  1652. gcpsm:
  1653. description: GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider
  1654. properties:
  1655. auth:
  1656. description: Auth defines the information necessary to authenticate against GCP
  1657. properties:
  1658. secretRef:
  1659. properties:
  1660. secretAccessKeySecretRef:
  1661. description: The SecretAccessKey is used for authentication
  1662. properties:
  1663. key:
  1664. 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.
  1665. type: string
  1666. name:
  1667. description: The name of the Secret resource being referred to.
  1668. type: string
  1669. namespace:
  1670. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1671. type: string
  1672. type: object
  1673. type: object
  1674. workloadIdentity:
  1675. properties:
  1676. clusterLocation:
  1677. type: string
  1678. clusterName:
  1679. type: string
  1680. clusterProjectID:
  1681. type: string
  1682. serviceAccountRef:
  1683. description: A reference to a ServiceAccount resource.
  1684. properties:
  1685. name:
  1686. description: The name of the ServiceAccount resource being referred to.
  1687. type: string
  1688. namespace:
  1689. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1690. type: string
  1691. required:
  1692. - name
  1693. type: object
  1694. required:
  1695. - clusterLocation
  1696. - clusterName
  1697. - serviceAccountRef
  1698. type: object
  1699. type: object
  1700. projectID:
  1701. description: ProjectID project where secret is located
  1702. type: string
  1703. type: object
  1704. gitlab:
  1705. description: Gitlab configures this store to sync secrets using Gitlab Variables provider
  1706. properties:
  1707. auth:
  1708. description: Auth configures how secret-manager authenticates with a GitLab instance.
  1709. properties:
  1710. SecretRef:
  1711. properties:
  1712. accessToken:
  1713. description: AccessToken is used for authentication.
  1714. properties:
  1715. key:
  1716. 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.
  1717. type: string
  1718. name:
  1719. description: The name of the Secret resource being referred to.
  1720. type: string
  1721. namespace:
  1722. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1723. type: string
  1724. type: object
  1725. type: object
  1726. required:
  1727. - SecretRef
  1728. type: object
  1729. projectID:
  1730. description: ProjectID specifies a project where secrets are located.
  1731. type: string
  1732. url:
  1733. description: URL configures the GitLab instance URL. Defaults to https://gitlab.com/.
  1734. type: string
  1735. required:
  1736. - auth
  1737. type: object
  1738. ibm:
  1739. description: IBM configures this store to sync secrets using IBM Cloud provider
  1740. properties:
  1741. auth:
  1742. description: Auth configures how secret-manager authenticates with the IBM secrets manager.
  1743. properties:
  1744. secretRef:
  1745. properties:
  1746. secretApiKeySecretRef:
  1747. description: The SecretAccessKey is used for authentication
  1748. properties:
  1749. key:
  1750. 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.
  1751. type: string
  1752. name:
  1753. description: The name of the Secret resource being referred to.
  1754. type: string
  1755. namespace:
  1756. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1757. type: string
  1758. type: object
  1759. type: object
  1760. required:
  1761. - secretRef
  1762. type: object
  1763. serviceUrl:
  1764. description: ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance
  1765. type: string
  1766. required:
  1767. - auth
  1768. type: object
  1769. kubernetes:
  1770. description: Kubernetes configures this store to sync secrets using a Kubernetes cluster provider
  1771. properties:
  1772. auth:
  1773. description: Auth configures how secret-manager authenticates with a Kubernetes instance.
  1774. maxProperties: 1
  1775. minProperties: 1
  1776. properties:
  1777. cert:
  1778. description: has both clientCert and clientKey as secretKeySelector
  1779. properties:
  1780. clientCert:
  1781. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1782. properties:
  1783. key:
  1784. 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.
  1785. type: string
  1786. name:
  1787. description: The name of the Secret resource being referred to.
  1788. type: string
  1789. namespace:
  1790. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1791. type: string
  1792. type: object
  1793. clientKey:
  1794. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1795. properties:
  1796. key:
  1797. 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.
  1798. type: string
  1799. name:
  1800. description: The name of the Secret resource being referred to.
  1801. type: string
  1802. namespace:
  1803. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1804. type: string
  1805. type: object
  1806. type: object
  1807. serviceAccount:
  1808. description: points to a service account that should be used for authentication
  1809. properties:
  1810. serviceAccount:
  1811. description: A reference to a ServiceAccount resource.
  1812. properties:
  1813. name:
  1814. description: The name of the ServiceAccount resource being referred to.
  1815. type: string
  1816. namespace:
  1817. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1818. type: string
  1819. required:
  1820. - name
  1821. type: object
  1822. type: object
  1823. token:
  1824. description: use static token to authenticate with
  1825. properties:
  1826. bearerToken:
  1827. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1828. properties:
  1829. key:
  1830. 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.
  1831. type: string
  1832. name:
  1833. description: The name of the Secret resource being referred to.
  1834. type: string
  1835. namespace:
  1836. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1837. type: string
  1838. type: object
  1839. type: object
  1840. type: object
  1841. remoteNamespace:
  1842. default: default
  1843. description: Remote namespace to fetch the secrets from
  1844. type: string
  1845. server:
  1846. description: configures the Kubernetes server Address.
  1847. properties:
  1848. caBundle:
  1849. description: CABundle is a base64-encoded CA certificate
  1850. format: byte
  1851. type: string
  1852. caProvider:
  1853. description: 'see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider'
  1854. properties:
  1855. key:
  1856. description: The key the value inside of the provider type to use, only used with "Secret" type
  1857. type: string
  1858. name:
  1859. description: The name of the object located at the provider type.
  1860. type: string
  1861. namespace:
  1862. description: The namespace the Provider type is in.
  1863. type: string
  1864. type:
  1865. description: The type of provider to use such as "Secret", or "ConfigMap".
  1866. enum:
  1867. - Secret
  1868. - ConfigMap
  1869. type: string
  1870. required:
  1871. - name
  1872. - type
  1873. type: object
  1874. url:
  1875. default: kubernetes.default
  1876. description: configures the Kubernetes server Address.
  1877. type: string
  1878. type: object
  1879. required:
  1880. - auth
  1881. type: object
  1882. oracle:
  1883. description: Oracle configures this store to sync secrets using Oracle Vault provider
  1884. properties:
  1885. auth:
  1886. description: Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.
  1887. properties:
  1888. secretRef:
  1889. description: SecretRef to pass through sensitive information.
  1890. properties:
  1891. fingerprint:
  1892. description: Fingerprint is the fingerprint of the API private key.
  1893. properties:
  1894. key:
  1895. 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.
  1896. type: string
  1897. name:
  1898. description: The name of the Secret resource being referred to.
  1899. type: string
  1900. namespace:
  1901. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1902. type: string
  1903. type: object
  1904. privatekey:
  1905. description: PrivateKey is the user's API Signing Key in PEM format, used for authentication.
  1906. properties:
  1907. key:
  1908. 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.
  1909. type: string
  1910. name:
  1911. description: The name of the Secret resource being referred to.
  1912. type: string
  1913. namespace:
  1914. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1915. type: string
  1916. type: object
  1917. required:
  1918. - fingerprint
  1919. - privatekey
  1920. type: object
  1921. tenancy:
  1922. description: Tenancy is the tenancy OCID where user is located.
  1923. type: string
  1924. user:
  1925. description: User is an access OCID specific to the account.
  1926. type: string
  1927. required:
  1928. - secretRef
  1929. - tenancy
  1930. - user
  1931. type: object
  1932. region:
  1933. description: Region is the region where vault is located.
  1934. type: string
  1935. vault:
  1936. description: Vault is the vault's OCID of the specific vault where secret is located.
  1937. type: string
  1938. required:
  1939. - region
  1940. - vault
  1941. type: object
  1942. senhasegura:
  1943. description: Senhasegura configures this store to sync secrets using senhasegura provider
  1944. properties:
  1945. auth:
  1946. description: Auth defines parameters to authenticate in senhasegura
  1947. properties:
  1948. clientId:
  1949. type: string
  1950. clientSecretSecretRef:
  1951. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  1952. properties:
  1953. key:
  1954. 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.
  1955. type: string
  1956. name:
  1957. description: The name of the Secret resource being referred to.
  1958. type: string
  1959. namespace:
  1960. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  1961. type: string
  1962. type: object
  1963. required:
  1964. - clientId
  1965. - clientSecretSecretRef
  1966. type: object
  1967. ignoreSslCertificate:
  1968. default: false
  1969. description: IgnoreSslCertificate defines if SSL certificate must be ignored
  1970. type: boolean
  1971. module:
  1972. description: Module defines which senhasegura module should be used to get secrets
  1973. type: string
  1974. url:
  1975. description: URL of senhasegura
  1976. type: string
  1977. required:
  1978. - auth
  1979. - module
  1980. - url
  1981. type: object
  1982. vault:
  1983. description: Vault configures this store to sync secrets using Hashi provider
  1984. properties:
  1985. auth:
  1986. description: Auth configures how secret-manager authenticates with the Vault server.
  1987. properties:
  1988. appRole:
  1989. description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.
  1990. properties:
  1991. path:
  1992. default: approle
  1993. description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"'
  1994. type: string
  1995. roleId:
  1996. description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.
  1997. type: string
  1998. secretRef:
  1999. 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.
  2000. properties:
  2001. key:
  2002. 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.
  2003. type: string
  2004. name:
  2005. description: The name of the Secret resource being referred to.
  2006. type: string
  2007. namespace:
  2008. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2009. type: string
  2010. type: object
  2011. required:
  2012. - path
  2013. - roleId
  2014. - secretRef
  2015. type: object
  2016. cert:
  2017. description: Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method
  2018. properties:
  2019. clientCert:
  2020. description: ClientCert is a certificate to authenticate using the Cert Vault authentication method
  2021. properties:
  2022. key:
  2023. 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.
  2024. type: string
  2025. name:
  2026. description: The name of the Secret resource being referred to.
  2027. type: string
  2028. namespace:
  2029. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2030. type: string
  2031. type: object
  2032. secretRef:
  2033. description: SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method
  2034. properties:
  2035. key:
  2036. 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.
  2037. type: string
  2038. name:
  2039. description: The name of the Secret resource being referred to.
  2040. type: string
  2041. namespace:
  2042. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2043. type: string
  2044. type: object
  2045. type: object
  2046. jwt:
  2047. description: Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method
  2048. properties:
  2049. kubernetesServiceAccountToken:
  2050. description: Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.
  2051. properties:
  2052. audiences:
  2053. 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.
  2054. items:
  2055. type: string
  2056. type: array
  2057. expirationSeconds:
  2058. 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.
  2059. format: int64
  2060. type: integer
  2061. serviceAccountRef:
  2062. description: Service account field containing the name of a kubernetes ServiceAccount.
  2063. properties:
  2064. name:
  2065. description: The name of the ServiceAccount resource being referred to.
  2066. type: string
  2067. namespace:
  2068. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2069. type: string
  2070. required:
  2071. - name
  2072. type: object
  2073. required:
  2074. - serviceAccountRef
  2075. type: object
  2076. path:
  2077. default: jwt
  2078. description: 'Path where the JWT authentication backend is mounted in Vault, e.g: "jwt"'
  2079. type: string
  2080. role:
  2081. description: Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method
  2082. type: string
  2083. secretRef:
  2084. 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.
  2085. properties:
  2086. key:
  2087. 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.
  2088. type: string
  2089. name:
  2090. description: The name of the Secret resource being referred to.
  2091. type: string
  2092. namespace:
  2093. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2094. type: string
  2095. type: object
  2096. required:
  2097. - path
  2098. type: object
  2099. kubernetes:
  2100. description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.
  2101. properties:
  2102. mountPath:
  2103. default: kubernetes
  2104. description: 'Path where the Kubernetes authentication backend is mounted in Vault, e.g: "kubernetes"'
  2105. type: string
  2106. role:
  2107. description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.
  2108. type: string
  2109. secretRef:
  2110. 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.
  2111. properties:
  2112. key:
  2113. 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.
  2114. type: string
  2115. name:
  2116. description: The name of the Secret resource being referred to.
  2117. type: string
  2118. namespace:
  2119. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2120. type: string
  2121. type: object
  2122. serviceAccountRef:
  2123. 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.
  2124. properties:
  2125. name:
  2126. description: The name of the ServiceAccount resource being referred to.
  2127. type: string
  2128. namespace:
  2129. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2130. type: string
  2131. required:
  2132. - name
  2133. type: object
  2134. required:
  2135. - mountPath
  2136. - role
  2137. type: object
  2138. ldap:
  2139. description: Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method
  2140. properties:
  2141. path:
  2142. default: ldap
  2143. description: 'Path where the LDAP authentication backend is mounted in Vault, e.g: "ldap"'
  2144. type: string
  2145. secretRef:
  2146. 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
  2147. properties:
  2148. key:
  2149. 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.
  2150. type: string
  2151. name:
  2152. description: The name of the Secret resource being referred to.
  2153. type: string
  2154. namespace:
  2155. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2156. type: string
  2157. type: object
  2158. username:
  2159. description: Username is a LDAP user name used to authenticate using the LDAP Vault authentication method
  2160. type: string
  2161. required:
  2162. - path
  2163. - username
  2164. type: object
  2165. tokenSecretRef:
  2166. description: TokenSecretRef authenticates with Vault by presenting a token.
  2167. properties:
  2168. key:
  2169. 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.
  2170. type: string
  2171. name:
  2172. description: The name of the Secret resource being referred to.
  2173. type: string
  2174. namespace:
  2175. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2176. type: string
  2177. type: object
  2178. type: object
  2179. caBundle:
  2180. 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.
  2181. format: byte
  2182. type: string
  2183. caProvider:
  2184. description: The provider for the CA bundle to use to validate Vault server certificate.
  2185. properties:
  2186. key:
  2187. description: The key the value inside of the provider type to use, only used with "Secret" type
  2188. type: string
  2189. name:
  2190. description: The name of the object located at the provider type.
  2191. type: string
  2192. namespace:
  2193. description: The namespace the Provider type is in.
  2194. type: string
  2195. type:
  2196. description: The type of provider to use such as "Secret", or "ConfigMap".
  2197. enum:
  2198. - Secret
  2199. - ConfigMap
  2200. type: string
  2201. required:
  2202. - name
  2203. - type
  2204. type: object
  2205. forwardInconsistent:
  2206. 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
  2207. type: boolean
  2208. namespace:
  2209. 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'
  2210. type: string
  2211. path:
  2212. 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.'
  2213. type: string
  2214. readYourWrites:
  2215. 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
  2216. type: boolean
  2217. server:
  2218. description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".'
  2219. type: string
  2220. version:
  2221. default: v2
  2222. description: Version is the Vault KV secret engine version. This can be either "v1" or "v2". Version defaults to "v2".
  2223. enum:
  2224. - v1
  2225. - v2
  2226. type: string
  2227. required:
  2228. - auth
  2229. - server
  2230. type: object
  2231. webhook:
  2232. description: Webhook configures this store to sync secrets using a generic templated webhook
  2233. properties:
  2234. body:
  2235. description: Body
  2236. type: string
  2237. caBundle:
  2238. 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.
  2239. format: byte
  2240. type: string
  2241. caProvider:
  2242. description: The provider for the CA bundle to use to validate webhook server certificate.
  2243. properties:
  2244. key:
  2245. description: The key the value inside of the provider type to use, only used with "Secret" type
  2246. type: string
  2247. name:
  2248. description: The name of the object located at the provider type.
  2249. type: string
  2250. namespace:
  2251. description: The namespace the Provider type is in.
  2252. type: string
  2253. type:
  2254. description: The type of provider to use such as "Secret", or "ConfigMap".
  2255. enum:
  2256. - Secret
  2257. - ConfigMap
  2258. type: string
  2259. required:
  2260. - name
  2261. - type
  2262. type: object
  2263. headers:
  2264. additionalProperties:
  2265. type: string
  2266. description: Headers
  2267. type: object
  2268. method:
  2269. description: Webhook Method
  2270. type: string
  2271. result:
  2272. description: Result formatting
  2273. properties:
  2274. jsonPath:
  2275. description: Json path of return value
  2276. type: string
  2277. type: object
  2278. secrets:
  2279. description: Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name
  2280. items:
  2281. properties:
  2282. name:
  2283. description: Name of this secret in templates
  2284. type: string
  2285. secretRef:
  2286. description: Secret ref to fill in credentials
  2287. properties:
  2288. key:
  2289. 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.
  2290. type: string
  2291. name:
  2292. description: The name of the Secret resource being referred to.
  2293. type: string
  2294. namespace:
  2295. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2296. type: string
  2297. type: object
  2298. required:
  2299. - name
  2300. - secretRef
  2301. type: object
  2302. type: array
  2303. timeout:
  2304. description: Timeout
  2305. type: string
  2306. url:
  2307. description: Webhook url to call
  2308. type: string
  2309. required:
  2310. - result
  2311. - url
  2312. type: object
  2313. yandexlockbox:
  2314. description: YandexLockbox configures this store to sync secrets using Yandex Lockbox provider
  2315. properties:
  2316. apiEndpoint:
  2317. description: Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')
  2318. type: string
  2319. auth:
  2320. description: Auth defines the information necessary to authenticate against Yandex Lockbox
  2321. properties:
  2322. authorizedKeySecretRef:
  2323. description: The authorized key used for authentication
  2324. properties:
  2325. key:
  2326. 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.
  2327. type: string
  2328. name:
  2329. description: The name of the Secret resource being referred to.
  2330. type: string
  2331. namespace:
  2332. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2333. type: string
  2334. type: object
  2335. type: object
  2336. caProvider:
  2337. description: The provider for the CA bundle to use to validate Yandex.Cloud server certificate.
  2338. properties:
  2339. certSecretRef:
  2340. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  2341. properties:
  2342. key:
  2343. 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.
  2344. type: string
  2345. name:
  2346. description: The name of the Secret resource being referred to.
  2347. type: string
  2348. namespace:
  2349. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  2350. type: string
  2351. type: object
  2352. type: object
  2353. required:
  2354. - auth
  2355. type: object
  2356. type: object
  2357. refreshInterval:
  2358. description: Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.
  2359. type: integer
  2360. retrySettings:
  2361. description: Used to configure http retries if failed
  2362. properties:
  2363. maxRetries:
  2364. format: int32
  2365. type: integer
  2366. retryInterval:
  2367. type: string
  2368. type: object
  2369. required:
  2370. - provider
  2371. type: object
  2372. status:
  2373. description: SecretStoreStatus defines the observed state of the SecretStore.
  2374. properties:
  2375. conditions:
  2376. items:
  2377. properties:
  2378. lastTransitionTime:
  2379. format: date-time
  2380. type: string
  2381. message:
  2382. type: string
  2383. reason:
  2384. type: string
  2385. status:
  2386. type: string
  2387. type:
  2388. type: string
  2389. required:
  2390. - status
  2391. - type
  2392. type: object
  2393. type: array
  2394. type: object
  2395. type: object
  2396. served: true
  2397. storage: true
  2398. subresources:
  2399. status: {}
  2400. conversion:
  2401. strategy: Webhook
  2402. webhook:
  2403. conversionReviewVersions:
  2404. - v1
  2405. clientConfig:
  2406. service:
  2407. name: kubernetes
  2408. namespace: default
  2409. path: /convert
  2410. status:
  2411. acceptedNames:
  2412. kind: ""
  2413. plural: ""
  2414. conditions: []
  2415. storedVersions: []
  2416. ---
  2417. apiVersion: apiextensions.k8s.io/v1
  2418. kind: CustomResourceDefinition
  2419. metadata:
  2420. annotations:
  2421. controller-gen.kubebuilder.io/version: v0.8.0
  2422. creationTimestamp: null
  2423. name: externalsecrets.external-secrets.io
  2424. spec:
  2425. group: external-secrets.io
  2426. names:
  2427. categories:
  2428. - externalsecrets
  2429. kind: ExternalSecret
  2430. listKind: ExternalSecretList
  2431. plural: externalsecrets
  2432. shortNames:
  2433. - es
  2434. singular: externalsecret
  2435. scope: Namespaced
  2436. versions:
  2437. - additionalPrinterColumns:
  2438. - jsonPath: .spec.secretStoreRef.name
  2439. name: Store
  2440. type: string
  2441. - jsonPath: .spec.refreshInterval
  2442. name: Refresh Interval
  2443. type: string
  2444. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  2445. name: Status
  2446. type: string
  2447. deprecated: true
  2448. name: v1alpha1
  2449. schema:
  2450. openAPIV3Schema:
  2451. description: ExternalSecret is the Schema for the external-secrets API.
  2452. properties:
  2453. apiVersion:
  2454. 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'
  2455. type: string
  2456. kind:
  2457. 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'
  2458. type: string
  2459. metadata:
  2460. type: object
  2461. spec:
  2462. description: ExternalSecretSpec defines the desired state of ExternalSecret.
  2463. properties:
  2464. data:
  2465. description: Data defines the connection between the Kubernetes Secret keys and the Provider data
  2466. items:
  2467. description: ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.
  2468. properties:
  2469. remoteRef:
  2470. description: ExternalSecretDataRemoteRef defines Provider data location.
  2471. properties:
  2472. conversionStrategy:
  2473. default: Default
  2474. description: Used to define a conversion Strategy
  2475. type: string
  2476. key:
  2477. description: Key is the key used in the Provider, mandatory
  2478. type: string
  2479. property:
  2480. description: Used to select a specific property of the Provider value (if a map), if supported
  2481. type: string
  2482. version:
  2483. description: Used to select a specific version of the Provider value, if supported
  2484. type: string
  2485. required:
  2486. - key
  2487. type: object
  2488. secretKey:
  2489. type: string
  2490. required:
  2491. - remoteRef
  2492. - secretKey
  2493. type: object
  2494. type: array
  2495. dataFrom:
  2496. 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
  2497. items:
  2498. description: ExternalSecretDataRemoteRef defines Provider data location.
  2499. properties:
  2500. conversionStrategy:
  2501. default: Default
  2502. description: Used to define a conversion Strategy
  2503. type: string
  2504. key:
  2505. description: Key is the key used in the Provider, mandatory
  2506. type: string
  2507. property:
  2508. description: Used to select a specific property of the Provider value (if a map), if supported
  2509. type: string
  2510. version:
  2511. description: Used to select a specific version of the Provider value, if supported
  2512. type: string
  2513. required:
  2514. - key
  2515. type: object
  2516. type: array
  2517. refreshInterval:
  2518. default: 1h
  2519. 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.
  2520. type: string
  2521. secretStoreRef:
  2522. description: SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.
  2523. properties:
  2524. kind:
  2525. description: Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`
  2526. type: string
  2527. name:
  2528. description: Name of the SecretStore resource
  2529. type: string
  2530. required:
  2531. - name
  2532. type: object
  2533. target:
  2534. description: ExternalSecretTarget defines the Kubernetes Secret to be created There can be only one target per ExternalSecret.
  2535. properties:
  2536. creationPolicy:
  2537. default: Owner
  2538. description: CreationPolicy defines rules on how to create the resulting Secret Defaults to 'Owner'
  2539. type: string
  2540. immutable:
  2541. description: Immutable defines if the final secret will be immutable
  2542. type: boolean
  2543. name:
  2544. 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
  2545. type: string
  2546. template:
  2547. description: Template defines a blueprint for the created Secret resource.
  2548. properties:
  2549. data:
  2550. additionalProperties:
  2551. type: string
  2552. type: object
  2553. engineVersion:
  2554. default: v1
  2555. description: EngineVersion specifies the template engine version that should be used to compile/execute the template specified in .data and .templateFrom[].
  2556. type: string
  2557. metadata:
  2558. description: ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.
  2559. properties:
  2560. annotations:
  2561. additionalProperties:
  2562. type: string
  2563. type: object
  2564. labels:
  2565. additionalProperties:
  2566. type: string
  2567. type: object
  2568. type: object
  2569. templateFrom:
  2570. items:
  2571. maxProperties: 1
  2572. minProperties: 1
  2573. properties:
  2574. configMap:
  2575. properties:
  2576. items:
  2577. items:
  2578. properties:
  2579. key:
  2580. type: string
  2581. required:
  2582. - key
  2583. type: object
  2584. type: array
  2585. name:
  2586. type: string
  2587. required:
  2588. - items
  2589. - name
  2590. type: object
  2591. secret:
  2592. properties:
  2593. items:
  2594. items:
  2595. properties:
  2596. key:
  2597. type: string
  2598. required:
  2599. - key
  2600. type: object
  2601. type: array
  2602. name:
  2603. type: string
  2604. required:
  2605. - items
  2606. - name
  2607. type: object
  2608. type: object
  2609. type: array
  2610. type:
  2611. type: string
  2612. type: object
  2613. type: object
  2614. required:
  2615. - secretStoreRef
  2616. - target
  2617. type: object
  2618. status:
  2619. properties:
  2620. conditions:
  2621. items:
  2622. properties:
  2623. lastTransitionTime:
  2624. format: date-time
  2625. type: string
  2626. message:
  2627. type: string
  2628. reason:
  2629. type: string
  2630. status:
  2631. type: string
  2632. type:
  2633. type: string
  2634. required:
  2635. - status
  2636. - type
  2637. type: object
  2638. type: array
  2639. refreshTime:
  2640. description: refreshTime is the time and date the external secret was fetched and the target secret updated
  2641. format: date-time
  2642. nullable: true
  2643. type: string
  2644. syncedResourceVersion:
  2645. description: SyncedResourceVersion keeps track of the last synced version
  2646. type: string
  2647. type: object
  2648. type: object
  2649. served: true
  2650. storage: false
  2651. subresources:
  2652. status: {}
  2653. - additionalPrinterColumns:
  2654. - jsonPath: .spec.secretStoreRef.name
  2655. name: Store
  2656. type: string
  2657. - jsonPath: .spec.refreshInterval
  2658. name: Refresh Interval
  2659. type: string
  2660. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  2661. name: Status
  2662. type: string
  2663. name: v1beta1
  2664. schema:
  2665. openAPIV3Schema:
  2666. description: ExternalSecret is the Schema for the external-secrets API.
  2667. properties:
  2668. apiVersion:
  2669. 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'
  2670. type: string
  2671. kind:
  2672. 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'
  2673. type: string
  2674. metadata:
  2675. type: object
  2676. spec:
  2677. description: ExternalSecretSpec defines the desired state of ExternalSecret.
  2678. properties:
  2679. data:
  2680. description: Data defines the connection between the Kubernetes Secret keys and the Provider data
  2681. items:
  2682. description: ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.
  2683. properties:
  2684. remoteRef:
  2685. description: ExternalSecretDataRemoteRef defines Provider data location.
  2686. properties:
  2687. conversionStrategy:
  2688. default: Default
  2689. description: Used to define a conversion Strategy
  2690. type: string
  2691. key:
  2692. description: Key is the key used in the Provider, mandatory
  2693. type: string
  2694. property:
  2695. description: Used to select a specific property of the Provider value (if a map), if supported
  2696. type: string
  2697. version:
  2698. description: Used to select a specific version of the Provider value, if supported
  2699. type: string
  2700. required:
  2701. - key
  2702. type: object
  2703. secretKey:
  2704. type: string
  2705. required:
  2706. - remoteRef
  2707. - secretKey
  2708. type: object
  2709. type: array
  2710. dataFrom:
  2711. 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
  2712. items:
  2713. maxProperties: 1
  2714. minProperties: 1
  2715. properties:
  2716. extract:
  2717. description: Used to extract multiple key/value pairs from one secret
  2718. properties:
  2719. conversionStrategy:
  2720. default: Default
  2721. description: Used to define a conversion Strategy
  2722. type: string
  2723. key:
  2724. description: Key is the key used in the Provider, mandatory
  2725. type: string
  2726. property:
  2727. description: Used to select a specific property of the Provider value (if a map), if supported
  2728. type: string
  2729. version:
  2730. description: Used to select a specific version of the Provider value, if supported
  2731. type: string
  2732. required:
  2733. - key
  2734. type: object
  2735. find:
  2736. description: Used to find secrets based on tags or regular expressions
  2737. properties:
  2738. conversionStrategy:
  2739. default: Default
  2740. description: Used to define a conversion Strategy
  2741. type: string
  2742. name:
  2743. description: Finds secrets based on the name.
  2744. properties:
  2745. regexp:
  2746. description: Finds secrets base
  2747. type: string
  2748. type: object
  2749. path:
  2750. description: A root path to start the find operations.
  2751. type: string
  2752. tags:
  2753. additionalProperties:
  2754. type: string
  2755. description: Find secrets based on tags.
  2756. type: object
  2757. type: object
  2758. type: object
  2759. type: array
  2760. refreshInterval:
  2761. default: 1h
  2762. 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.
  2763. type: string
  2764. secretStoreRef:
  2765. description: SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.
  2766. properties:
  2767. kind:
  2768. description: Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`
  2769. type: string
  2770. name:
  2771. description: Name of the SecretStore resource
  2772. type: string
  2773. required:
  2774. - name
  2775. type: object
  2776. target:
  2777. description: ExternalSecretTarget defines the Kubernetes Secret to be created There can be only one target per ExternalSecret.
  2778. properties:
  2779. creationPolicy:
  2780. default: Owner
  2781. description: CreationPolicy defines rules on how to create the resulting Secret Defaults to 'Owner'
  2782. enum:
  2783. - Owner
  2784. - Orphan
  2785. - Merge
  2786. - None
  2787. type: string
  2788. deletionPolicy:
  2789. default: Retain
  2790. description: DeletionPolicy defines rules on how to delete the resulting Secret Defaults to 'Retain'
  2791. enum:
  2792. - Delete
  2793. - Merge
  2794. - Retain
  2795. type: string
  2796. immutable:
  2797. description: Immutable defines if the final secret will be immutable
  2798. type: boolean
  2799. name:
  2800. 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
  2801. type: string
  2802. template:
  2803. description: Template defines a blueprint for the created Secret resource.
  2804. properties:
  2805. data:
  2806. additionalProperties:
  2807. type: string
  2808. type: object
  2809. engineVersion:
  2810. default: v2
  2811. type: string
  2812. metadata:
  2813. description: ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.
  2814. properties:
  2815. annotations:
  2816. additionalProperties:
  2817. type: string
  2818. type: object
  2819. labels:
  2820. additionalProperties:
  2821. type: string
  2822. type: object
  2823. type: object
  2824. templateFrom:
  2825. items:
  2826. maxProperties: 1
  2827. minProperties: 1
  2828. properties:
  2829. configMap:
  2830. properties:
  2831. items:
  2832. items:
  2833. properties:
  2834. key:
  2835. type: string
  2836. required:
  2837. - key
  2838. type: object
  2839. type: array
  2840. name:
  2841. type: string
  2842. required:
  2843. - items
  2844. - name
  2845. type: object
  2846. secret:
  2847. properties:
  2848. items:
  2849. items:
  2850. properties:
  2851. key:
  2852. type: string
  2853. required:
  2854. - key
  2855. type: object
  2856. type: array
  2857. name:
  2858. type: string
  2859. required:
  2860. - items
  2861. - name
  2862. type: object
  2863. type: object
  2864. type: array
  2865. type:
  2866. type: string
  2867. type: object
  2868. type: object
  2869. required:
  2870. - secretStoreRef
  2871. type: object
  2872. status:
  2873. properties:
  2874. conditions:
  2875. items:
  2876. properties:
  2877. lastTransitionTime:
  2878. format: date-time
  2879. type: string
  2880. message:
  2881. type: string
  2882. reason:
  2883. type: string
  2884. status:
  2885. type: string
  2886. type:
  2887. type: string
  2888. required:
  2889. - status
  2890. - type
  2891. type: object
  2892. type: array
  2893. refreshTime:
  2894. description: refreshTime is the time and date the external secret was fetched and the target secret updated
  2895. format: date-time
  2896. nullable: true
  2897. type: string
  2898. syncedResourceVersion:
  2899. description: SyncedResourceVersion keeps track of the last synced version
  2900. type: string
  2901. type: object
  2902. type: object
  2903. served: true
  2904. storage: true
  2905. subresources:
  2906. status: {}
  2907. conversion:
  2908. strategy: Webhook
  2909. webhook:
  2910. conversionReviewVersions:
  2911. - v1
  2912. clientConfig:
  2913. service:
  2914. name: kubernetes
  2915. namespace: default
  2916. path: /convert
  2917. status:
  2918. acceptedNames:
  2919. kind: ""
  2920. plural: ""
  2921. conditions: []
  2922. storedVersions: []
  2923. ---
  2924. apiVersion: apiextensions.k8s.io/v1
  2925. kind: CustomResourceDefinition
  2926. metadata:
  2927. annotations:
  2928. controller-gen.kubebuilder.io/version: v0.8.0
  2929. creationTimestamp: null
  2930. name: secretsinks.external-secrets.io
  2931. spec:
  2932. group: external-secrets.io
  2933. names:
  2934. categories:
  2935. - secretsinks
  2936. kind: SecretSink
  2937. listKind: SecretSinkList
  2938. plural: secretsinks
  2939. singular: secretsink
  2940. scope: Namespaced
  2941. versions:
  2942. - name: v1alpha1
  2943. schema:
  2944. openAPIV3Schema:
  2945. properties:
  2946. apiVersion:
  2947. 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'
  2948. type: string
  2949. kind:
  2950. 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'
  2951. type: string
  2952. metadata:
  2953. type: object
  2954. spec:
  2955. description: SecretSinkSpec configures the behavior of the SecretSink.
  2956. properties:
  2957. data:
  2958. items:
  2959. type: string
  2960. type: array
  2961. selector:
  2962. type: string
  2963. required:
  2964. - selector
  2965. type: object
  2966. status:
  2967. description: SecretSinkStatus indicates the history of the status of SecretSink.
  2968. properties:
  2969. conditions:
  2970. items:
  2971. description: SecretSinkStatusCondition indicates the status of the SecretSink.
  2972. properties:
  2973. lastTransitionTime:
  2974. format: date-time
  2975. type: string
  2976. message:
  2977. type: string
  2978. reason:
  2979. type: string
  2980. status:
  2981. type: string
  2982. type:
  2983. description: SecretSinkConditionType indicates the condition of the SecretSink.
  2984. type: string
  2985. required:
  2986. - status
  2987. - type
  2988. type: object
  2989. type: array
  2990. refreshTime:
  2991. description: refreshTime is the time and date the external secret was fetched and the target secret updated
  2992. format: date-time
  2993. nullable: true
  2994. type: string
  2995. syncedResourceVersion:
  2996. description: SyncedResourceVersion keeps track of the last synced version.
  2997. type: string
  2998. type: object
  2999. type: object
  3000. served: true
  3001. storage: true
  3002. subresources:
  3003. status: {}
  3004. conversion:
  3005. strategy: Webhook
  3006. webhook:
  3007. conversionReviewVersions:
  3008. - v1
  3009. clientConfig:
  3010. service:
  3011. name: kubernetes
  3012. namespace: default
  3013. path: /convert
  3014. status:
  3015. acceptedNames:
  3016. kind: ""
  3017. plural: ""
  3018. conditions: []
  3019. storedVersions: []
  3020. ---
  3021. apiVersion: apiextensions.k8s.io/v1
  3022. kind: CustomResourceDefinition
  3023. metadata:
  3024. annotations:
  3025. controller-gen.kubebuilder.io/version: v0.8.0
  3026. creationTimestamp: null
  3027. name: secretstores.external-secrets.io
  3028. spec:
  3029. group: external-secrets.io
  3030. names:
  3031. categories:
  3032. - externalsecrets
  3033. kind: SecretStore
  3034. listKind: SecretStoreList
  3035. plural: secretstores
  3036. shortNames:
  3037. - ss
  3038. singular: secretstore
  3039. scope: Namespaced
  3040. versions:
  3041. - additionalPrinterColumns:
  3042. - jsonPath: .metadata.creationTimestamp
  3043. name: AGE
  3044. type: date
  3045. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  3046. name: Status
  3047. type: string
  3048. deprecated: true
  3049. name: v1alpha1
  3050. schema:
  3051. openAPIV3Schema:
  3052. description: SecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
  3053. properties:
  3054. apiVersion:
  3055. 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'
  3056. type: string
  3057. kind:
  3058. 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'
  3059. type: string
  3060. metadata:
  3061. type: object
  3062. spec:
  3063. description: SecretStoreSpec defines the desired state of SecretStore.
  3064. properties:
  3065. controller:
  3066. 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'
  3067. type: string
  3068. provider:
  3069. description: Used to configure the provider. Only one provider may be set
  3070. maxProperties: 1
  3071. minProperties: 1
  3072. properties:
  3073. akeyless:
  3074. description: Akeyless configures this store to sync secrets using Akeyless Vault provider
  3075. properties:
  3076. akeylessGWApiURL:
  3077. description: Akeyless GW API Url from which the secrets to be fetched from.
  3078. type: string
  3079. authSecretRef:
  3080. description: Auth configures how the operator authenticates with Akeyless.
  3081. properties:
  3082. secretRef:
  3083. description: 'AkeylessAuthSecretRef AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.'
  3084. properties:
  3085. accessID:
  3086. description: The SecretAccessID is used for authentication
  3087. properties:
  3088. key:
  3089. 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.
  3090. type: string
  3091. name:
  3092. description: The name of the Secret resource being referred to.
  3093. type: string
  3094. namespace:
  3095. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3096. type: string
  3097. type: object
  3098. accessType:
  3099. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3100. properties:
  3101. key:
  3102. 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.
  3103. type: string
  3104. name:
  3105. description: The name of the Secret resource being referred to.
  3106. type: string
  3107. namespace:
  3108. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3109. type: string
  3110. type: object
  3111. accessTypeParam:
  3112. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3113. properties:
  3114. key:
  3115. 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.
  3116. type: string
  3117. name:
  3118. description: The name of the Secret resource being referred to.
  3119. type: string
  3120. namespace:
  3121. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3122. type: string
  3123. type: object
  3124. type: object
  3125. required:
  3126. - secretRef
  3127. type: object
  3128. required:
  3129. - akeylessGWApiURL
  3130. - authSecretRef
  3131. type: object
  3132. alibaba:
  3133. description: Alibaba configures this store to sync secrets using Alibaba Cloud provider
  3134. properties:
  3135. auth:
  3136. description: AlibabaAuth contains a secretRef for credentials.
  3137. properties:
  3138. secretRef:
  3139. description: AlibabaAuthSecretRef holds secret references for Alibaba credentials.
  3140. properties:
  3141. accessKeyIDSecretRef:
  3142. description: The AccessKeyID is used for authentication
  3143. properties:
  3144. key:
  3145. 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.
  3146. type: string
  3147. name:
  3148. description: The name of the Secret resource being referred to.
  3149. type: string
  3150. namespace:
  3151. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3152. type: string
  3153. type: object
  3154. accessKeySecretSecretRef:
  3155. description: The AccessKeySecret is used for authentication
  3156. properties:
  3157. key:
  3158. 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.
  3159. type: string
  3160. name:
  3161. description: The name of the Secret resource being referred to.
  3162. type: string
  3163. namespace:
  3164. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3165. type: string
  3166. type: object
  3167. required:
  3168. - accessKeyIDSecretRef
  3169. - accessKeySecretSecretRef
  3170. type: object
  3171. required:
  3172. - secretRef
  3173. type: object
  3174. endpoint:
  3175. type: string
  3176. regionID:
  3177. description: Alibaba Region to be used for the provider
  3178. type: string
  3179. required:
  3180. - auth
  3181. - regionID
  3182. type: object
  3183. aws:
  3184. description: AWS configures this store to sync secrets using AWS Secret Manager provider
  3185. properties:
  3186. auth:
  3187. 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'
  3188. properties:
  3189. jwt:
  3190. description: Authenticate against AWS using service account tokens.
  3191. properties:
  3192. serviceAccountRef:
  3193. description: A reference to a ServiceAccount resource.
  3194. properties:
  3195. name:
  3196. description: The name of the ServiceAccount resource being referred to.
  3197. type: string
  3198. namespace:
  3199. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3200. type: string
  3201. required:
  3202. - name
  3203. type: object
  3204. type: object
  3205. secretRef:
  3206. description: AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.
  3207. properties:
  3208. accessKeyIDSecretRef:
  3209. description: The AccessKeyID is used for authentication
  3210. properties:
  3211. key:
  3212. 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.
  3213. type: string
  3214. name:
  3215. description: The name of the Secret resource being referred to.
  3216. type: string
  3217. namespace:
  3218. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3219. type: string
  3220. type: object
  3221. secretAccessKeySecretRef:
  3222. description: The SecretAccessKey is used for authentication
  3223. properties:
  3224. key:
  3225. 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.
  3226. type: string
  3227. name:
  3228. description: The name of the Secret resource being referred to.
  3229. type: string
  3230. namespace:
  3231. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3232. type: string
  3233. type: object
  3234. type: object
  3235. type: object
  3236. region:
  3237. description: AWS Region to be used for the provider
  3238. type: string
  3239. role:
  3240. description: Role is a Role ARN which the SecretManager provider will assume
  3241. type: string
  3242. service:
  3243. description: Service defines which service should be used to fetch the secrets
  3244. enum:
  3245. - SecretsManager
  3246. - ParameterStore
  3247. type: string
  3248. required:
  3249. - region
  3250. - service
  3251. type: object
  3252. azurekv:
  3253. description: AzureKV configures this store to sync secrets using Azure Key Vault provider
  3254. properties:
  3255. authSecretRef:
  3256. description: Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.
  3257. properties:
  3258. clientId:
  3259. description: The Azure clientId of the service principle used for authentication.
  3260. properties:
  3261. key:
  3262. 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.
  3263. type: string
  3264. name:
  3265. description: The name of the Secret resource being referred to.
  3266. type: string
  3267. namespace:
  3268. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3269. type: string
  3270. type: object
  3271. clientSecret:
  3272. description: The Azure ClientSecret of the service principle used for authentication.
  3273. properties:
  3274. key:
  3275. 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.
  3276. type: string
  3277. name:
  3278. description: The name of the Secret resource being referred to.
  3279. type: string
  3280. namespace:
  3281. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3282. type: string
  3283. type: object
  3284. type: object
  3285. authType:
  3286. default: ServicePrincipal
  3287. 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)'
  3288. enum:
  3289. - ServicePrincipal
  3290. - ManagedIdentity
  3291. - WorkloadIdentity
  3292. type: string
  3293. identityId:
  3294. description: If multiple Managed Identity is assigned to the pod, you can select the one to be used
  3295. type: string
  3296. serviceAccountRef:
  3297. description: ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.
  3298. properties:
  3299. name:
  3300. description: The name of the ServiceAccount resource being referred to.
  3301. type: string
  3302. namespace:
  3303. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3304. type: string
  3305. required:
  3306. - name
  3307. type: object
  3308. tenantId:
  3309. description: TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.
  3310. type: string
  3311. vaultUrl:
  3312. description: Vault Url from which the secrets to be fetched from.
  3313. type: string
  3314. required:
  3315. - vaultUrl
  3316. type: object
  3317. fake:
  3318. description: Fake configures a store with static key/value pairs
  3319. properties:
  3320. data:
  3321. items:
  3322. properties:
  3323. key:
  3324. type: string
  3325. value:
  3326. type: string
  3327. valueMap:
  3328. additionalProperties:
  3329. type: string
  3330. type: object
  3331. version:
  3332. type: string
  3333. required:
  3334. - key
  3335. type: object
  3336. type: array
  3337. required:
  3338. - data
  3339. type: object
  3340. gcpsm:
  3341. description: GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider
  3342. properties:
  3343. auth:
  3344. description: Auth defines the information necessary to authenticate against GCP
  3345. properties:
  3346. secretRef:
  3347. properties:
  3348. secretAccessKeySecretRef:
  3349. description: The SecretAccessKey is used for authentication
  3350. properties:
  3351. key:
  3352. 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.
  3353. type: string
  3354. name:
  3355. description: The name of the Secret resource being referred to.
  3356. type: string
  3357. namespace:
  3358. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3359. type: string
  3360. type: object
  3361. type: object
  3362. workloadIdentity:
  3363. properties:
  3364. clusterLocation:
  3365. type: string
  3366. clusterName:
  3367. type: string
  3368. clusterProjectID:
  3369. type: string
  3370. serviceAccountRef:
  3371. description: A reference to a ServiceAccount resource.
  3372. properties:
  3373. name:
  3374. description: The name of the ServiceAccount resource being referred to.
  3375. type: string
  3376. namespace:
  3377. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3378. type: string
  3379. required:
  3380. - name
  3381. type: object
  3382. required:
  3383. - clusterLocation
  3384. - clusterName
  3385. - serviceAccountRef
  3386. type: object
  3387. type: object
  3388. projectID:
  3389. description: ProjectID project where secret is located
  3390. type: string
  3391. type: object
  3392. gitlab:
  3393. description: Gitlab configures this store to sync secrets using Gitlab Variables provider
  3394. properties:
  3395. auth:
  3396. description: Auth configures how secret-manager authenticates with a GitLab instance.
  3397. properties:
  3398. SecretRef:
  3399. properties:
  3400. accessToken:
  3401. description: AccessToken is used for authentication.
  3402. properties:
  3403. key:
  3404. 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.
  3405. type: string
  3406. name:
  3407. description: The name of the Secret resource being referred to.
  3408. type: string
  3409. namespace:
  3410. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3411. type: string
  3412. type: object
  3413. type: object
  3414. required:
  3415. - SecretRef
  3416. type: object
  3417. projectID:
  3418. description: ProjectID specifies a project where secrets are located.
  3419. type: string
  3420. url:
  3421. description: URL configures the GitLab instance URL. Defaults to https://gitlab.com/.
  3422. type: string
  3423. required:
  3424. - auth
  3425. type: object
  3426. ibm:
  3427. description: IBM configures this store to sync secrets using IBM Cloud provider
  3428. properties:
  3429. auth:
  3430. description: Auth configures how secret-manager authenticates with the IBM secrets manager.
  3431. properties:
  3432. secretRef:
  3433. properties:
  3434. secretApiKeySecretRef:
  3435. description: The SecretAccessKey is used for authentication
  3436. properties:
  3437. key:
  3438. 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.
  3439. type: string
  3440. name:
  3441. description: The name of the Secret resource being referred to.
  3442. type: string
  3443. namespace:
  3444. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3445. type: string
  3446. type: object
  3447. type: object
  3448. required:
  3449. - secretRef
  3450. type: object
  3451. serviceUrl:
  3452. description: ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance
  3453. type: string
  3454. required:
  3455. - auth
  3456. type: object
  3457. kubernetes:
  3458. description: Kubernetes configures this store to sync secrets using a Kubernetes cluster provider
  3459. properties:
  3460. auth:
  3461. description: Auth configures how secret-manager authenticates with a Kubernetes instance.
  3462. maxProperties: 1
  3463. minProperties: 1
  3464. properties:
  3465. cert:
  3466. description: has both clientCert and clientKey as secretKeySelector
  3467. properties:
  3468. clientCert:
  3469. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3470. properties:
  3471. key:
  3472. 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.
  3473. type: string
  3474. name:
  3475. description: The name of the Secret resource being referred to.
  3476. type: string
  3477. namespace:
  3478. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3479. type: string
  3480. type: object
  3481. clientKey:
  3482. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3483. properties:
  3484. key:
  3485. 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.
  3486. type: string
  3487. name:
  3488. description: The name of the Secret resource being referred to.
  3489. type: string
  3490. namespace:
  3491. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3492. type: string
  3493. type: object
  3494. type: object
  3495. serviceAccount:
  3496. description: points to a service account that should be used for authentication
  3497. properties:
  3498. serviceAccount:
  3499. description: A reference to a ServiceAccount resource.
  3500. properties:
  3501. name:
  3502. description: The name of the ServiceAccount resource being referred to.
  3503. type: string
  3504. namespace:
  3505. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3506. type: string
  3507. required:
  3508. - name
  3509. type: object
  3510. type: object
  3511. token:
  3512. description: use static token to authenticate with
  3513. properties:
  3514. bearerToken:
  3515. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3516. properties:
  3517. key:
  3518. 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.
  3519. type: string
  3520. name:
  3521. description: The name of the Secret resource being referred to.
  3522. type: string
  3523. namespace:
  3524. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3525. type: string
  3526. type: object
  3527. type: object
  3528. type: object
  3529. remoteNamespace:
  3530. default: default
  3531. description: Remote namespace to fetch the secrets from
  3532. type: string
  3533. server:
  3534. description: configures the Kubernetes server Address.
  3535. properties:
  3536. caBundle:
  3537. description: CABundle is a base64-encoded CA certificate
  3538. format: byte
  3539. type: string
  3540. caProvider:
  3541. description: 'see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider'
  3542. properties:
  3543. key:
  3544. description: The key the value inside of the provider type to use, only used with "Secret" type
  3545. type: string
  3546. name:
  3547. description: The name of the object located at the provider type.
  3548. type: string
  3549. namespace:
  3550. description: The namespace the Provider type is in.
  3551. type: string
  3552. type:
  3553. description: The type of provider to use such as "Secret", or "ConfigMap".
  3554. enum:
  3555. - Secret
  3556. - ConfigMap
  3557. type: string
  3558. required:
  3559. - name
  3560. - type
  3561. type: object
  3562. url:
  3563. default: kubernetes.default
  3564. description: configures the Kubernetes server Address.
  3565. type: string
  3566. type: object
  3567. required:
  3568. - auth
  3569. type: object
  3570. oracle:
  3571. description: Oracle configures this store to sync secrets using Oracle Vault provider
  3572. properties:
  3573. auth:
  3574. description: Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.
  3575. properties:
  3576. secretRef:
  3577. description: SecretRef to pass through sensitive information.
  3578. properties:
  3579. fingerprint:
  3580. description: Fingerprint is the fingerprint of the API private key.
  3581. properties:
  3582. key:
  3583. 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.
  3584. type: string
  3585. name:
  3586. description: The name of the Secret resource being referred to.
  3587. type: string
  3588. namespace:
  3589. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3590. type: string
  3591. type: object
  3592. privatekey:
  3593. description: PrivateKey is the user's API Signing Key in PEM format, used for authentication.
  3594. properties:
  3595. key:
  3596. 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.
  3597. type: string
  3598. name:
  3599. description: The name of the Secret resource being referred to.
  3600. type: string
  3601. namespace:
  3602. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3603. type: string
  3604. type: object
  3605. required:
  3606. - fingerprint
  3607. - privatekey
  3608. type: object
  3609. tenancy:
  3610. description: Tenancy is the tenancy OCID where user is located.
  3611. type: string
  3612. user:
  3613. description: User is an access OCID specific to the account.
  3614. type: string
  3615. required:
  3616. - secretRef
  3617. - tenancy
  3618. - user
  3619. type: object
  3620. region:
  3621. description: Region is the region where vault is located.
  3622. type: string
  3623. vault:
  3624. description: Vault is the vault's OCID of the specific vault where secret is located.
  3625. type: string
  3626. required:
  3627. - region
  3628. - vault
  3629. type: object
  3630. vault:
  3631. description: Vault configures this store to sync secrets using Hashi provider
  3632. properties:
  3633. auth:
  3634. description: Auth configures how secret-manager authenticates with the Vault server.
  3635. properties:
  3636. appRole:
  3637. description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.
  3638. properties:
  3639. path:
  3640. default: approle
  3641. description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"'
  3642. type: string
  3643. roleId:
  3644. description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.
  3645. type: string
  3646. secretRef:
  3647. 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.
  3648. properties:
  3649. key:
  3650. 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.
  3651. type: string
  3652. name:
  3653. description: The name of the Secret resource being referred to.
  3654. type: string
  3655. namespace:
  3656. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3657. type: string
  3658. type: object
  3659. required:
  3660. - path
  3661. - roleId
  3662. - secretRef
  3663. type: object
  3664. cert:
  3665. description: Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method
  3666. properties:
  3667. clientCert:
  3668. description: ClientCert is a certificate to authenticate using the Cert Vault authentication method
  3669. properties:
  3670. key:
  3671. 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.
  3672. type: string
  3673. name:
  3674. description: The name of the Secret resource being referred to.
  3675. type: string
  3676. namespace:
  3677. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3678. type: string
  3679. type: object
  3680. secretRef:
  3681. description: SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method
  3682. properties:
  3683. key:
  3684. 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.
  3685. type: string
  3686. name:
  3687. description: The name of the Secret resource being referred to.
  3688. type: string
  3689. namespace:
  3690. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3691. type: string
  3692. type: object
  3693. type: object
  3694. jwt:
  3695. description: Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method
  3696. properties:
  3697. kubernetesServiceAccountToken:
  3698. description: Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.
  3699. properties:
  3700. audiences:
  3701. 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.
  3702. items:
  3703. type: string
  3704. type: array
  3705. expirationSeconds:
  3706. 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.
  3707. format: int64
  3708. type: integer
  3709. serviceAccountRef:
  3710. description: Service account field containing the name of a kubernetes ServiceAccount.
  3711. properties:
  3712. name:
  3713. description: The name of the ServiceAccount resource being referred to.
  3714. type: string
  3715. namespace:
  3716. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3717. type: string
  3718. required:
  3719. - name
  3720. type: object
  3721. required:
  3722. - serviceAccountRef
  3723. type: object
  3724. path:
  3725. default: jwt
  3726. description: 'Path where the JWT authentication backend is mounted in Vault, e.g: "jwt"'
  3727. type: string
  3728. role:
  3729. description: Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method
  3730. type: string
  3731. secretRef:
  3732. 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.
  3733. properties:
  3734. key:
  3735. 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.
  3736. type: string
  3737. name:
  3738. description: The name of the Secret resource being referred to.
  3739. type: string
  3740. namespace:
  3741. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3742. type: string
  3743. type: object
  3744. required:
  3745. - path
  3746. type: object
  3747. kubernetes:
  3748. description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.
  3749. properties:
  3750. mountPath:
  3751. default: kubernetes
  3752. description: 'Path where the Kubernetes authentication backend is mounted in Vault, e.g: "kubernetes"'
  3753. type: string
  3754. role:
  3755. description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.
  3756. type: string
  3757. secretRef:
  3758. 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.
  3759. properties:
  3760. key:
  3761. 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.
  3762. type: string
  3763. name:
  3764. description: The name of the Secret resource being referred to.
  3765. type: string
  3766. namespace:
  3767. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3768. type: string
  3769. type: object
  3770. serviceAccountRef:
  3771. 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.
  3772. properties:
  3773. name:
  3774. description: The name of the ServiceAccount 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. required:
  3780. - name
  3781. type: object
  3782. required:
  3783. - mountPath
  3784. - role
  3785. type: object
  3786. ldap:
  3787. description: Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method
  3788. properties:
  3789. path:
  3790. default: ldap
  3791. description: 'Path where the LDAP authentication backend is mounted in Vault, e.g: "ldap"'
  3792. type: string
  3793. secretRef:
  3794. 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
  3795. properties:
  3796. key:
  3797. 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.
  3798. type: string
  3799. name:
  3800. description: The name of the Secret resource being referred to.
  3801. type: string
  3802. namespace:
  3803. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3804. type: string
  3805. type: object
  3806. username:
  3807. description: Username is a LDAP user name used to authenticate using the LDAP Vault authentication method
  3808. type: string
  3809. required:
  3810. - path
  3811. - username
  3812. type: object
  3813. tokenSecretRef:
  3814. description: TokenSecretRef authenticates with Vault by presenting a token.
  3815. properties:
  3816. key:
  3817. 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.
  3818. type: string
  3819. name:
  3820. description: The name of the Secret resource being referred to.
  3821. type: string
  3822. namespace:
  3823. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3824. type: string
  3825. type: object
  3826. type: object
  3827. caBundle:
  3828. 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.
  3829. format: byte
  3830. type: string
  3831. caProvider:
  3832. description: The provider for the CA bundle to use to validate Vault server certificate.
  3833. properties:
  3834. key:
  3835. description: The key the value inside of the provider type to use, only used with "Secret" type
  3836. type: string
  3837. name:
  3838. description: The name of the object located at the provider type.
  3839. type: string
  3840. namespace:
  3841. description: The namespace the Provider type is in.
  3842. type: string
  3843. type:
  3844. description: The type of provider to use such as "Secret", or "ConfigMap".
  3845. enum:
  3846. - Secret
  3847. - ConfigMap
  3848. type: string
  3849. required:
  3850. - name
  3851. - type
  3852. type: object
  3853. forwardInconsistent:
  3854. 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
  3855. type: boolean
  3856. namespace:
  3857. 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'
  3858. type: string
  3859. path:
  3860. 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.'
  3861. type: string
  3862. readYourWrites:
  3863. 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
  3864. type: boolean
  3865. server:
  3866. description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".'
  3867. type: string
  3868. version:
  3869. default: v2
  3870. description: Version is the Vault KV secret engine version. This can be either "v1" or "v2". Version defaults to "v2".
  3871. enum:
  3872. - v1
  3873. - v2
  3874. type: string
  3875. required:
  3876. - auth
  3877. - server
  3878. type: object
  3879. webhook:
  3880. description: Webhook configures this store to sync secrets using a generic templated webhook
  3881. properties:
  3882. body:
  3883. description: Body
  3884. type: string
  3885. caBundle:
  3886. 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.
  3887. format: byte
  3888. type: string
  3889. caProvider:
  3890. description: The provider for the CA bundle to use to validate webhook server certificate.
  3891. properties:
  3892. key:
  3893. description: The key the value inside of the provider type to use, only used with "Secret" type
  3894. type: string
  3895. name:
  3896. description: The name of the object located at the provider type.
  3897. type: string
  3898. namespace:
  3899. description: The namespace the Provider type is in.
  3900. type: string
  3901. type:
  3902. description: The type of provider to use such as "Secret", or "ConfigMap".
  3903. enum:
  3904. - Secret
  3905. - ConfigMap
  3906. type: string
  3907. required:
  3908. - name
  3909. - type
  3910. type: object
  3911. headers:
  3912. additionalProperties:
  3913. type: string
  3914. description: Headers
  3915. type: object
  3916. method:
  3917. description: Webhook Method
  3918. type: string
  3919. result:
  3920. description: Result formatting
  3921. properties:
  3922. jsonPath:
  3923. description: Json path of return value
  3924. type: string
  3925. type: object
  3926. secrets:
  3927. description: Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name
  3928. items:
  3929. properties:
  3930. name:
  3931. description: Name of this secret in templates
  3932. type: string
  3933. secretRef:
  3934. description: Secret ref to fill in credentials
  3935. properties:
  3936. key:
  3937. 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.
  3938. type: string
  3939. name:
  3940. description: The name of the Secret resource being referred to.
  3941. type: string
  3942. namespace:
  3943. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3944. type: string
  3945. type: object
  3946. required:
  3947. - name
  3948. - secretRef
  3949. type: object
  3950. type: array
  3951. timeout:
  3952. description: Timeout
  3953. type: string
  3954. url:
  3955. description: Webhook url to call
  3956. type: string
  3957. required:
  3958. - result
  3959. - url
  3960. type: object
  3961. yandexlockbox:
  3962. description: YandexLockbox configures this store to sync secrets using Yandex Lockbox provider
  3963. properties:
  3964. apiEndpoint:
  3965. description: Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')
  3966. type: string
  3967. auth:
  3968. description: Auth defines the information necessary to authenticate against Yandex Lockbox
  3969. properties:
  3970. authorizedKeySecretRef:
  3971. description: The authorized key used for authentication
  3972. properties:
  3973. key:
  3974. 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.
  3975. type: string
  3976. name:
  3977. description: The name of the Secret resource being referred to.
  3978. type: string
  3979. namespace:
  3980. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3981. type: string
  3982. type: object
  3983. type: object
  3984. caProvider:
  3985. description: The provider for the CA bundle to use to validate Yandex.Cloud server certificate.
  3986. properties:
  3987. certSecretRef:
  3988. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  3989. properties:
  3990. key:
  3991. 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.
  3992. type: string
  3993. name:
  3994. description: The name of the Secret resource being referred to.
  3995. type: string
  3996. namespace:
  3997. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  3998. type: string
  3999. type: object
  4000. type: object
  4001. required:
  4002. - auth
  4003. type: object
  4004. type: object
  4005. retrySettings:
  4006. description: Used to configure http retries if failed
  4007. properties:
  4008. maxRetries:
  4009. format: int32
  4010. type: integer
  4011. retryInterval:
  4012. type: string
  4013. type: object
  4014. required:
  4015. - provider
  4016. type: object
  4017. status:
  4018. description: SecretStoreStatus defines the observed state of the SecretStore.
  4019. properties:
  4020. conditions:
  4021. items:
  4022. properties:
  4023. lastTransitionTime:
  4024. format: date-time
  4025. type: string
  4026. message:
  4027. type: string
  4028. reason:
  4029. type: string
  4030. status:
  4031. type: string
  4032. type:
  4033. type: string
  4034. required:
  4035. - status
  4036. - type
  4037. type: object
  4038. type: array
  4039. type: object
  4040. type: object
  4041. served: true
  4042. storage: false
  4043. subresources:
  4044. status: {}
  4045. - additionalPrinterColumns:
  4046. - jsonPath: .metadata.creationTimestamp
  4047. name: AGE
  4048. type: date
  4049. - jsonPath: .status.conditions[?(@.type=="Ready")].reason
  4050. name: Status
  4051. type: string
  4052. name: v1beta1
  4053. schema:
  4054. openAPIV3Schema:
  4055. description: SecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
  4056. properties:
  4057. apiVersion:
  4058. 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'
  4059. type: string
  4060. kind:
  4061. 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'
  4062. type: string
  4063. metadata:
  4064. type: object
  4065. spec:
  4066. description: SecretStoreSpec defines the desired state of SecretStore.
  4067. properties:
  4068. controller:
  4069. 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'
  4070. type: string
  4071. provider:
  4072. description: Used to configure the provider. Only one provider may be set
  4073. maxProperties: 1
  4074. minProperties: 1
  4075. properties:
  4076. akeyless:
  4077. description: Akeyless configures this store to sync secrets using Akeyless Vault provider
  4078. properties:
  4079. akeylessGWApiURL:
  4080. description: Akeyless GW API Url from which the secrets to be fetched from.
  4081. type: string
  4082. authSecretRef:
  4083. description: Auth configures how the operator authenticates with Akeyless.
  4084. properties:
  4085. secretRef:
  4086. description: 'AkeylessAuthSecretRef AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.'
  4087. properties:
  4088. accessID:
  4089. description: The SecretAccessID is used for authentication
  4090. properties:
  4091. key:
  4092. 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.
  4093. type: string
  4094. name:
  4095. description: The name of the Secret resource being referred to.
  4096. type: string
  4097. namespace:
  4098. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4099. type: string
  4100. type: object
  4101. accessType:
  4102. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4103. properties:
  4104. key:
  4105. 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.
  4106. type: string
  4107. name:
  4108. description: The name of the Secret resource being referred to.
  4109. type: string
  4110. namespace:
  4111. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4112. type: string
  4113. type: object
  4114. accessTypeParam:
  4115. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4116. properties:
  4117. key:
  4118. 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.
  4119. type: string
  4120. name:
  4121. description: The name of the Secret resource being referred to.
  4122. type: string
  4123. namespace:
  4124. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4125. type: string
  4126. type: object
  4127. type: object
  4128. required:
  4129. - secretRef
  4130. type: object
  4131. required:
  4132. - akeylessGWApiURL
  4133. - authSecretRef
  4134. type: object
  4135. alibaba:
  4136. description: Alibaba configures this store to sync secrets using Alibaba Cloud provider
  4137. properties:
  4138. auth:
  4139. description: AlibabaAuth contains a secretRef for credentials.
  4140. properties:
  4141. secretRef:
  4142. description: AlibabaAuthSecretRef holds secret references for Alibaba credentials.
  4143. properties:
  4144. accessKeyIDSecretRef:
  4145. description: The AccessKeyID is used for authentication
  4146. properties:
  4147. key:
  4148. 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.
  4149. type: string
  4150. name:
  4151. description: The name of the Secret resource being referred to.
  4152. type: string
  4153. namespace:
  4154. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4155. type: string
  4156. type: object
  4157. accessKeySecretSecretRef:
  4158. description: The AccessKeySecret is used for authentication
  4159. properties:
  4160. key:
  4161. 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.
  4162. type: string
  4163. name:
  4164. description: The name of the Secret resource being referred to.
  4165. type: string
  4166. namespace:
  4167. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4168. type: string
  4169. type: object
  4170. required:
  4171. - accessKeyIDSecretRef
  4172. - accessKeySecretSecretRef
  4173. type: object
  4174. required:
  4175. - secretRef
  4176. type: object
  4177. endpoint:
  4178. type: string
  4179. regionID:
  4180. description: Alibaba Region to be used for the provider
  4181. type: string
  4182. required:
  4183. - auth
  4184. - regionID
  4185. type: object
  4186. aws:
  4187. description: AWS configures this store to sync secrets using AWS Secret Manager provider
  4188. properties:
  4189. auth:
  4190. 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'
  4191. properties:
  4192. jwt:
  4193. description: Authenticate against AWS using service account tokens.
  4194. properties:
  4195. serviceAccountRef:
  4196. description: A reference to a ServiceAccount resource.
  4197. properties:
  4198. name:
  4199. description: The name of the ServiceAccount resource being referred to.
  4200. type: string
  4201. namespace:
  4202. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4203. type: string
  4204. required:
  4205. - name
  4206. type: object
  4207. type: object
  4208. secretRef:
  4209. description: AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.
  4210. properties:
  4211. accessKeyIDSecretRef:
  4212. description: The AccessKeyID is used for authentication
  4213. properties:
  4214. key:
  4215. 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.
  4216. type: string
  4217. name:
  4218. description: The name of the Secret resource being referred to.
  4219. type: string
  4220. namespace:
  4221. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4222. type: string
  4223. type: object
  4224. secretAccessKeySecretRef:
  4225. description: The SecretAccessKey is used for authentication
  4226. properties:
  4227. key:
  4228. 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.
  4229. type: string
  4230. name:
  4231. description: The name of the Secret resource being referred to.
  4232. type: string
  4233. namespace:
  4234. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4235. type: string
  4236. type: object
  4237. type: object
  4238. type: object
  4239. region:
  4240. description: AWS Region to be used for the provider
  4241. type: string
  4242. role:
  4243. description: Role is a Role ARN which the SecretManager provider will assume
  4244. type: string
  4245. service:
  4246. description: Service defines which service should be used to fetch the secrets
  4247. enum:
  4248. - SecretsManager
  4249. - ParameterStore
  4250. type: string
  4251. required:
  4252. - region
  4253. - service
  4254. type: object
  4255. azurekv:
  4256. description: AzureKV configures this store to sync secrets using Azure Key Vault provider
  4257. properties:
  4258. authSecretRef:
  4259. description: Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.
  4260. properties:
  4261. clientId:
  4262. description: The Azure clientId of the service principle used for authentication.
  4263. properties:
  4264. key:
  4265. 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.
  4266. type: string
  4267. name:
  4268. description: The name of the Secret resource being referred to.
  4269. type: string
  4270. namespace:
  4271. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4272. type: string
  4273. type: object
  4274. clientSecret:
  4275. description: The Azure ClientSecret of the service principle used for authentication.
  4276. properties:
  4277. key:
  4278. 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.
  4279. type: string
  4280. name:
  4281. description: The name of the Secret resource being referred to.
  4282. type: string
  4283. namespace:
  4284. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4285. type: string
  4286. type: object
  4287. type: object
  4288. authType:
  4289. default: ServicePrincipal
  4290. 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)'
  4291. enum:
  4292. - ServicePrincipal
  4293. - ManagedIdentity
  4294. - WorkloadIdentity
  4295. type: string
  4296. identityId:
  4297. description: If multiple Managed Identity is assigned to the pod, you can select the one to be used
  4298. type: string
  4299. serviceAccountRef:
  4300. description: ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.
  4301. properties:
  4302. name:
  4303. description: The name of the ServiceAccount resource being referred to.
  4304. type: string
  4305. namespace:
  4306. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4307. type: string
  4308. required:
  4309. - name
  4310. type: object
  4311. tenantId:
  4312. description: TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.
  4313. type: string
  4314. vaultUrl:
  4315. description: Vault Url from which the secrets to be fetched from.
  4316. type: string
  4317. required:
  4318. - vaultUrl
  4319. type: object
  4320. fake:
  4321. description: Fake configures a store with static key/value pairs
  4322. properties:
  4323. data:
  4324. items:
  4325. properties:
  4326. key:
  4327. type: string
  4328. value:
  4329. type: string
  4330. valueMap:
  4331. additionalProperties:
  4332. type: string
  4333. type: object
  4334. version:
  4335. type: string
  4336. required:
  4337. - key
  4338. type: object
  4339. type: array
  4340. required:
  4341. - data
  4342. type: object
  4343. gcpsm:
  4344. description: GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider
  4345. properties:
  4346. auth:
  4347. description: Auth defines the information necessary to authenticate against GCP
  4348. properties:
  4349. secretRef:
  4350. properties:
  4351. secretAccessKeySecretRef:
  4352. description: The SecretAccessKey is used for authentication
  4353. properties:
  4354. key:
  4355. 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.
  4356. type: string
  4357. name:
  4358. description: The name of the Secret resource being referred to.
  4359. type: string
  4360. namespace:
  4361. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4362. type: string
  4363. type: object
  4364. type: object
  4365. workloadIdentity:
  4366. properties:
  4367. clusterLocation:
  4368. type: string
  4369. clusterName:
  4370. type: string
  4371. clusterProjectID:
  4372. type: string
  4373. serviceAccountRef:
  4374. description: A reference to a ServiceAccount resource.
  4375. properties:
  4376. name:
  4377. description: The name of the ServiceAccount resource being referred to.
  4378. type: string
  4379. namespace:
  4380. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4381. type: string
  4382. required:
  4383. - name
  4384. type: object
  4385. required:
  4386. - clusterLocation
  4387. - clusterName
  4388. - serviceAccountRef
  4389. type: object
  4390. type: object
  4391. projectID:
  4392. description: ProjectID project where secret is located
  4393. type: string
  4394. type: object
  4395. gitlab:
  4396. description: Gitlab configures this store to sync secrets using Gitlab Variables provider
  4397. properties:
  4398. auth:
  4399. description: Auth configures how secret-manager authenticates with a GitLab instance.
  4400. properties:
  4401. SecretRef:
  4402. properties:
  4403. accessToken:
  4404. description: AccessToken is used for authentication.
  4405. properties:
  4406. key:
  4407. 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.
  4408. type: string
  4409. name:
  4410. description: The name of the Secret resource being referred to.
  4411. type: string
  4412. namespace:
  4413. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4414. type: string
  4415. type: object
  4416. type: object
  4417. required:
  4418. - SecretRef
  4419. type: object
  4420. projectID:
  4421. description: ProjectID specifies a project where secrets are located.
  4422. type: string
  4423. url:
  4424. description: URL configures the GitLab instance URL. Defaults to https://gitlab.com/.
  4425. type: string
  4426. required:
  4427. - auth
  4428. type: object
  4429. ibm:
  4430. description: IBM configures this store to sync secrets using IBM Cloud provider
  4431. properties:
  4432. auth:
  4433. description: Auth configures how secret-manager authenticates with the IBM secrets manager.
  4434. properties:
  4435. secretRef:
  4436. properties:
  4437. secretApiKeySecretRef:
  4438. description: The SecretAccessKey is used for authentication
  4439. properties:
  4440. key:
  4441. 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.
  4442. type: string
  4443. name:
  4444. description: The name of the Secret resource being referred to.
  4445. type: string
  4446. namespace:
  4447. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4448. type: string
  4449. type: object
  4450. type: object
  4451. required:
  4452. - secretRef
  4453. type: object
  4454. serviceUrl:
  4455. description: ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance
  4456. type: string
  4457. required:
  4458. - auth
  4459. type: object
  4460. kubernetes:
  4461. description: Kubernetes configures this store to sync secrets using a Kubernetes cluster provider
  4462. properties:
  4463. auth:
  4464. description: Auth configures how secret-manager authenticates with a Kubernetes instance.
  4465. maxProperties: 1
  4466. minProperties: 1
  4467. properties:
  4468. cert:
  4469. description: has both clientCert and clientKey as secretKeySelector
  4470. properties:
  4471. clientCert:
  4472. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4473. properties:
  4474. key:
  4475. 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.
  4476. type: string
  4477. name:
  4478. description: The name of the Secret resource being referred to.
  4479. type: string
  4480. namespace:
  4481. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4482. type: string
  4483. type: object
  4484. clientKey:
  4485. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4486. properties:
  4487. key:
  4488. 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.
  4489. type: string
  4490. name:
  4491. description: The name of the Secret resource being referred to.
  4492. type: string
  4493. namespace:
  4494. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4495. type: string
  4496. type: object
  4497. type: object
  4498. serviceAccount:
  4499. description: points to a service account that should be used for authentication
  4500. properties:
  4501. serviceAccount:
  4502. description: A reference to a ServiceAccount resource.
  4503. properties:
  4504. name:
  4505. description: The name of the ServiceAccount resource being referred to.
  4506. type: string
  4507. namespace:
  4508. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4509. type: string
  4510. required:
  4511. - name
  4512. type: object
  4513. type: object
  4514. token:
  4515. description: use static token to authenticate with
  4516. properties:
  4517. bearerToken:
  4518. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4519. properties:
  4520. key:
  4521. 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.
  4522. type: string
  4523. name:
  4524. description: The name of the Secret resource being referred to.
  4525. type: string
  4526. namespace:
  4527. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4528. type: string
  4529. type: object
  4530. type: object
  4531. type: object
  4532. remoteNamespace:
  4533. default: default
  4534. description: Remote namespace to fetch the secrets from
  4535. type: string
  4536. server:
  4537. description: configures the Kubernetes server Address.
  4538. properties:
  4539. caBundle:
  4540. description: CABundle is a base64-encoded CA certificate
  4541. format: byte
  4542. type: string
  4543. caProvider:
  4544. description: 'see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider'
  4545. properties:
  4546. key:
  4547. description: The key the value inside of the provider type to use, only used with "Secret" type
  4548. type: string
  4549. name:
  4550. description: The name of the object located at the provider type.
  4551. type: string
  4552. namespace:
  4553. description: The namespace the Provider type is in.
  4554. type: string
  4555. type:
  4556. description: The type of provider to use such as "Secret", or "ConfigMap".
  4557. enum:
  4558. - Secret
  4559. - ConfigMap
  4560. type: string
  4561. required:
  4562. - name
  4563. - type
  4564. type: object
  4565. url:
  4566. default: kubernetes.default
  4567. description: configures the Kubernetes server Address.
  4568. type: string
  4569. type: object
  4570. required:
  4571. - auth
  4572. type: object
  4573. oracle:
  4574. description: Oracle configures this store to sync secrets using Oracle Vault provider
  4575. properties:
  4576. auth:
  4577. description: Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.
  4578. properties:
  4579. secretRef:
  4580. description: SecretRef to pass through sensitive information.
  4581. properties:
  4582. fingerprint:
  4583. description: Fingerprint is the fingerprint of the API private key.
  4584. properties:
  4585. key:
  4586. 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.
  4587. type: string
  4588. name:
  4589. description: The name of the Secret resource being referred to.
  4590. type: string
  4591. namespace:
  4592. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4593. type: string
  4594. type: object
  4595. privatekey:
  4596. description: PrivateKey is the user's API Signing Key in PEM format, used for authentication.
  4597. properties:
  4598. key:
  4599. 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.
  4600. type: string
  4601. name:
  4602. description: The name of the Secret resource being referred to.
  4603. type: string
  4604. namespace:
  4605. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4606. type: string
  4607. type: object
  4608. required:
  4609. - fingerprint
  4610. - privatekey
  4611. type: object
  4612. tenancy:
  4613. description: Tenancy is the tenancy OCID where user is located.
  4614. type: string
  4615. user:
  4616. description: User is an access OCID specific to the account.
  4617. type: string
  4618. required:
  4619. - secretRef
  4620. - tenancy
  4621. - user
  4622. type: object
  4623. region:
  4624. description: Region is the region where vault is located.
  4625. type: string
  4626. vault:
  4627. description: Vault is the vault's OCID of the specific vault where secret is located.
  4628. type: string
  4629. required:
  4630. - region
  4631. - vault
  4632. type: object
  4633. senhasegura:
  4634. description: Senhasegura configures this store to sync secrets using senhasegura provider
  4635. properties:
  4636. auth:
  4637. description: Auth defines parameters to authenticate in senhasegura
  4638. properties:
  4639. clientId:
  4640. type: string
  4641. clientSecretSecretRef:
  4642. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  4643. properties:
  4644. key:
  4645. 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.
  4646. type: string
  4647. name:
  4648. description: The name of the Secret resource being referred to.
  4649. type: string
  4650. namespace:
  4651. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4652. type: string
  4653. type: object
  4654. required:
  4655. - clientId
  4656. - clientSecretSecretRef
  4657. type: object
  4658. ignoreSslCertificate:
  4659. default: false
  4660. description: IgnoreSslCertificate defines if SSL certificate must be ignored
  4661. type: boolean
  4662. module:
  4663. description: Module defines which senhasegura module should be used to get secrets
  4664. type: string
  4665. url:
  4666. description: URL of senhasegura
  4667. type: string
  4668. required:
  4669. - auth
  4670. - module
  4671. - url
  4672. type: object
  4673. vault:
  4674. description: Vault configures this store to sync secrets using Hashi provider
  4675. properties:
  4676. auth:
  4677. description: Auth configures how secret-manager authenticates with the Vault server.
  4678. properties:
  4679. appRole:
  4680. description: AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.
  4681. properties:
  4682. path:
  4683. default: approle
  4684. description: 'Path where the App Role authentication backend is mounted in Vault, e.g: "approle"'
  4685. type: string
  4686. roleId:
  4687. description: RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.
  4688. type: string
  4689. secretRef:
  4690. 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.
  4691. properties:
  4692. key:
  4693. 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.
  4694. type: string
  4695. name:
  4696. description: The name of the Secret resource being referred to.
  4697. type: string
  4698. namespace:
  4699. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4700. type: string
  4701. type: object
  4702. required:
  4703. - path
  4704. - roleId
  4705. - secretRef
  4706. type: object
  4707. cert:
  4708. description: Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method
  4709. properties:
  4710. clientCert:
  4711. description: ClientCert is a certificate to authenticate using the Cert Vault authentication method
  4712. properties:
  4713. key:
  4714. 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.
  4715. type: string
  4716. name:
  4717. description: The name of the Secret resource being referred to.
  4718. type: string
  4719. namespace:
  4720. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4721. type: string
  4722. type: object
  4723. secretRef:
  4724. description: SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method
  4725. properties:
  4726. key:
  4727. 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.
  4728. type: string
  4729. name:
  4730. description: The name of the Secret resource being referred to.
  4731. type: string
  4732. namespace:
  4733. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4734. type: string
  4735. type: object
  4736. type: object
  4737. jwt:
  4738. description: Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method
  4739. properties:
  4740. kubernetesServiceAccountToken:
  4741. description: Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.
  4742. properties:
  4743. audiences:
  4744. 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.
  4745. items:
  4746. type: string
  4747. type: array
  4748. expirationSeconds:
  4749. 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.
  4750. format: int64
  4751. type: integer
  4752. serviceAccountRef:
  4753. description: Service account field containing the name of a kubernetes ServiceAccount.
  4754. properties:
  4755. name:
  4756. description: The name of the ServiceAccount resource being referred to.
  4757. type: string
  4758. namespace:
  4759. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4760. type: string
  4761. required:
  4762. - name
  4763. type: object
  4764. required:
  4765. - serviceAccountRef
  4766. type: object
  4767. path:
  4768. default: jwt
  4769. description: 'Path where the JWT authentication backend is mounted in Vault, e.g: "jwt"'
  4770. type: string
  4771. role:
  4772. description: Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method
  4773. type: string
  4774. secretRef:
  4775. 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.
  4776. properties:
  4777. key:
  4778. 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.
  4779. type: string
  4780. name:
  4781. description: The name of the Secret resource being referred to.
  4782. type: string
  4783. namespace:
  4784. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4785. type: string
  4786. type: object
  4787. required:
  4788. - path
  4789. type: object
  4790. kubernetes:
  4791. description: Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.
  4792. properties:
  4793. mountPath:
  4794. default: kubernetes
  4795. description: 'Path where the Kubernetes authentication backend is mounted in Vault, e.g: "kubernetes"'
  4796. type: string
  4797. role:
  4798. description: A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.
  4799. type: string
  4800. secretRef:
  4801. 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.
  4802. properties:
  4803. key:
  4804. 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.
  4805. type: string
  4806. name:
  4807. description: The name of the Secret resource being referred to.
  4808. type: string
  4809. namespace:
  4810. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4811. type: string
  4812. type: object
  4813. serviceAccountRef:
  4814. 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.
  4815. properties:
  4816. name:
  4817. description: The name of the ServiceAccount resource being referred to.
  4818. type: string
  4819. namespace:
  4820. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4821. type: string
  4822. required:
  4823. - name
  4824. type: object
  4825. required:
  4826. - mountPath
  4827. - role
  4828. type: object
  4829. ldap:
  4830. description: Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method
  4831. properties:
  4832. path:
  4833. default: ldap
  4834. description: 'Path where the LDAP authentication backend is mounted in Vault, e.g: "ldap"'
  4835. type: string
  4836. secretRef:
  4837. 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
  4838. properties:
  4839. key:
  4840. 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.
  4841. type: string
  4842. name:
  4843. description: The name of the Secret resource being referred to.
  4844. type: string
  4845. namespace:
  4846. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4847. type: string
  4848. type: object
  4849. username:
  4850. description: Username is a LDAP user name used to authenticate using the LDAP Vault authentication method
  4851. type: string
  4852. required:
  4853. - path
  4854. - username
  4855. type: object
  4856. tokenSecretRef:
  4857. description: TokenSecretRef authenticates with Vault by presenting a token.
  4858. properties:
  4859. key:
  4860. 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.
  4861. type: string
  4862. name:
  4863. description: The name of the Secret resource being referred to.
  4864. type: string
  4865. namespace:
  4866. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4867. type: string
  4868. type: object
  4869. type: object
  4870. caBundle:
  4871. 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.
  4872. format: byte
  4873. type: string
  4874. caProvider:
  4875. description: The provider for the CA bundle to use to validate Vault server certificate.
  4876. properties:
  4877. key:
  4878. description: The key the value inside of the provider type to use, only used with "Secret" type
  4879. type: string
  4880. name:
  4881. description: The name of the object located at the provider type.
  4882. type: string
  4883. namespace:
  4884. description: The namespace the Provider type is in.
  4885. type: string
  4886. type:
  4887. description: The type of provider to use such as "Secret", or "ConfigMap".
  4888. enum:
  4889. - Secret
  4890. - ConfigMap
  4891. type: string
  4892. required:
  4893. - name
  4894. - type
  4895. type: object
  4896. forwardInconsistent:
  4897. 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
  4898. type: boolean
  4899. namespace:
  4900. 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'
  4901. type: string
  4902. path:
  4903. 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.'
  4904. type: string
  4905. readYourWrites:
  4906. 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
  4907. type: boolean
  4908. server:
  4909. description: 'Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".'
  4910. type: string
  4911. version:
  4912. default: v2
  4913. description: Version is the Vault KV secret engine version. This can be either "v1" or "v2". Version defaults to "v2".
  4914. enum:
  4915. - v1
  4916. - v2
  4917. type: string
  4918. required:
  4919. - auth
  4920. - server
  4921. type: object
  4922. webhook:
  4923. description: Webhook configures this store to sync secrets using a generic templated webhook
  4924. properties:
  4925. body:
  4926. description: Body
  4927. type: string
  4928. caBundle:
  4929. 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.
  4930. format: byte
  4931. type: string
  4932. caProvider:
  4933. description: The provider for the CA bundle to use to validate webhook server certificate.
  4934. properties:
  4935. key:
  4936. description: The key the value inside of the provider type to use, only used with "Secret" type
  4937. type: string
  4938. name:
  4939. description: The name of the object located at the provider type.
  4940. type: string
  4941. namespace:
  4942. description: The namespace the Provider type is in.
  4943. type: string
  4944. type:
  4945. description: The type of provider to use such as "Secret", or "ConfigMap".
  4946. enum:
  4947. - Secret
  4948. - ConfigMap
  4949. type: string
  4950. required:
  4951. - name
  4952. - type
  4953. type: object
  4954. headers:
  4955. additionalProperties:
  4956. type: string
  4957. description: Headers
  4958. type: object
  4959. method:
  4960. description: Webhook Method
  4961. type: string
  4962. result:
  4963. description: Result formatting
  4964. properties:
  4965. jsonPath:
  4966. description: Json path of return value
  4967. type: string
  4968. type: object
  4969. secrets:
  4970. description: Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name
  4971. items:
  4972. properties:
  4973. name:
  4974. description: Name of this secret in templates
  4975. type: string
  4976. secretRef:
  4977. description: Secret ref to fill in credentials
  4978. properties:
  4979. key:
  4980. 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.
  4981. type: string
  4982. name:
  4983. description: The name of the Secret resource being referred to.
  4984. type: string
  4985. namespace:
  4986. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  4987. type: string
  4988. type: object
  4989. required:
  4990. - name
  4991. - secretRef
  4992. type: object
  4993. type: array
  4994. timeout:
  4995. description: Timeout
  4996. type: string
  4997. url:
  4998. description: Webhook url to call
  4999. type: string
  5000. required:
  5001. - result
  5002. - url
  5003. type: object
  5004. yandexlockbox:
  5005. description: YandexLockbox configures this store to sync secrets using Yandex Lockbox provider
  5006. properties:
  5007. apiEndpoint:
  5008. description: Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')
  5009. type: string
  5010. auth:
  5011. description: Auth defines the information necessary to authenticate against Yandex Lockbox
  5012. properties:
  5013. authorizedKeySecretRef:
  5014. description: The authorized key used for authentication
  5015. properties:
  5016. key:
  5017. 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.
  5018. type: string
  5019. name:
  5020. description: The name of the Secret resource being referred to.
  5021. type: string
  5022. namespace:
  5023. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  5024. type: string
  5025. type: object
  5026. type: object
  5027. caProvider:
  5028. description: The provider for the CA bundle to use to validate Yandex.Cloud server certificate.
  5029. properties:
  5030. certSecretRef:
  5031. description: A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.
  5032. properties:
  5033. key:
  5034. 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.
  5035. type: string
  5036. name:
  5037. description: The name of the Secret resource being referred to.
  5038. type: string
  5039. namespace:
  5040. description: Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.
  5041. type: string
  5042. type: object
  5043. type: object
  5044. required:
  5045. - auth
  5046. type: object
  5047. type: object
  5048. refreshInterval:
  5049. description: Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.
  5050. type: integer
  5051. retrySettings:
  5052. description: Used to configure http retries if failed
  5053. properties:
  5054. maxRetries:
  5055. format: int32
  5056. type: integer
  5057. retryInterval:
  5058. type: string
  5059. type: object
  5060. required:
  5061. - provider
  5062. type: object
  5063. status:
  5064. description: SecretStoreStatus defines the observed state of the SecretStore.
  5065. properties:
  5066. conditions:
  5067. items:
  5068. properties:
  5069. lastTransitionTime:
  5070. format: date-time
  5071. type: string
  5072. message:
  5073. type: string
  5074. reason:
  5075. type: string
  5076. status:
  5077. type: string
  5078. type:
  5079. type: string
  5080. required:
  5081. - status
  5082. - type
  5083. type: object
  5084. type: array
  5085. type: object
  5086. type: object
  5087. served: true
  5088. storage: true
  5089. subresources:
  5090. status: {}
  5091. conversion:
  5092. strategy: Webhook
  5093. webhook:
  5094. conversionReviewVersions:
  5095. - v1
  5096. clientConfig:
  5097. service:
  5098. name: kubernetes
  5099. namespace: default
  5100. path: /convert
  5101. status:
  5102. acceptedNames:
  5103. kind: ""
  5104. plural: ""
  5105. conditions: []
  5106. storedVersions: []