index.html 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../release/">
  7. <link rel="next" href="../roadmap/">
  8. <link rel="icon" href="../../assets/images/favicon.png">
  9. <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.7">
  10. <title>Code of Conduct - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.f2e4d321.min.css">
  12. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  13. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  14. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  15. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  16. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","G-QP38TD8K7V",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  17. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  18. </head>
  19. <body dir="ltr">
  20. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  21. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  22. <label class="md-overlay" for="__drawer"></label>
  23. <div data-md-component="skip">
  24. <a href="#code-of-conduct" class="md-skip">
  25. Skip to content
  26. </a>
  27. </div>
  28. <div data-md-component="announce">
  29. </div>
  30. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  31. <aside class="md-banner md-banner--warning">
  32. <div class="md-banner__inner md-grid md-typeset">
  33. You're not viewing the latest version.
  34. <a href="../../..">
  35. <strong>Click here to go to latest.</strong>
  36. </a>
  37. </div>
  38. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  39. </aside>
  40. </div>
  41. <header class="md-header" data-md-component="header">
  42. <nav class="md-header__inner md-grid" aria-label="Header">
  43. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  44. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  45. </a>
  46. <label class="md-header__button md-icon" for="__drawer">
  47. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  48. </label>
  49. <div class="md-header__title" data-md-component="header-title">
  50. <div class="md-header__ellipsis">
  51. <div class="md-header__topic">
  52. <span class="md-ellipsis">
  53. External Secrets Operator
  54. </span>
  55. </div>
  56. <div class="md-header__topic" data-md-component="header-topic">
  57. <span class="md-ellipsis">
  58. Code of Conduct
  59. </span>
  60. </div>
  61. </div>
  62. </div>
  63. <script>var media,input,key,value,palette=__md_get("__palette");if(palette&&palette.color){"(prefers-color-scheme)"===palette.color.media&&(media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']"),palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent"));for([key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  64. <label class="md-header__button md-icon" for="__search">
  65. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  66. </label>
  67. <div class="md-search" data-md-component="search" role="dialog">
  68. <label class="md-search__overlay" for="__search"></label>
  69. <div class="md-search__inner" role="search">
  70. <form class="md-search__form" name="search">
  71. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  72. <label class="md-search__icon md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  74. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  75. </label>
  76. <nav class="md-search__options" aria-label="Search">
  77. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  78. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  79. </button>
  80. </nav>
  81. </form>
  82. <div class="md-search__output">
  83. <div class="md-search__scrollwrap" data-md-scrollfix>
  84. <div class="md-search-result" data-md-component="search-result">
  85. <div class="md-search-result__meta">
  86. Initializing search
  87. </div>
  88. <ol class="md-search-result__list" role="presentation"></ol>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </div>
  94. <div class="md-header__source">
  95. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  96. <div class="md-source__icon md-icon">
  97. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  98. </div>
  99. <div class="md-source__repository">
  100. External Secrets Operator
  101. </div>
  102. </a>
  103. </div>
  104. </nav>
  105. </header>
  106. <div class="md-container" data-md-component="container">
  107. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  108. <div class="md-grid">
  109. <ul class="md-tabs__list">
  110. <li class="md-tabs__item">
  111. <a href="../.." class="md-tabs__link">
  112. Introduction
  113. </a>
  114. </li>
  115. <li class="md-tabs__item">
  116. <a href="../../api/components/" class="md-tabs__link">
  117. API
  118. </a>
  119. </li>
  120. <li class="md-tabs__item">
  121. <a href="../../guides/introduction/" class="md-tabs__link">
  122. Guides
  123. </a>
  124. </li>
  125. <li class="md-tabs__item">
  126. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  127. Provider
  128. </a>
  129. </li>
  130. <li class="md-tabs__item">
  131. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  132. Examples
  133. </a>
  134. </li>
  135. <li class="md-tabs__item md-tabs__item--active">
  136. <a href="../devguide/" class="md-tabs__link">
  137. Community
  138. </a>
  139. </li>
  140. </ul>
  141. </div>
  142. </nav>
  143. <main class="md-main" data-md-component="main">
  144. <div class="md-main__inner md-grid">
  145. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  146. <div class="md-sidebar__scrollwrap">
  147. <div class="md-sidebar__inner">
  148. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  149. <label class="md-nav__title" for="__drawer">
  150. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  151. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  152. </a>
  153. External Secrets Operator
  154. </label>
  155. <div class="md-nav__source">
  156. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  157. <div class="md-source__icon md-icon">
  158. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  159. </div>
  160. <div class="md-source__repository">
  161. External Secrets Operator
  162. </div>
  163. </a>
  164. </div>
  165. <ul class="md-nav__list" data-md-scrollfix>
  166. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  167. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  168. <div class="md-nav__link md-nav__container">
  169. <a href="../.." class="md-nav__link ">
  170. <span class="md-ellipsis">
  171. Introduction
  172. </span>
  173. </a>
  174. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="">
  175. <span class="md-nav__icon md-icon"></span>
  176. </label>
  177. </div>
  178. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  179. <label class="md-nav__title" for="__nav_1">
  180. <span class="md-nav__icon md-icon"></span>
  181. Introduction
  182. </label>
  183. <ul class="md-nav__list" data-md-scrollfix>
  184. <li class="md-nav__item">
  185. <a href="../../introduction/overview/" class="md-nav__link">
  186. <span class="md-ellipsis">
  187. Overview
  188. </span>
  189. </a>
  190. </li>
  191. <li class="md-nav__item">
  192. <a href="../../introduction/getting-started/" class="md-nav__link">
  193. <span class="md-ellipsis">
  194. Getting started
  195. </span>
  196. </a>
  197. </li>
  198. <li class="md-nav__item">
  199. <a href="../../introduction/faq/" class="md-nav__link">
  200. <span class="md-ellipsis">
  201. FAQ
  202. </span>
  203. </a>
  204. </li>
  205. <li class="md-nav__item">
  206. <a href="../../introduction/stability-support/" class="md-nav__link">
  207. <span class="md-ellipsis">
  208. Stability and Support
  209. </span>
  210. </a>
  211. </li>
  212. <li class="md-nav__item">
  213. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  214. <span class="md-ellipsis">
  215. Deprecation Policy
  216. </span>
  217. </a>
  218. </li>
  219. </ul>
  220. </nav>
  221. </li>
  222. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  223. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2" >
  224. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  225. <span class="md-ellipsis">
  226. API
  227. </span>
  228. <span class="md-nav__icon md-icon"></span>
  229. </label>
  230. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="false">
  231. <label class="md-nav__title" for="__nav_2">
  232. <span class="md-nav__icon md-icon"></span>
  233. API
  234. </label>
  235. <ul class="md-nav__list" data-md-scrollfix>
  236. <li class="md-nav__item">
  237. <a href="../../api/components/" class="md-nav__link">
  238. <span class="md-ellipsis">
  239. Components
  240. </span>
  241. </a>
  242. </li>
  243. <li class="md-nav__item md-nav__item--nested">
  244. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  245. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  246. <span class="md-ellipsis">
  247. Core Resources
  248. </span>
  249. <span class="md-nav__icon md-icon"></span>
  250. </label>
  251. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  252. <label class="md-nav__title" for="__nav_2_2">
  253. <span class="md-nav__icon md-icon"></span>
  254. Core Resources
  255. </label>
  256. <ul class="md-nav__list" data-md-scrollfix>
  257. <li class="md-nav__item">
  258. <a href="../../api/externalsecret/" class="md-nav__link">
  259. <span class="md-ellipsis">
  260. ExternalSecret
  261. </span>
  262. </a>
  263. </li>
  264. <li class="md-nav__item">
  265. <a href="../../api/secretstore/" class="md-nav__link">
  266. <span class="md-ellipsis">
  267. SecretStore
  268. </span>
  269. </a>
  270. </li>
  271. <li class="md-nav__item">
  272. <a href="../../api/clustersecretstore/" class="md-nav__link">
  273. <span class="md-ellipsis">
  274. ClusterSecretStore
  275. </span>
  276. </a>
  277. </li>
  278. <li class="md-nav__item">
  279. <a href="../../api/clusterexternalsecret/" class="md-nav__link">
  280. <span class="md-ellipsis">
  281. ClusterExternalSecret
  282. </span>
  283. </a>
  284. </li>
  285. <li class="md-nav__item">
  286. <a href="../../api/pushsecret/" class="md-nav__link">
  287. <span class="md-ellipsis">
  288. PushSecret
  289. </span>
  290. </a>
  291. </li>
  292. </ul>
  293. </nav>
  294. </li>
  295. <li class="md-nav__item md-nav__item--nested">
  296. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  297. <div class="md-nav__link md-nav__container">
  298. <a href="../../api/generator/" class="md-nav__link ">
  299. <span class="md-ellipsis">
  300. Generators
  301. </span>
  302. </a>
  303. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  304. <span class="md-nav__icon md-icon"></span>
  305. </label>
  306. </div>
  307. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  308. <label class="md-nav__title" for="__nav_2_3">
  309. <span class="md-nav__icon md-icon"></span>
  310. Generators
  311. </label>
  312. <ul class="md-nav__list" data-md-scrollfix>
  313. <li class="md-nav__item">
  314. <a href="../../api/generator/acr/" class="md-nav__link">
  315. <span class="md-ellipsis">
  316. Azure Container Registry
  317. </span>
  318. </a>
  319. </li>
  320. <li class="md-nav__item">
  321. <a href="../../api/generator/ecr/" class="md-nav__link">
  322. <span class="md-ellipsis">
  323. AWS Elastic Container Registry
  324. </span>
  325. </a>
  326. </li>
  327. <li class="md-nav__item">
  328. <a href="../../api/generator/gcr/" class="md-nav__link">
  329. <span class="md-ellipsis">
  330. Google Container Registry
  331. </span>
  332. </a>
  333. </li>
  334. <li class="md-nav__item">
  335. <a href="../../api/generator/vault/" class="md-nav__link">
  336. <span class="md-ellipsis">
  337. Vault Dynamic Secret
  338. </span>
  339. </a>
  340. </li>
  341. <li class="md-nav__item">
  342. <a href="../../api/generator/password/" class="md-nav__link">
  343. <span class="md-ellipsis">
  344. Password
  345. </span>
  346. </a>
  347. </li>
  348. <li class="md-nav__item">
  349. <a href="../../api/generator/fake/" class="md-nav__link">
  350. <span class="md-ellipsis">
  351. Fake
  352. </span>
  353. </a>
  354. </li>
  355. </ul>
  356. </nav>
  357. </li>
  358. <li class="md-nav__item md-nav__item--nested">
  359. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_4" >
  360. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  361. <span class="md-ellipsis">
  362. Reference Docs
  363. </span>
  364. <span class="md-nav__icon md-icon"></span>
  365. </label>
  366. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="false">
  367. <label class="md-nav__title" for="__nav_2_4">
  368. <span class="md-nav__icon md-icon"></span>
  369. Reference Docs
  370. </label>
  371. <ul class="md-nav__list" data-md-scrollfix>
  372. <li class="md-nav__item">
  373. <a href="../../api/spec/" class="md-nav__link">
  374. <span class="md-ellipsis">
  375. API specification
  376. </span>
  377. </a>
  378. </li>
  379. <li class="md-nav__item">
  380. <a href="../../api/controller-options/" class="md-nav__link">
  381. <span class="md-ellipsis">
  382. Controller Options
  383. </span>
  384. </a>
  385. </li>
  386. <li class="md-nav__item">
  387. <a href="../../api/metrics/" class="md-nav__link">
  388. <span class="md-ellipsis">
  389. Metrics
  390. </span>
  391. </a>
  392. </li>
  393. </ul>
  394. </nav>
  395. </li>
  396. </ul>
  397. </nav>
  398. </li>
  399. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  400. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  401. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="">
  402. <span class="md-ellipsis">
  403. Guides
  404. </span>
  405. <span class="md-nav__icon md-icon"></span>
  406. </label>
  407. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  408. <label class="md-nav__title" for="__nav_3">
  409. <span class="md-nav__icon md-icon"></span>
  410. Guides
  411. </label>
  412. <ul class="md-nav__list" data-md-scrollfix>
  413. <li class="md-nav__item">
  414. <a href="../../guides/introduction/" class="md-nav__link">
  415. <span class="md-ellipsis">
  416. Introduction
  417. </span>
  418. </a>
  419. </li>
  420. <li class="md-nav__item md-nav__item--nested">
  421. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  422. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  423. <span class="md-ellipsis">
  424. External Secrets
  425. </span>
  426. <span class="md-nav__icon md-icon"></span>
  427. </label>
  428. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  429. <label class="md-nav__title" for="__nav_3_2">
  430. <span class="md-nav__icon md-icon"></span>
  431. External Secrets
  432. </label>
  433. <ul class="md-nav__list" data-md-scrollfix>
  434. <li class="md-nav__item">
  435. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  436. <span class="md-ellipsis">
  437. Extract structured data
  438. </span>
  439. </a>
  440. </li>
  441. <li class="md-nav__item">
  442. <a href="../../guides/getallsecrets/" class="md-nav__link">
  443. <span class="md-ellipsis">
  444. Find Secrets by Name or Metadata
  445. </span>
  446. </a>
  447. </li>
  448. <li class="md-nav__item">
  449. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  450. <span class="md-ellipsis">
  451. Rewriting Keys
  452. </span>
  453. </a>
  454. </li>
  455. <li class="md-nav__item md-nav__item--nested">
  456. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  457. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  458. <span class="md-ellipsis">
  459. Advanced Templating
  460. </span>
  461. <span class="md-nav__icon md-icon"></span>
  462. </label>
  463. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  464. <label class="md-nav__title" for="__nav_3_2_4">
  465. <span class="md-nav__icon md-icon"></span>
  466. Advanced Templating
  467. </label>
  468. <ul class="md-nav__list" data-md-scrollfix>
  469. <li class="md-nav__item">
  470. <a href="../../guides/templating/" class="md-nav__link">
  471. <span class="md-ellipsis">
  472. v2
  473. </span>
  474. </a>
  475. </li>
  476. <li class="md-nav__item">
  477. <a href="../../guides/templating-v1/" class="md-nav__link">
  478. <span class="md-ellipsis">
  479. v1
  480. </span>
  481. </a>
  482. </li>
  483. </ul>
  484. </nav>
  485. </li>
  486. <li class="md-nav__item">
  487. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  488. <span class="md-ellipsis">
  489. Kubernetes Secret Types
  490. </span>
  491. </a>
  492. </li>
  493. <li class="md-nav__item">
  494. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  495. <span class="md-ellipsis">
  496. Lifecycle: ownership & deletion
  497. </span>
  498. </a>
  499. </li>
  500. <li class="md-nav__item">
  501. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  502. <span class="md-ellipsis">
  503. Decoding Strategies
  504. </span>
  505. </a>
  506. </li>
  507. <li class="md-nav__item">
  508. <a href="../../guides/controller-class/" class="md-nav__link">
  509. <span class="md-ellipsis">
  510. Controller Classes
  511. </span>
  512. </a>
  513. </li>
  514. </ul>
  515. </nav>
  516. </li>
  517. <li class="md-nav__item">
  518. <a href="../../guides/generator/" class="md-nav__link">
  519. <span class="md-ellipsis">
  520. Generators
  521. </span>
  522. </a>
  523. </li>
  524. <li class="md-nav__item">
  525. <a href="../../guides/pushsecrets/" class="md-nav__link">
  526. <span class="md-ellipsis">
  527. Push Secrets
  528. </span>
  529. </a>
  530. </li>
  531. <li class="md-nav__item md-nav__item--nested">
  532. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  533. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  534. <span class="md-ellipsis">
  535. Operations
  536. </span>
  537. <span class="md-nav__icon md-icon"></span>
  538. </label>
  539. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  540. <label class="md-nav__title" for="__nav_3_5">
  541. <span class="md-nav__icon md-icon"></span>
  542. Operations
  543. </label>
  544. <ul class="md-nav__list" data-md-scrollfix>
  545. <li class="md-nav__item">
  546. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  547. <span class="md-ellipsis">
  548. Multi Tenancy
  549. </span>
  550. </a>
  551. </li>
  552. <li class="md-nav__item">
  553. <a href="../../guides/security-best-practices/" class="md-nav__link">
  554. <span class="md-ellipsis">
  555. Security Best Practices
  556. </span>
  557. </a>
  558. </li>
  559. <li class="md-nav__item">
  560. <a href="../../guides/threat-model/" class="md-nav__link">
  561. <span class="md-ellipsis">
  562. Threat Model
  563. </span>
  564. </a>
  565. </li>
  566. <li class="md-nav__item">
  567. <a href="../../guides/v1beta1/" class="md-nav__link">
  568. <span class="md-ellipsis">
  569. Upgrading to v1beta1
  570. </span>
  571. </a>
  572. </li>
  573. <li class="md-nav__item">
  574. <a href="../../guides/using-latest-image/" class="md-nav__link">
  575. <span class="md-ellipsis">
  576. Using Latest Image
  577. </span>
  578. </a>
  579. </li>
  580. <li class="md-nav__item">
  581. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  582. <span class="md-ellipsis">
  583. Disable Cluster Features
  584. </span>
  585. </a>
  586. </li>
  587. </ul>
  588. </nav>
  589. </li>
  590. </ul>
  591. </nav>
  592. </li>
  593. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  594. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  595. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="">
  596. <span class="md-ellipsis">
  597. Provider
  598. </span>
  599. <span class="md-nav__icon md-icon"></span>
  600. </label>
  601. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  602. <label class="md-nav__title" for="__nav_4">
  603. <span class="md-nav__icon md-icon"></span>
  604. Provider
  605. </label>
  606. <ul class="md-nav__list" data-md-scrollfix>
  607. <li class="md-nav__item">
  608. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  609. <span class="md-ellipsis">
  610. AWS Secrets Manager
  611. </span>
  612. </a>
  613. </li>
  614. <li class="md-nav__item">
  615. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  616. <span class="md-ellipsis">
  617. AWS Parameter Store
  618. </span>
  619. </a>
  620. </li>
  621. <li class="md-nav__item">
  622. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  623. <span class="md-ellipsis">
  624. Azure Key Vault
  625. </span>
  626. </a>
  627. </li>
  628. <li class="md-nav__item">
  629. <a href="../../provider/conjur/" class="md-nav__link">
  630. <span class="md-ellipsis">
  631. CyberArk Conjur
  632. </span>
  633. </a>
  634. </li>
  635. <li class="md-nav__item">
  636. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  637. <span class="md-ellipsis">
  638. Google Cloud Secret Manager
  639. </span>
  640. </a>
  641. </li>
  642. <li class="md-nav__item">
  643. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  644. <span class="md-ellipsis">
  645. HashiCorp Vault
  646. </span>
  647. </a>
  648. </li>
  649. <li class="md-nav__item">
  650. <a href="../../provider/kubernetes/" class="md-nav__link">
  651. <span class="md-ellipsis">
  652. Kubernetes
  653. </span>
  654. </a>
  655. </li>
  656. <li class="md-nav__item">
  657. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  658. <span class="md-ellipsis">
  659. IBM Secrets Manager
  660. </span>
  661. </a>
  662. </li>
  663. <li class="md-nav__item">
  664. <a href="../../provider/akeyless/" class="md-nav__link">
  665. <span class="md-ellipsis">
  666. Akeyless
  667. </span>
  668. </a>
  669. </li>
  670. <li class="md-nav__item">
  671. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  672. <span class="md-ellipsis">
  673. Yandex Certificate Manager
  674. </span>
  675. </a>
  676. </li>
  677. <li class="md-nav__item">
  678. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  679. <span class="md-ellipsis">
  680. Yandex Lockbox
  681. </span>
  682. </a>
  683. </li>
  684. <li class="md-nav__item">
  685. <a href="../../provider/alibaba/" class="md-nav__link">
  686. <span class="md-ellipsis">
  687. Alibaba Cloud
  688. </span>
  689. </a>
  690. </li>
  691. <li class="md-nav__item">
  692. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  693. <span class="md-ellipsis">
  694. GitLab Variables
  695. </span>
  696. </a>
  697. </li>
  698. <li class="md-nav__item">
  699. <a href="../../provider/oracle-vault/" class="md-nav__link">
  700. <span class="md-ellipsis">
  701. Oracle Vault
  702. </span>
  703. </a>
  704. </li>
  705. <li class="md-nav__item">
  706. <a href="../../provider/1password-automation/" class="md-nav__link">
  707. <span class="md-ellipsis">
  708. 1Password Secrets Automation
  709. </span>
  710. </a>
  711. </li>
  712. <li class="md-nav__item">
  713. <a href="../../provider/webhook/" class="md-nav__link">
  714. <span class="md-ellipsis">
  715. Webhook
  716. </span>
  717. </a>
  718. </li>
  719. <li class="md-nav__item">
  720. <a href="../../provider/fake/" class="md-nav__link">
  721. <span class="md-ellipsis">
  722. Fake
  723. </span>
  724. </a>
  725. </li>
  726. <li class="md-nav__item">
  727. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  728. <span class="md-ellipsis">
  729. senhasegura DevOps Secrets Management (DSM)
  730. </span>
  731. </a>
  732. </li>
  733. <li class="md-nav__item">
  734. <a href="../../provider/doppler/" class="md-nav__link">
  735. <span class="md-ellipsis">
  736. Doppler
  737. </span>
  738. </a>
  739. </li>
  740. <li class="md-nav__item">
  741. <a href="../../provider/keeper-security/" class="md-nav__link">
  742. <span class="md-ellipsis">
  743. Keeper Security
  744. </span>
  745. </a>
  746. </li>
  747. <li class="md-nav__item">
  748. <a href="../../provider/cloak/" class="md-nav__link">
  749. <span class="md-ellipsis">
  750. Cloak End 2 End Encrypted Secrets
  751. </span>
  752. </a>
  753. </li>
  754. <li class="md-nav__item">
  755. <a href="../../provider/scaleway/" class="md-nav__link">
  756. <span class="md-ellipsis">
  757. Scaleway
  758. </span>
  759. </a>
  760. </li>
  761. <li class="md-nav__item">
  762. <a href="../../provider/delinea/" class="md-nav__link">
  763. <span class="md-ellipsis">
  764. Delinea
  765. </span>
  766. </a>
  767. </li>
  768. </ul>
  769. </nav>
  770. </li>
  771. <li class="md-nav__item md-nav__item--section md-nav__item--nested">
  772. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  773. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="">
  774. <span class="md-ellipsis">
  775. Examples
  776. </span>
  777. <span class="md-nav__icon md-icon"></span>
  778. </label>
  779. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  780. <label class="md-nav__title" for="__nav_5">
  781. <span class="md-nav__icon md-icon"></span>
  782. Examples
  783. </label>
  784. <ul class="md-nav__list" data-md-scrollfix>
  785. <li class="md-nav__item">
  786. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  787. <span class="md-ellipsis">
  788. FluxCD
  789. </span>
  790. </a>
  791. </li>
  792. <li class="md-nav__item">
  793. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  794. <span class="md-ellipsis">
  795. Anchore Engine
  796. </span>
  797. </a>
  798. </li>
  799. <li class="md-nav__item">
  800. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  801. <span class="md-ellipsis">
  802. Jenkins
  803. </span>
  804. </a>
  805. </li>
  806. <li class="md-nav__item">
  807. <a href="../../examples/bitwarden/" class="md-nav__link">
  808. <span class="md-ellipsis">
  809. BitWarden
  810. </span>
  811. </a>
  812. </li>
  813. </ul>
  814. </nav>
  815. </li>
  816. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  817. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_6" checked>
  818. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="">
  819. <span class="md-ellipsis">
  820. Community
  821. </span>
  822. <span class="md-nav__icon md-icon"></span>
  823. </label>
  824. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="true">
  825. <label class="md-nav__title" for="__nav_6">
  826. <span class="md-nav__icon md-icon"></span>
  827. Community
  828. </label>
  829. <ul class="md-nav__list" data-md-scrollfix>
  830. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  831. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_6_1" checked>
  832. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  833. <span class="md-ellipsis">
  834. Contributing
  835. </span>
  836. <span class="md-nav__icon md-icon"></span>
  837. </label>
  838. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="true">
  839. <label class="md-nav__title" for="__nav_6_1">
  840. <span class="md-nav__icon md-icon"></span>
  841. Contributing
  842. </label>
  843. <ul class="md-nav__list" data-md-scrollfix>
  844. <li class="md-nav__item">
  845. <a href="../devguide/" class="md-nav__link">
  846. <span class="md-ellipsis">
  847. Developer guide
  848. </span>
  849. </a>
  850. </li>
  851. <li class="md-nav__item">
  852. <a href="../process/" class="md-nav__link">
  853. <span class="md-ellipsis">
  854. Contributing Process
  855. </span>
  856. </a>
  857. </li>
  858. <li class="md-nav__item">
  859. <a href="../release/" class="md-nav__link">
  860. <span class="md-ellipsis">
  861. Release Process
  862. </span>
  863. </a>
  864. </li>
  865. <li class="md-nav__item md-nav__item--active">
  866. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  867. <label class="md-nav__link md-nav__link--active" for="__toc">
  868. <span class="md-ellipsis">
  869. Code of Conduct
  870. </span>
  871. <span class="md-nav__icon md-icon"></span>
  872. </label>
  873. <a href="./" class="md-nav__link md-nav__link--active">
  874. <span class="md-ellipsis">
  875. Code of Conduct
  876. </span>
  877. </a>
  878. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  879. <label class="md-nav__title" for="__toc">
  880. <span class="md-nav__icon md-icon"></span>
  881. Table of contents
  882. </label>
  883. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  884. <li class="md-nav__item">
  885. <a href="#our-pledge" class="md-nav__link">
  886. <span class="md-ellipsis">
  887. Our Pledge
  888. </span>
  889. </a>
  890. </li>
  891. <li class="md-nav__item">
  892. <a href="#our-standards" class="md-nav__link">
  893. <span class="md-ellipsis">
  894. Our Standards
  895. </span>
  896. </a>
  897. </li>
  898. <li class="md-nav__item">
  899. <a href="#enforcement-responsibilities" class="md-nav__link">
  900. <span class="md-ellipsis">
  901. Enforcement Responsibilities
  902. </span>
  903. </a>
  904. </li>
  905. <li class="md-nav__item">
  906. <a href="#scope" class="md-nav__link">
  907. <span class="md-ellipsis">
  908. Scope
  909. </span>
  910. </a>
  911. </li>
  912. <li class="md-nav__item">
  913. <a href="#enforcement" class="md-nav__link">
  914. <span class="md-ellipsis">
  915. Enforcement
  916. </span>
  917. </a>
  918. </li>
  919. <li class="md-nav__item">
  920. <a href="#enforcement-guidelines" class="md-nav__link">
  921. <span class="md-ellipsis">
  922. Enforcement Guidelines
  923. </span>
  924. </a>
  925. <nav class="md-nav" aria-label="Enforcement Guidelines">
  926. <ul class="md-nav__list">
  927. <li class="md-nav__item">
  928. <a href="#1-correction" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. 1. Correction
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="#2-warning" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. 2. Warning
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="#3-temporary-ban" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. 3. Temporary Ban
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="#4-permanent-ban" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. 4. Permanent Ban
  952. </span>
  953. </a>
  954. </li>
  955. </ul>
  956. </nav>
  957. </li>
  958. <li class="md-nav__item">
  959. <a href="#attribution" class="md-nav__link">
  960. <span class="md-ellipsis">
  961. Attribution
  962. </span>
  963. </a>
  964. </li>
  965. </ul>
  966. </nav>
  967. </li>
  968. <li class="md-nav__item">
  969. <a href="../roadmap/" class="md-nav__link">
  970. <span class="md-ellipsis">
  971. Roadmap
  972. </span>
  973. </a>
  974. </li>
  975. </ul>
  976. </nav>
  977. </li>
  978. <li class="md-nav__item md-nav__item--nested">
  979. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  980. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  981. <span class="md-ellipsis">
  982. External Resources
  983. </span>
  984. <span class="md-nav__icon md-icon"></span>
  985. </label>
  986. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  987. <label class="md-nav__title" for="__nav_6_2">
  988. <span class="md-nav__icon md-icon"></span>
  989. External Resources
  990. </label>
  991. <ul class="md-nav__list" data-md-scrollfix>
  992. <li class="md-nav__item">
  993. <a href="../../eso-talks/" class="md-nav__link">
  994. <span class="md-ellipsis">
  995. Talks
  996. </span>
  997. </a>
  998. </li>
  999. <li class="md-nav__item">
  1000. <a href="../../eso-demos/" class="md-nav__link">
  1001. <span class="md-ellipsis">
  1002. Demos
  1003. </span>
  1004. </a>
  1005. </li>
  1006. <li class="md-nav__item">
  1007. <a href="../../eso-blogs/" class="md-nav__link">
  1008. <span class="md-ellipsis">
  1009. Blogs
  1010. </span>
  1011. </a>
  1012. </li>
  1013. </ul>
  1014. </nav>
  1015. </li>
  1016. </ul>
  1017. </nav>
  1018. </li>
  1019. </ul>
  1020. </nav>
  1021. </div>
  1022. </div>
  1023. </div>
  1024. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1025. <div class="md-sidebar__scrollwrap">
  1026. <div class="md-sidebar__inner">
  1027. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1028. <label class="md-nav__title" for="__toc">
  1029. <span class="md-nav__icon md-icon"></span>
  1030. Table of contents
  1031. </label>
  1032. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  1033. <li class="md-nav__item">
  1034. <a href="#our-pledge" class="md-nav__link">
  1035. <span class="md-ellipsis">
  1036. Our Pledge
  1037. </span>
  1038. </a>
  1039. </li>
  1040. <li class="md-nav__item">
  1041. <a href="#our-standards" class="md-nav__link">
  1042. <span class="md-ellipsis">
  1043. Our Standards
  1044. </span>
  1045. </a>
  1046. </li>
  1047. <li class="md-nav__item">
  1048. <a href="#enforcement-responsibilities" class="md-nav__link">
  1049. <span class="md-ellipsis">
  1050. Enforcement Responsibilities
  1051. </span>
  1052. </a>
  1053. </li>
  1054. <li class="md-nav__item">
  1055. <a href="#scope" class="md-nav__link">
  1056. <span class="md-ellipsis">
  1057. Scope
  1058. </span>
  1059. </a>
  1060. </li>
  1061. <li class="md-nav__item">
  1062. <a href="#enforcement" class="md-nav__link">
  1063. <span class="md-ellipsis">
  1064. Enforcement
  1065. </span>
  1066. </a>
  1067. </li>
  1068. <li class="md-nav__item">
  1069. <a href="#enforcement-guidelines" class="md-nav__link">
  1070. <span class="md-ellipsis">
  1071. Enforcement Guidelines
  1072. </span>
  1073. </a>
  1074. <nav class="md-nav" aria-label="Enforcement Guidelines">
  1075. <ul class="md-nav__list">
  1076. <li class="md-nav__item">
  1077. <a href="#1-correction" class="md-nav__link">
  1078. <span class="md-ellipsis">
  1079. 1. Correction
  1080. </span>
  1081. </a>
  1082. </li>
  1083. <li class="md-nav__item">
  1084. <a href="#2-warning" class="md-nav__link">
  1085. <span class="md-ellipsis">
  1086. 2. Warning
  1087. </span>
  1088. </a>
  1089. </li>
  1090. <li class="md-nav__item">
  1091. <a href="#3-temporary-ban" class="md-nav__link">
  1092. <span class="md-ellipsis">
  1093. 3. Temporary Ban
  1094. </span>
  1095. </a>
  1096. </li>
  1097. <li class="md-nav__item">
  1098. <a href="#4-permanent-ban" class="md-nav__link">
  1099. <span class="md-ellipsis">
  1100. 4. Permanent Ban
  1101. </span>
  1102. </a>
  1103. </li>
  1104. </ul>
  1105. </nav>
  1106. </li>
  1107. <li class="md-nav__item">
  1108. <a href="#attribution" class="md-nav__link">
  1109. <span class="md-ellipsis">
  1110. Attribution
  1111. </span>
  1112. </a>
  1113. </li>
  1114. </ul>
  1115. </nav>
  1116. </div>
  1117. </div>
  1118. </div>
  1119. <div class="md-content" data-md-component="content">
  1120. <article class="md-content__inner md-typeset">
  1121. <h1 id="code-of-conduct">Code of Conduct</h1>
  1122. <h2 id="our-pledge">Our Pledge</h2>
  1123. <p>We as members, contributors, and leaders pledge to make participation in our
  1124. community a harassment-free experience for everyone, regardless of age, body
  1125. size, visible or invisible disability, ethnicity, sex characteristics, gender
  1126. identity and expression, level of experience, education, socio-economic status,
  1127. nationality, personal appearance, race, caste, color, religion, or sexual identity
  1128. and orientation.</p>
  1129. <p>We pledge to act and interact in ways that contribute to an open, welcoming,
  1130. diverse, inclusive, and healthy community.</p>
  1131. <h2 id="our-standards">Our Standards</h2>
  1132. <p>Examples of behavior that contributes to a positive environment for our
  1133. community include:</p>
  1134. <ul>
  1135. <li>Demonstrating empathy and kindness toward other people</li>
  1136. <li>Being respectful of differing opinions, viewpoints, and experiences</li>
  1137. <li>Giving and gracefully accepting constructive feedback</li>
  1138. <li>Accepting responsibility and apologizing to those affected by our mistakes,
  1139. and learning from the experience</li>
  1140. <li>Focusing on what is best not just for us as individuals, but for the
  1141. overall community</li>
  1142. </ul>
  1143. <p>Examples of unacceptable behavior include:</p>
  1144. <ul>
  1145. <li>The use of sexualized language or imagery, and sexual attention or
  1146. advances of any kind</li>
  1147. <li>Trolling, insulting or derogatory comments, and personal or political attacks</li>
  1148. <li>Public or private harassment</li>
  1149. <li>Publishing others' private information, such as a physical or email
  1150. address, without their explicit permission</li>
  1151. <li>Other conduct which could reasonably be considered inappropriate in a
  1152. professional setting</li>
  1153. </ul>
  1154. <h2 id="enforcement-responsibilities">Enforcement Responsibilities</h2>
  1155. <p>Community leaders are responsible for clarifying and enforcing our standards of
  1156. acceptable behavior and will take appropriate and fair corrective action in
  1157. response to any behavior that they deem inappropriate, threatening, offensive,
  1158. or harmful.</p>
  1159. <p>Community leaders have the right and responsibility to remove, edit, or reject
  1160. comments, commits, code, wiki edits, issues, and other contributions that are
  1161. not aligned to this Code of Conduct, and will communicate reasons for moderation
  1162. decisions when appropriate.</p>
  1163. <h2 id="scope">Scope</h2>
  1164. <p>This Code of Conduct applies within all community spaces, and also applies when
  1165. an individual is officially representing the community in public spaces.
  1166. Examples of representing our community include using an official e-mail address,
  1167. posting via an official social media account, or acting as an appointed
  1168. representative at an online or offline event.</p>
  1169. <h2 id="enforcement">Enforcement</h2>
  1170. <p>Instances of abusive, harassing, or otherwise unacceptable behavior may be
  1171. reported to the community leaders responsible for enforcement at cncf-ExternalSecretsOp-maintainers@lists.cncf.io.
  1172. All complaints will be reviewed and investigated promptly and fairly.</p>
  1173. <p>All community leaders are obligated to respect the privacy and security of the
  1174. reporter of any incident.</p>
  1175. <h2 id="enforcement-guidelines">Enforcement Guidelines</h2>
  1176. <p>Community leaders will follow these Community Impact Guidelines in determining
  1177. the consequences for any action they deem in violation of this Code of Conduct:</p>
  1178. <h3 id="1-correction">1. Correction</h3>
  1179. <p><strong>Community Impact</strong>: Use of inappropriate language or other behavior deemed
  1180. unprofessional or unwelcome in the community.</p>
  1181. <p><strong>Consequence</strong>: A private, written warning from community leaders, providing
  1182. clarity around the nature of the violation and an explanation of why the
  1183. behavior was inappropriate. A public apology may be requested.</p>
  1184. <h3 id="2-warning">2. Warning</h3>
  1185. <p><strong>Community Impact</strong>: A violation through a single incident or series
  1186. of actions.</p>
  1187. <p><strong>Consequence</strong>: A warning with consequences for continued behavior. No
  1188. interaction with the people involved, including unsolicited interaction with
  1189. those enforcing the Code of Conduct, for a specified period of time. This
  1190. includes avoiding interactions in community spaces as well as external channels
  1191. like social media. Violating these terms may lead to a temporary or
  1192. permanent ban.</p>
  1193. <h3 id="3-temporary-ban">3. Temporary Ban</h3>
  1194. <p><strong>Community Impact</strong>: A serious violation of community standards, including
  1195. sustained inappropriate behavior.</p>
  1196. <p><strong>Consequence</strong>: A temporary ban from any sort of interaction or public
  1197. communication with the community for a specified period of time. No public or
  1198. private interaction with the people involved, including unsolicited interaction
  1199. with those enforcing the Code of Conduct, is allowed during this period.
  1200. Violating these terms may lead to a permanent ban.</p>
  1201. <h3 id="4-permanent-ban">4. Permanent Ban</h3>
  1202. <p><strong>Community Impact</strong>: Demonstrating a pattern of violation of community
  1203. standards, including sustained inappropriate behavior, harassment of an
  1204. individual, or aggression toward or disparagement of classes of individuals.</p>
  1205. <p><strong>Consequence</strong>: A permanent ban from any sort of public interaction within
  1206. the community.</p>
  1207. <h2 id="attribution">Attribution</h2>
  1208. <p>This Code of Conduct is adapted from the <a href="https://www.contributor-covenant.org">Contributor Covenant</a>,
  1209. version 2.0, available at
  1210. <a href="https://www.contributor-covenant.org/version/2/0/code_of_conduct.html">https://www.contributor-covenant.org/version/2/0/code_of_conduct.html</a>.</p>
  1211. <p>Community Impact Guidelines were inspired by
  1212. <a href="https://github.com/mozilla/diversity">Mozilla's code of conduct enforcement ladder</a>.</p>
  1213. <p>For answers to common questions about this code of conduct, see the FAQ at
  1214. <a href="https://www.contributor-covenant.org/faq">https://www.contributor-covenant.org/faq</a>. Translations are available
  1215. at <a href="https://www.contributor-covenant.org/translations">https://www.contributor-covenant.org/translations</a>.</p>
  1216. </article>
  1217. </div>
  1218. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  1219. </div>
  1220. </main>
  1221. <footer class="md-footer">
  1222. <div class="md-footer-meta md-typeset">
  1223. <div class="md-footer-meta__inner md-grid">
  1224. <div class="md-copyright">
  1225. <div class="md-copyright__highlight">
  1226. &copy; 2023 The external-secrets Authors.<br/>
  1227. &copy; 2023 The Linux Foundation. All rights reserved.<br/><br/>
  1228. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  1229. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  1230. </div>
  1231. Made with
  1232. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  1233. Material for MkDocs
  1234. </a>
  1235. </div>
  1236. </div>
  1237. </div>
  1238. </footer>
  1239. </div>
  1240. <div class="md-dialog" data-md-component="dialog">
  1241. <div class="md-dialog__inner md-typeset"></div>
  1242. </div>
  1243. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  1244. <script src="../../assets/javascripts/bundle.caa56a14.min.js"></script>
  1245. </body>
  1246. </html>