bundle.yaml 306 KB

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