index.html 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  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.4.3, mkdocs-material-9.1.9">
  10. <title>Code of Conduct - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.85bb2934.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. <script>var palette=__md_get("__palette");if(palette&&"object"==typeof palette.color)for(var key of Object.keys(palette.color))document.body.setAttribute("data-md-color-"+key,palette.color[key])</script>
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. <a href="#code-of-conduct" class="md-skip">
  26. Skip to content
  27. </a>
  28. </div>
  29. <div data-md-component="announce">
  30. </div>
  31. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  32. <aside class="md-banner md-banner--warning">
  33. <div class="md-banner__inner md-grid md-typeset">
  34. You're not viewing the latest version.
  35. <a href="../../..">
  36. <strong>Click here to go to latest.</strong>
  37. </a>
  38. </div>
  39. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  40. </aside>
  41. </div>
  42. <header class="md-header" data-md-component="header">
  43. <nav class="md-header__inner md-grid" aria-label="Header">
  44. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  45. <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>
  46. </a>
  47. <label class="md-header__button md-icon" for="__drawer">
  48. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  49. </label>
  50. <div class="md-header__title" data-md-component="header-title">
  51. <div class="md-header__ellipsis">
  52. <div class="md-header__topic">
  53. <span class="md-ellipsis">
  54. External Secrets Operator
  55. </span>
  56. </div>
  57. <div class="md-header__topic" data-md-component="header-topic">
  58. <span class="md-ellipsis">
  59. Code of Conduct
  60. </span>
  61. </div>
  62. </div>
  63. </div>
  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.4.0 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">
  136. <a href="../devguide/" class="md-tabs__link md-tabs__link--active">
  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.4.0 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--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__link--index ">
  169. <a href="../..">Introduction</a>
  170. <label for="__nav_1">
  171. <span class="md-nav__icon md-icon"></span>
  172. </label>
  173. </div>
  174. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  175. <label class="md-nav__title" for="__nav_1">
  176. <span class="md-nav__icon md-icon"></span>
  177. Introduction
  178. </label>
  179. <ul class="md-nav__list" data-md-scrollfix>
  180. <li class="md-nav__item">
  181. <a href="../../introduction/overview/" class="md-nav__link">
  182. Overview
  183. </a>
  184. </li>
  185. <li class="md-nav__item">
  186. <a href="../../introduction/getting-started/" class="md-nav__link">
  187. Getting started
  188. </a>
  189. </li>
  190. <li class="md-nav__item">
  191. <a href="../../introduction/faq/" class="md-nav__link">
  192. FAQ
  193. </a>
  194. </li>
  195. <li class="md-nav__item">
  196. <a href="../../introduction/stability-support/" class="md-nav__link">
  197. Stability and Support
  198. </a>
  199. </li>
  200. <li class="md-nav__item">
  201. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  202. Deprecation Policy
  203. </a>
  204. </li>
  205. </ul>
  206. </nav>
  207. </li>
  208. <li class="md-nav__item md-nav__item--nested">
  209. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2" >
  210. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="0">
  211. API
  212. <span class="md-nav__icon md-icon"></span>
  213. </label>
  214. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="false">
  215. <label class="md-nav__title" for="__nav_2">
  216. <span class="md-nav__icon md-icon"></span>
  217. API
  218. </label>
  219. <ul class="md-nav__list" data-md-scrollfix>
  220. <li class="md-nav__item">
  221. <a href="../../api/components/" class="md-nav__link">
  222. Components
  223. </a>
  224. </li>
  225. <li class="md-nav__item md-nav__item--nested">
  226. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  227. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  228. Core Resources
  229. <span class="md-nav__icon md-icon"></span>
  230. </label>
  231. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  232. <label class="md-nav__title" for="__nav_2_2">
  233. <span class="md-nav__icon md-icon"></span>
  234. Core Resources
  235. </label>
  236. <ul class="md-nav__list" data-md-scrollfix>
  237. <li class="md-nav__item">
  238. <a href="../../api/externalsecret/" class="md-nav__link">
  239. ExternalSecret
  240. </a>
  241. </li>
  242. <li class="md-nav__item">
  243. <a href="../../api/secretstore/" class="md-nav__link">
  244. SecretStore
  245. </a>
  246. </li>
  247. <li class="md-nav__item">
  248. <a href="../../api/clustersecretstore/" class="md-nav__link">
  249. ClusterSecretStore
  250. </a>
  251. </li>
  252. <li class="md-nav__item">
  253. <a href="../../api/clusterexternalsecret/" class="md-nav__link">
  254. ClusterExternalSecret
  255. </a>
  256. </li>
  257. <li class="md-nav__item">
  258. <a href="../../api/pushsecret/" class="md-nav__link">
  259. PushSecret
  260. </a>
  261. </li>
  262. </ul>
  263. </nav>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  267. <div class="md-nav__link md-nav__link--index ">
  268. <a href="../../api/generator/">Generators</a>
  269. <label for="__nav_2_3">
  270. <span class="md-nav__icon md-icon"></span>
  271. </label>
  272. </div>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_3">
  275. <span class="md-nav__icon md-icon"></span>
  276. Generators
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../../api/generator/acr/" class="md-nav__link">
  281. Azure Container Registry
  282. </a>
  283. </li>
  284. <li class="md-nav__item">
  285. <a href="../../api/generator/ecr/" class="md-nav__link">
  286. AWS Elastic Container Registry
  287. </a>
  288. </li>
  289. <li class="md-nav__item">
  290. <a href="../../api/generator/gcr/" class="md-nav__link">
  291. Google Container Registry
  292. </a>
  293. </li>
  294. <li class="md-nav__item">
  295. <a href="../../api/generator/vault/" class="md-nav__link">
  296. Vault Dynamic Secret
  297. </a>
  298. </li>
  299. <li class="md-nav__item">
  300. <a href="../../api/generator/password/" class="md-nav__link">
  301. Password
  302. </a>
  303. </li>
  304. <li class="md-nav__item">
  305. <a href="../../api/generator/fake/" class="md-nav__link">
  306. Fake
  307. </a>
  308. </li>
  309. </ul>
  310. </nav>
  311. </li>
  312. <li class="md-nav__item md-nav__item--nested">
  313. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_4" >
  314. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  315. Reference Docs
  316. <span class="md-nav__icon md-icon"></span>
  317. </label>
  318. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="false">
  319. <label class="md-nav__title" for="__nav_2_4">
  320. <span class="md-nav__icon md-icon"></span>
  321. Reference Docs
  322. </label>
  323. <ul class="md-nav__list" data-md-scrollfix>
  324. <li class="md-nav__item">
  325. <a href="../../api/spec/" class="md-nav__link">
  326. API specification
  327. </a>
  328. </li>
  329. <li class="md-nav__item">
  330. <a href="../../api/controller-options/" class="md-nav__link">
  331. Controller Options
  332. </a>
  333. </li>
  334. <li class="md-nav__item">
  335. <a href="../../api/metrics/" class="md-nav__link">
  336. Metrics
  337. </a>
  338. </li>
  339. </ul>
  340. </nav>
  341. </li>
  342. </ul>
  343. </nav>
  344. </li>
  345. <li class="md-nav__item md-nav__item--nested">
  346. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  347. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  348. Guides
  349. <span class="md-nav__icon md-icon"></span>
  350. </label>
  351. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  352. <label class="md-nav__title" for="__nav_3">
  353. <span class="md-nav__icon md-icon"></span>
  354. Guides
  355. </label>
  356. <ul class="md-nav__list" data-md-scrollfix>
  357. <li class="md-nav__item">
  358. <a href="../../guides/introduction/" class="md-nav__link">
  359. Introduction
  360. </a>
  361. </li>
  362. <li class="md-nav__item md-nav__item--nested">
  363. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  364. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  365. External Secrets
  366. <span class="md-nav__icon md-icon"></span>
  367. </label>
  368. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  369. <label class="md-nav__title" for="__nav_3_2">
  370. <span class="md-nav__icon md-icon"></span>
  371. External Secrets
  372. </label>
  373. <ul class="md-nav__list" data-md-scrollfix>
  374. <li class="md-nav__item">
  375. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  376. Extract structured data
  377. </a>
  378. </li>
  379. <li class="md-nav__item">
  380. <a href="../../guides/getallsecrets/" class="md-nav__link">
  381. Find Secrets by Name or Metadata
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  386. Rewriting Keys
  387. </a>
  388. </li>
  389. <li class="md-nav__item md-nav__item--nested">
  390. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  391. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  392. Advanced Templating
  393. <span class="md-nav__icon md-icon"></span>
  394. </label>
  395. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  396. <label class="md-nav__title" for="__nav_3_2_4">
  397. <span class="md-nav__icon md-icon"></span>
  398. Advanced Templating
  399. </label>
  400. <ul class="md-nav__list" data-md-scrollfix>
  401. <li class="md-nav__item">
  402. <a href="../../guides/templating/" class="md-nav__link">
  403. v2
  404. </a>
  405. </li>
  406. <li class="md-nav__item">
  407. <a href="../../guides/templating-v1/" class="md-nav__link">
  408. v1
  409. </a>
  410. </li>
  411. </ul>
  412. </nav>
  413. </li>
  414. <li class="md-nav__item">
  415. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  416. Kubernetes Secret Types
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  421. Lifecycle: ownership & deletion
  422. </a>
  423. </li>
  424. <li class="md-nav__item">
  425. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  426. Decoding Strategies
  427. </a>
  428. </li>
  429. <li class="md-nav__item">
  430. <a href="../../guides/controller-class/" class="md-nav__link">
  431. Controller Classes
  432. </a>
  433. </li>
  434. </ul>
  435. </nav>
  436. </li>
  437. <li class="md-nav__item">
  438. <a href="../../guides/generator/" class="md-nav__link">
  439. Generators
  440. </a>
  441. </li>
  442. <li class="md-nav__item md-nav__item--nested">
  443. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_4" >
  444. <label class="md-nav__link" for="__nav_3_4" id="__nav_3_4_label" tabindex="0">
  445. Operations
  446. <span class="md-nav__icon md-icon"></span>
  447. </label>
  448. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_4_label" aria-expanded="false">
  449. <label class="md-nav__title" for="__nav_3_4">
  450. <span class="md-nav__icon md-icon"></span>
  451. Operations
  452. </label>
  453. <ul class="md-nav__list" data-md-scrollfix>
  454. <li class="md-nav__item">
  455. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  456. Multi Tenancy
  457. </a>
  458. </li>
  459. <li class="md-nav__item">
  460. <a href="../../guides/security-best-practices/" class="md-nav__link">
  461. Security Best Practices
  462. </a>
  463. </li>
  464. <li class="md-nav__item">
  465. <a href="../../guides/threat-model/" class="md-nav__link">
  466. Threat Model
  467. </a>
  468. </li>
  469. <li class="md-nav__item">
  470. <a href="../../guides/v1beta1/" class="md-nav__link">
  471. Upgrading to v1beta1
  472. </a>
  473. </li>
  474. <li class="md-nav__item">
  475. <a href="../../guides/using-latest-image/" class="md-nav__link">
  476. Using Latest Image
  477. </a>
  478. </li>
  479. <li class="md-nav__item">
  480. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  481. Disable Cluster Features
  482. </a>
  483. </li>
  484. </ul>
  485. </nav>
  486. </li>
  487. </ul>
  488. </nav>
  489. </li>
  490. <li class="md-nav__item md-nav__item--nested">
  491. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  492. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  493. Provider
  494. <span class="md-nav__icon md-icon"></span>
  495. </label>
  496. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  497. <label class="md-nav__title" for="__nav_4">
  498. <span class="md-nav__icon md-icon"></span>
  499. Provider
  500. </label>
  501. <ul class="md-nav__list" data-md-scrollfix>
  502. <li class="md-nav__item">
  503. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  504. AWS Secrets Manager
  505. </a>
  506. </li>
  507. <li class="md-nav__item">
  508. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  509. AWS Parameter Store
  510. </a>
  511. </li>
  512. <li class="md-nav__item">
  513. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  514. Azure Key Vault
  515. </a>
  516. </li>
  517. <li class="md-nav__item">
  518. <a href="../../provider/conjur/" class="md-nav__link">
  519. CyberArk Conjur
  520. </a>
  521. </li>
  522. <li class="md-nav__item">
  523. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  524. Google Cloud Secret Manager
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  529. HashiCorp Vault
  530. </a>
  531. </li>
  532. <li class="md-nav__item">
  533. <a href="../../provider/kubernetes/" class="md-nav__link">
  534. Kubernetes
  535. </a>
  536. </li>
  537. <li class="md-nav__item">
  538. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  539. IBM Secrets Manager
  540. </a>
  541. </li>
  542. <li class="md-nav__item">
  543. <a href="../../provider/akeyless/" class="md-nav__link">
  544. Akeyless
  545. </a>
  546. </li>
  547. <li class="md-nav__item">
  548. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  549. Yandex Certificate Manager
  550. </a>
  551. </li>
  552. <li class="md-nav__item">
  553. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  554. Yandex Lockbox
  555. </a>
  556. </li>
  557. <li class="md-nav__item">
  558. <a href="../../provider/alibaba/" class="md-nav__link">
  559. Alibaba Cloud
  560. </a>
  561. </li>
  562. <li class="md-nav__item">
  563. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  564. GitLab Variables
  565. </a>
  566. </li>
  567. <li class="md-nav__item">
  568. <a href="../../provider/oracle-vault/" class="md-nav__link">
  569. Oracle Vault
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../../provider/1password-automation/" class="md-nav__link">
  574. 1Password Secrets Automation
  575. </a>
  576. </li>
  577. <li class="md-nav__item">
  578. <a href="../../provider/webhook/" class="md-nav__link">
  579. Webhook
  580. </a>
  581. </li>
  582. <li class="md-nav__item">
  583. <a href="../../provider/fake/" class="md-nav__link">
  584. Fake
  585. </a>
  586. </li>
  587. <li class="md-nav__item">
  588. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  589. senhasegura DevOps Secrets Management (DSM)
  590. </a>
  591. </li>
  592. <li class="md-nav__item">
  593. <a href="../../provider/doppler/" class="md-nav__link">
  594. Doppler
  595. </a>
  596. </li>
  597. <li class="md-nav__item">
  598. <a href="../../provider/keeper-security/" class="md-nav__link">
  599. Keeper Security
  600. </a>
  601. </li>
  602. <li class="md-nav__item">
  603. <a href="../../provider/cloak/" class="md-nav__link">
  604. Cloak End 2 End Encrypted Secrets
  605. </a>
  606. </li>
  607. <li class="md-nav__item">
  608. <a href="../../provider/scaleway/" class="md-nav__link">
  609. Scaleway
  610. </a>
  611. </li>
  612. <li class="md-nav__item">
  613. <a href="../../provider/delinea/" class="md-nav__link">
  614. Delinea
  615. </a>
  616. </li>
  617. </ul>
  618. </nav>
  619. </li>
  620. <li class="md-nav__item md-nav__item--nested">
  621. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  622. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  623. Examples
  624. <span class="md-nav__icon md-icon"></span>
  625. </label>
  626. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  627. <label class="md-nav__title" for="__nav_5">
  628. <span class="md-nav__icon md-icon"></span>
  629. Examples
  630. </label>
  631. <ul class="md-nav__list" data-md-scrollfix>
  632. <li class="md-nav__item">
  633. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  634. FluxCD
  635. </a>
  636. </li>
  637. <li class="md-nav__item">
  638. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  639. Anchore Engine
  640. </a>
  641. </li>
  642. <li class="md-nav__item">
  643. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  644. Jenkins
  645. </a>
  646. </li>
  647. <li class="md-nav__item">
  648. <a href="../../examples/bitwarden/" class="md-nav__link">
  649. BitWarden
  650. </a>
  651. </li>
  652. </ul>
  653. </nav>
  654. </li>
  655. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  656. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_6" checked>
  657. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  658. Community
  659. <span class="md-nav__icon md-icon"></span>
  660. </label>
  661. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="true">
  662. <label class="md-nav__title" for="__nav_6">
  663. <span class="md-nav__icon md-icon"></span>
  664. Community
  665. </label>
  666. <ul class="md-nav__list" data-md-scrollfix>
  667. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  668. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_6_1" checked>
  669. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  670. Contributing
  671. <span class="md-nav__icon md-icon"></span>
  672. </label>
  673. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="true">
  674. <label class="md-nav__title" for="__nav_6_1">
  675. <span class="md-nav__icon md-icon"></span>
  676. Contributing
  677. </label>
  678. <ul class="md-nav__list" data-md-scrollfix>
  679. <li class="md-nav__item">
  680. <a href="../devguide/" class="md-nav__link">
  681. Developer guide
  682. </a>
  683. </li>
  684. <li class="md-nav__item">
  685. <a href="../process/" class="md-nav__link">
  686. Contributing Process
  687. </a>
  688. </li>
  689. <li class="md-nav__item">
  690. <a href="../release/" class="md-nav__link">
  691. Release Process
  692. </a>
  693. </li>
  694. <li class="md-nav__item md-nav__item--active">
  695. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  696. <label class="md-nav__link md-nav__link--active" for="__toc">
  697. Code of Conduct
  698. <span class="md-nav__icon md-icon"></span>
  699. </label>
  700. <a href="./" class="md-nav__link md-nav__link--active">
  701. Code of Conduct
  702. </a>
  703. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  704. <label class="md-nav__title" for="__toc">
  705. <span class="md-nav__icon md-icon"></span>
  706. Table of contents
  707. </label>
  708. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  709. <li class="md-nav__item">
  710. <a href="#our-pledge" class="md-nav__link">
  711. Our Pledge
  712. </a>
  713. </li>
  714. <li class="md-nav__item">
  715. <a href="#our-standards" class="md-nav__link">
  716. Our Standards
  717. </a>
  718. </li>
  719. <li class="md-nav__item">
  720. <a href="#enforcement-responsibilities" class="md-nav__link">
  721. Enforcement Responsibilities
  722. </a>
  723. </li>
  724. <li class="md-nav__item">
  725. <a href="#scope" class="md-nav__link">
  726. Scope
  727. </a>
  728. </li>
  729. <li class="md-nav__item">
  730. <a href="#enforcement" class="md-nav__link">
  731. Enforcement
  732. </a>
  733. </li>
  734. <li class="md-nav__item">
  735. <a href="#enforcement-guidelines" class="md-nav__link">
  736. Enforcement Guidelines
  737. </a>
  738. <nav class="md-nav" aria-label="Enforcement Guidelines">
  739. <ul class="md-nav__list">
  740. <li class="md-nav__item">
  741. <a href="#1-correction" class="md-nav__link">
  742. 1. Correction
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="#2-warning" class="md-nav__link">
  747. 2. Warning
  748. </a>
  749. </li>
  750. <li class="md-nav__item">
  751. <a href="#3-temporary-ban" class="md-nav__link">
  752. 3. Temporary Ban
  753. </a>
  754. </li>
  755. <li class="md-nav__item">
  756. <a href="#4-permanent-ban" class="md-nav__link">
  757. 4. Permanent Ban
  758. </a>
  759. </li>
  760. </ul>
  761. </nav>
  762. </li>
  763. <li class="md-nav__item">
  764. <a href="#attribution" class="md-nav__link">
  765. Attribution
  766. </a>
  767. </li>
  768. </ul>
  769. </nav>
  770. </li>
  771. <li class="md-nav__item">
  772. <a href="../roadmap/" class="md-nav__link">
  773. Roadmap
  774. </a>
  775. </li>
  776. </ul>
  777. </nav>
  778. </li>
  779. <li class="md-nav__item md-nav__item--nested">
  780. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  781. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  782. External Resources
  783. <span class="md-nav__icon md-icon"></span>
  784. </label>
  785. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  786. <label class="md-nav__title" for="__nav_6_2">
  787. <span class="md-nav__icon md-icon"></span>
  788. External Resources
  789. </label>
  790. <ul class="md-nav__list" data-md-scrollfix>
  791. <li class="md-nav__item">
  792. <a href="../../eso-talks/" class="md-nav__link">
  793. Talks
  794. </a>
  795. </li>
  796. <li class="md-nav__item">
  797. <a href="../../eso-demos/" class="md-nav__link">
  798. Demos
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../eso-blogs/" class="md-nav__link">
  803. Blogs
  804. </a>
  805. </li>
  806. </ul>
  807. </nav>
  808. </li>
  809. </ul>
  810. </nav>
  811. </li>
  812. </ul>
  813. </nav>
  814. </div>
  815. </div>
  816. </div>
  817. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  818. <div class="md-sidebar__scrollwrap">
  819. <div class="md-sidebar__inner">
  820. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  821. <label class="md-nav__title" for="__toc">
  822. <span class="md-nav__icon md-icon"></span>
  823. Table of contents
  824. </label>
  825. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  826. <li class="md-nav__item">
  827. <a href="#our-pledge" class="md-nav__link">
  828. Our Pledge
  829. </a>
  830. </li>
  831. <li class="md-nav__item">
  832. <a href="#our-standards" class="md-nav__link">
  833. Our Standards
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="#enforcement-responsibilities" class="md-nav__link">
  838. Enforcement Responsibilities
  839. </a>
  840. </li>
  841. <li class="md-nav__item">
  842. <a href="#scope" class="md-nav__link">
  843. Scope
  844. </a>
  845. </li>
  846. <li class="md-nav__item">
  847. <a href="#enforcement" class="md-nav__link">
  848. Enforcement
  849. </a>
  850. </li>
  851. <li class="md-nav__item">
  852. <a href="#enforcement-guidelines" class="md-nav__link">
  853. Enforcement Guidelines
  854. </a>
  855. <nav class="md-nav" aria-label="Enforcement Guidelines">
  856. <ul class="md-nav__list">
  857. <li class="md-nav__item">
  858. <a href="#1-correction" class="md-nav__link">
  859. 1. Correction
  860. </a>
  861. </li>
  862. <li class="md-nav__item">
  863. <a href="#2-warning" class="md-nav__link">
  864. 2. Warning
  865. </a>
  866. </li>
  867. <li class="md-nav__item">
  868. <a href="#3-temporary-ban" class="md-nav__link">
  869. 3. Temporary Ban
  870. </a>
  871. </li>
  872. <li class="md-nav__item">
  873. <a href="#4-permanent-ban" class="md-nav__link">
  874. 4. Permanent Ban
  875. </a>
  876. </li>
  877. </ul>
  878. </nav>
  879. </li>
  880. <li class="md-nav__item">
  881. <a href="#attribution" class="md-nav__link">
  882. Attribution
  883. </a>
  884. </li>
  885. </ul>
  886. </nav>
  887. </div>
  888. </div>
  889. </div>
  890. <div class="md-content" data-md-component="content">
  891. <article class="md-content__inner md-typeset">
  892. <h1 id="code-of-conduct">Code of Conduct</h1>
  893. <h2 id="our-pledge">Our Pledge</h2>
  894. <p>We as members, contributors, and leaders pledge to make participation in our
  895. community a harassment-free experience for everyone, regardless of age, body
  896. size, visible or invisible disability, ethnicity, sex characteristics, gender
  897. identity and expression, level of experience, education, socio-economic status,
  898. nationality, personal appearance, race, caste, color, religion, or sexual identity
  899. and orientation.</p>
  900. <p>We pledge to act and interact in ways that contribute to an open, welcoming,
  901. diverse, inclusive, and healthy community.</p>
  902. <h2 id="our-standards">Our Standards</h2>
  903. <p>Examples of behavior that contributes to a positive environment for our
  904. community include:</p>
  905. <ul>
  906. <li>Demonstrating empathy and kindness toward other people</li>
  907. <li>Being respectful of differing opinions, viewpoints, and experiences</li>
  908. <li>Giving and gracefully accepting constructive feedback</li>
  909. <li>Accepting responsibility and apologizing to those affected by our mistakes,
  910. and learning from the experience</li>
  911. <li>Focusing on what is best not just for us as individuals, but for the
  912. overall community</li>
  913. </ul>
  914. <p>Examples of unacceptable behavior include:</p>
  915. <ul>
  916. <li>The use of sexualized language or imagery, and sexual attention or
  917. advances of any kind</li>
  918. <li>Trolling, insulting or derogatory comments, and personal or political attacks</li>
  919. <li>Public or private harassment</li>
  920. <li>Publishing others' private information, such as a physical or email
  921. address, without their explicit permission</li>
  922. <li>Other conduct which could reasonably be considered inappropriate in a
  923. professional setting</li>
  924. </ul>
  925. <h2 id="enforcement-responsibilities">Enforcement Responsibilities</h2>
  926. <p>Community leaders are responsible for clarifying and enforcing our standards of
  927. acceptable behavior and will take appropriate and fair corrective action in
  928. response to any behavior that they deem inappropriate, threatening, offensive,
  929. or harmful.</p>
  930. <p>Community leaders have the right and responsibility to remove, edit, or reject
  931. comments, commits, code, wiki edits, issues, and other contributions that are
  932. not aligned to this Code of Conduct, and will communicate reasons for moderation
  933. decisions when appropriate.</p>
  934. <h2 id="scope">Scope</h2>
  935. <p>This Code of Conduct applies within all community spaces, and also applies when
  936. an individual is officially representing the community in public spaces.
  937. Examples of representing our community include using an official e-mail address,
  938. posting via an official social media account, or acting as an appointed
  939. representative at an online or offline event.</p>
  940. <h2 id="enforcement">Enforcement</h2>
  941. <p>Instances of abusive, harassing, or otherwise unacceptable behavior may be
  942. reported to the community leaders responsible for enforcement at contact@external-secrets.io.
  943. All complaints will be reviewed and investigated promptly and fairly.</p>
  944. <p>All community leaders are obligated to respect the privacy and security of the
  945. reporter of any incident.</p>
  946. <h2 id="enforcement-guidelines">Enforcement Guidelines</h2>
  947. <p>Community leaders will follow these Community Impact Guidelines in determining
  948. the consequences for any action they deem in violation of this Code of Conduct:</p>
  949. <h3 id="1-correction">1. Correction</h3>
  950. <p><strong>Community Impact</strong>: Use of inappropriate language or other behavior deemed
  951. unprofessional or unwelcome in the community.</p>
  952. <p><strong>Consequence</strong>: A private, written warning from community leaders, providing
  953. clarity around the nature of the violation and an explanation of why the
  954. behavior was inappropriate. A public apology may be requested.</p>
  955. <h3 id="2-warning">2. Warning</h3>
  956. <p><strong>Community Impact</strong>: A violation through a single incident or series
  957. of actions.</p>
  958. <p><strong>Consequence</strong>: A warning with consequences for continued behavior. No
  959. interaction with the people involved, including unsolicited interaction with
  960. those enforcing the Code of Conduct, for a specified period of time. This
  961. includes avoiding interactions in community spaces as well as external channels
  962. like social media. Violating these terms may lead to a temporary or
  963. permanent ban.</p>
  964. <h3 id="3-temporary-ban">3. Temporary Ban</h3>
  965. <p><strong>Community Impact</strong>: A serious violation of community standards, including
  966. sustained inappropriate behavior.</p>
  967. <p><strong>Consequence</strong>: A temporary ban from any sort of interaction or public
  968. communication with the community for a specified period of time. No public or
  969. private interaction with the people involved, including unsolicited interaction
  970. with those enforcing the Code of Conduct, is allowed during this period.
  971. Violating these terms may lead to a permanent ban.</p>
  972. <h3 id="4-permanent-ban">4. Permanent Ban</h3>
  973. <p><strong>Community Impact</strong>: Demonstrating a pattern of violation of community
  974. standards, including sustained inappropriate behavior, harassment of an
  975. individual, or aggression toward or disparagement of classes of individuals.</p>
  976. <p><strong>Consequence</strong>: A permanent ban from any sort of public interaction within
  977. the community.</p>
  978. <h2 id="attribution">Attribution</h2>
  979. <p>This Code of Conduct is adapted from the <a href="https://www.contributor-covenant.org">Contributor Covenant</a>,
  980. version 2.0, available at
  981. <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>
  982. <p>Community Impact Guidelines were inspired by
  983. <a href="https://github.com/mozilla/diversity">Mozilla's code of conduct enforcement ladder</a>.</p>
  984. <p>For answers to common questions about this code of conduct, see the FAQ at
  985. <a href="https://www.contributor-covenant.org/faq">https://www.contributor-covenant.org/faq</a>. Translations are available
  986. at <a href="https://www.contributor-covenant.org/translations">https://www.contributor-covenant.org/translations</a>.</p>
  987. </article>
  988. </div>
  989. </div>
  990. </main>
  991. <footer class="md-footer">
  992. <div class="md-footer-meta md-typeset">
  993. <div class="md-footer-meta__inner md-grid">
  994. <div class="md-copyright">
  995. <div class="md-copyright__highlight">
  996. &copy; 2023 The external-secrets Authors.<br/>
  997. &copy; 2023 The Linux Foundation. All rights reserved.<br/><br/>
  998. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  999. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  1000. </div>
  1001. Made with
  1002. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  1003. Material for MkDocs
  1004. </a>
  1005. </div>
  1006. </div>
  1007. </div>
  1008. </footer>
  1009. </div>
  1010. <div class="md-dialog" data-md-component="dialog">
  1011. <div class="md-dialog__inner md-typeset"></div>
  1012. </div>
  1013. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.208ed371.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>
  1014. <script src="../../assets/javascripts/bundle.fac441b0.min.js"></script>
  1015. </body>
  1016. </html>