bundle.yaml 307 KB

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