bundle.yaml 318 KB

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