bundle.yaml 268 KB

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