index.html 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770
  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="icon" href="../assets/images/favicon.png">
  7. <meta name="generator" content="mkdocs-1.2.3, mkdocs-material-8.1.10">
  8. <title>Code of Conduct - External Secrets Operator</title>
  9. <link rel="stylesheet" href="../assets/stylesheets/main.d6be258b.min.css">
  10. <link rel="stylesheet" href="../assets/stylesheets/palette.e6a45f82.min.css">
  11. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  12. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback">
  13. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  14. <script>__md_scope=new URL("..",location),__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>
  15. <script>function gtag(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],gtag("js",new Date),gtag("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&gtag("event","search",{search_term:this.value})}),"undefined"!=typeof location$&&location$.subscribe(function(e){gtag("config","G-QP38TD8K7V",{page_path:e.pathname})})})</script>
  16. <script async src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V"></script>
  17. </head>
  18. <body dir="ltr" data-md-color-scheme="" data-md-color-primary="none" data-md-color-accent="none">
  19. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  20. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  21. <label class="md-overlay" for="__drawer"></label>
  22. <div data-md-component="skip">
  23. <a href="#code-of-conduct" class="md-skip">
  24. Skip to content
  25. </a>
  26. </div>
  27. <div data-md-component="announce">
  28. </div>
  29. <div data-md-component="outdated" hidden>
  30. <aside class="md-banner md-banner--warning">
  31. <div class="md-banner__inner md-grid md-typeset">
  32. You're not viewing the latest version.
  33. <a href="../..">
  34. <strong>Click here to go to latest.</strong>
  35. </a>
  36. </div>
  37. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  38. </aside>
  39. </div>
  40. <header class="md-header" data-md-component="header">
  41. <nav class="md-header__inner md-grid" aria-label="Header">
  42. <a href=".." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  43. <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>
  44. </a>
  45. <label class="md-header__button md-icon" for="__drawer">
  46. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2z"/></svg>
  47. </label>
  48. <div class="md-header__title" data-md-component="header-title">
  49. <div class="md-header__ellipsis">
  50. <div class="md-header__topic">
  51. <span class="md-ellipsis">
  52. External Secrets Operator
  53. </span>
  54. </div>
  55. <div class="md-header__topic" data-md-component="header-topic">
  56. <span class="md-ellipsis">
  57. Code of Conduct
  58. </span>
  59. </div>
  60. </div>
  61. </div>
  62. <label class="md-header__button md-icon" for="__search">
  63. <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>
  64. </label>
  65. <div class="md-search" data-md-component="search" role="dialog">
  66. <label class="md-search__overlay" for="__search"></label>
  67. <div class="md-search__inner" role="search">
  68. <form class="md-search__form" name="search">
  69. <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>
  70. <label class="md-search__icon md-icon" for="__search">
  71. <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>
  72. <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>
  73. </label>
  74. <nav class="md-search__options" aria-label="Search">
  75. <button type="reset" class="md-search__icon md-icon" aria-label="Clear" tabindex="-1">
  76. <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>
  77. </button>
  78. </nav>
  79. </form>
  80. <div class="md-search__output">
  81. <div class="md-search__scrollwrap" data-md-scrollfix>
  82. <div class="md-search-result" data-md-component="search-result">
  83. <div class="md-search-result__meta">
  84. Initializing search
  85. </div>
  86. <ol class="md-search-result__list"></ol>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. <div class="md-header__source">
  93. <a href="https://github.com/external-secrets/external-secrets/" title="Go to repository" class="md-source" data-md-component="source">
  94. <div class="md-source__icon md-icon">
  95. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><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>
  96. </div>
  97. <div class="md-source__repository">
  98. External Secrets Operator
  99. </div>
  100. </a>
  101. </div>
  102. </nav>
  103. </header>
  104. <div class="md-container" data-md-component="container">
  105. <main class="md-main" data-md-component="main">
  106. <div class="md-main__inner md-grid">
  107. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  108. <div class="md-sidebar__scrollwrap">
  109. <div class="md-sidebar__inner">
  110. <nav class="md-nav md-nav--primary" aria-label="Navigation" data-md-level="0">
  111. <label class="md-nav__title" for="__drawer">
  112. <a href=".." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  113. <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>
  114. </a>
  115. External Secrets Operator
  116. </label>
  117. <div class="md-nav__source">
  118. <a href="https://github.com/external-secrets/external-secrets/" title="Go to repository" class="md-source" data-md-component="source">
  119. <div class="md-source__icon md-icon">
  120. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><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>
  121. </div>
  122. <div class="md-source__repository">
  123. External Secrets Operator
  124. </div>
  125. </a>
  126. </div>
  127. <ul class="md-nav__list" data-md-scrollfix>
  128. <li class="md-nav__item">
  129. <a href=".." class="md-nav__link">
  130. Introduction
  131. </a>
  132. </li>
  133. <li class="md-nav__item">
  134. <a href="../api-overview/" class="md-nav__link">
  135. Overview
  136. </a>
  137. </li>
  138. <li class="md-nav__item md-nav__item--nested">
  139. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_3" type="checkbox" id="__nav_3" >
  140. <label class="md-nav__link" for="__nav_3">
  141. API Types
  142. <span class="md-nav__icon md-icon"></span>
  143. </label>
  144. <nav class="md-nav" aria-label="API Types" data-md-level="1">
  145. <label class="md-nav__title" for="__nav_3">
  146. <span class="md-nav__icon md-icon"></span>
  147. API Types
  148. </label>
  149. <ul class="md-nav__list" data-md-scrollfix>
  150. <li class="md-nav__item">
  151. <a href="../api-externalsecret/" class="md-nav__link">
  152. ExternalSecret
  153. </a>
  154. </li>
  155. <li class="md-nav__item">
  156. <a href="../api-secretstore/" class="md-nav__link">
  157. SecretStore
  158. </a>
  159. </li>
  160. <li class="md-nav__item">
  161. <a href="../api-clustersecretstore/" class="md-nav__link">
  162. ClusterSecretStore
  163. </a>
  164. </li>
  165. <li class="md-nav__item">
  166. <a href="../api-clusterexternalsecret/" class="md-nav__link">
  167. ClusterExternalSecret
  168. </a>
  169. </li>
  170. </ul>
  171. </nav>
  172. </li>
  173. <li class="md-nav__item md-nav__item--nested">
  174. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_4" type="checkbox" id="__nav_4" >
  175. <label class="md-nav__link" for="__nav_4">
  176. Guides
  177. <span class="md-nav__icon md-icon"></span>
  178. </label>
  179. <nav class="md-nav" aria-label="Guides" data-md-level="1">
  180. <label class="md-nav__title" for="__nav_4">
  181. <span class="md-nav__icon md-icon"></span>
  182. Guides
  183. </label>
  184. <ul class="md-nav__list" data-md-scrollfix>
  185. <li class="md-nav__item">
  186. <a href="../guides-introduction/" class="md-nav__link">
  187. Introduction
  188. </a>
  189. </li>
  190. <li class="md-nav__item">
  191. <a href="../guides-getting-started/" class="md-nav__link">
  192. Getting started
  193. </a>
  194. </li>
  195. <li class="md-nav__item md-nav__item--nested">
  196. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_4_3" type="checkbox" id="__nav_4_3" >
  197. <label class="md-nav__link" for="__nav_4_3">
  198. Advanced Templating
  199. <span class="md-nav__icon md-icon"></span>
  200. </label>
  201. <nav class="md-nav" aria-label="Advanced Templating" data-md-level="2">
  202. <label class="md-nav__title" for="__nav_4_3">
  203. <span class="md-nav__icon md-icon"></span>
  204. Advanced Templating
  205. </label>
  206. <ul class="md-nav__list" data-md-scrollfix>
  207. <li class="md-nav__item">
  208. <a href="../guides-templating/" class="md-nav__link">
  209. v2
  210. </a>
  211. </li>
  212. <li class="md-nav__item">
  213. <a href="../guides-templating-v1/" class="md-nav__link">
  214. v1
  215. </a>
  216. </li>
  217. </ul>
  218. </nav>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../guides-all-keys-one-secret/" class="md-nav__link">
  222. All keys, One secret
  223. </a>
  224. </li>
  225. <li class="md-nav__item">
  226. <a href="../guides-common-k8s-secret-types/" class="md-nav__link">
  227. Common K8S Secret Types
  228. </a>
  229. </li>
  230. <li class="md-nav__item">
  231. <a href="../guides-controller-class/" class="md-nav__link">
  232. Controller Classes
  233. </a>
  234. </li>
  235. <li class="md-nav__item">
  236. <a href="../guides-ownership-deletion-policy/" class="md-nav__link">
  237. Lifecycle: ownership & deletion
  238. </a>
  239. </li>
  240. <li class="md-nav__item">
  241. <a href="../guides-getallsecrets/" class="md-nav__link">
  242. Getting Multiple Secrets
  243. </a>
  244. </li>
  245. <li class="md-nav__item">
  246. <a href="../guides-multi-tenancy/" class="md-nav__link">
  247. Multi Tenancy
  248. </a>
  249. </li>
  250. <li class="md-nav__item">
  251. <a href="../guides-metrics/" class="md-nav__link">
  252. Metrics
  253. </a>
  254. </li>
  255. <li class="md-nav__item">
  256. <a href="../guides-v1beta1/" class="md-nav__link">
  257. Upgrading to v1beta1
  258. </a>
  259. </li>
  260. <li class="md-nav__item">
  261. <a href="../guides-using-latest-image/" class="md-nav__link">
  262. Using Latest Image
  263. </a>
  264. </li>
  265. </ul>
  266. </nav>
  267. </li>
  268. <li class="md-nav__item md-nav__item--nested">
  269. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5" type="checkbox" id="__nav_5" >
  270. <label class="md-nav__link" for="__nav_5">
  271. Provider
  272. <span class="md-nav__icon md-icon"></span>
  273. </label>
  274. <nav class="md-nav" aria-label="Provider" data-md-level="1">
  275. <label class="md-nav__title" for="__nav_5">
  276. <span class="md-nav__icon md-icon"></span>
  277. Provider
  278. </label>
  279. <ul class="md-nav__list" data-md-scrollfix>
  280. <li class="md-nav__item md-nav__item--nested">
  281. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_1" type="checkbox" id="__nav_5_1" >
  282. <label class="md-nav__link" for="__nav_5_1">
  283. AWS
  284. <span class="md-nav__icon md-icon"></span>
  285. </label>
  286. <nav class="md-nav" aria-label="AWS" data-md-level="2">
  287. <label class="md-nav__title" for="__nav_5_1">
  288. <span class="md-nav__icon md-icon"></span>
  289. AWS
  290. </label>
  291. <ul class="md-nav__list" data-md-scrollfix>
  292. <li class="md-nav__item">
  293. <a href="../provider-aws-secrets-manager/" class="md-nav__link">
  294. Secrets Manager
  295. </a>
  296. </li>
  297. <li class="md-nav__item">
  298. <a href="../provider-aws-parameter-store/" class="md-nav__link">
  299. Parameter Store
  300. </a>
  301. </li>
  302. </ul>
  303. </nav>
  304. </li>
  305. <li class="md-nav__item md-nav__item--nested">
  306. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_2" type="checkbox" id="__nav_5_2" >
  307. <label class="md-nav__link" for="__nav_5_2">
  308. Azure
  309. <span class="md-nav__icon md-icon"></span>
  310. </label>
  311. <nav class="md-nav" aria-label="Azure" data-md-level="2">
  312. <label class="md-nav__title" for="__nav_5_2">
  313. <span class="md-nav__icon md-icon"></span>
  314. Azure
  315. </label>
  316. <ul class="md-nav__list" data-md-scrollfix>
  317. <li class="md-nav__item">
  318. <a href="../provider-azure-key-vault/" class="md-nav__link">
  319. Key Vault
  320. </a>
  321. </li>
  322. </ul>
  323. </nav>
  324. </li>
  325. <li class="md-nav__item md-nav__item--nested">
  326. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_3" type="checkbox" id="__nav_5_3" >
  327. <label class="md-nav__link" for="__nav_5_3">
  328. Google
  329. <span class="md-nav__icon md-icon"></span>
  330. </label>
  331. <nav class="md-nav" aria-label="Google" data-md-level="2">
  332. <label class="md-nav__title" for="__nav_5_3">
  333. <span class="md-nav__icon md-icon"></span>
  334. Google
  335. </label>
  336. <ul class="md-nav__list" data-md-scrollfix>
  337. <li class="md-nav__item">
  338. <a href="../provider-google-secrets-manager/" class="md-nav__link">
  339. Secret Manager
  340. </a>
  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" data-md-toggle="__nav_5_4" type="checkbox" id="__nav_5_4" >
  347. <label class="md-nav__link" for="__nav_5_4">
  348. IBM
  349. <span class="md-nav__icon md-icon"></span>
  350. </label>
  351. <nav class="md-nav" aria-label="IBM" data-md-level="2">
  352. <label class="md-nav__title" for="__nav_5_4">
  353. <span class="md-nav__icon md-icon"></span>
  354. IBM
  355. </label>
  356. <ul class="md-nav__list" data-md-scrollfix>
  357. <li class="md-nav__item">
  358. <a href="../provider-ibm-secrets-manager/" class="md-nav__link">
  359. Secrets Manager
  360. </a>
  361. </li>
  362. </ul>
  363. </nav>
  364. </li>
  365. <li class="md-nav__item">
  366. <a href="../provider-akeyless/" class="md-nav__link">
  367. Akeyless
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../provider-hashicorp-vault/" class="md-nav__link">
  372. HashiCorp Vault
  373. </a>
  374. </li>
  375. <li class="md-nav__item md-nav__item--nested">
  376. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_7" type="checkbox" id="__nav_5_7" >
  377. <label class="md-nav__link" for="__nav_5_7">
  378. Yandex
  379. <span class="md-nav__icon md-icon"></span>
  380. </label>
  381. <nav class="md-nav" aria-label="Yandex" data-md-level="2">
  382. <label class="md-nav__title" for="__nav_5_7">
  383. <span class="md-nav__icon md-icon"></span>
  384. Yandex
  385. </label>
  386. <ul class="md-nav__list" data-md-scrollfix>
  387. <li class="md-nav__item">
  388. <a href="../provider-yandex-lockbox/" class="md-nav__link">
  389. Lockbox
  390. </a>
  391. </li>
  392. </ul>
  393. </nav>
  394. </li>
  395. <li class="md-nav__item md-nav__item--nested">
  396. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_8" type="checkbox" id="__nav_5_8" >
  397. <label class="md-nav__link" for="__nav_5_8">
  398. Gitlab
  399. <span class="md-nav__icon md-icon"></span>
  400. </label>
  401. <nav class="md-nav" aria-label="Gitlab" data-md-level="2">
  402. <label class="md-nav__title" for="__nav_5_8">
  403. <span class="md-nav__icon md-icon"></span>
  404. Gitlab
  405. </label>
  406. <ul class="md-nav__list" data-md-scrollfix>
  407. <li class="md-nav__item">
  408. <a href="../provider-gitlab-project-variables/" class="md-nav__link">
  409. Gitlab Project Variables
  410. </a>
  411. </li>
  412. </ul>
  413. </nav>
  414. </li>
  415. <li class="md-nav__item md-nav__item--nested">
  416. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_9" type="checkbox" id="__nav_5_9" >
  417. <label class="md-nav__link" for="__nav_5_9">
  418. Oracle
  419. <span class="md-nav__icon md-icon"></span>
  420. </label>
  421. <nav class="md-nav" aria-label="Oracle" data-md-level="2">
  422. <label class="md-nav__title" for="__nav_5_9">
  423. <span class="md-nav__icon md-icon"></span>
  424. Oracle
  425. </label>
  426. <ul class="md-nav__list" data-md-scrollfix>
  427. <li class="md-nav__item">
  428. <a href="../provider-oracle-vault/" class="md-nav__link">
  429. Oracle Vault
  430. </a>
  431. </li>
  432. </ul>
  433. </nav>
  434. </li>
  435. <li class="md-nav__item">
  436. <a href="../provider-webhook/" class="md-nav__link">
  437. Webhook
  438. </a>
  439. </li>
  440. <li class="md-nav__item">
  441. <a href="../provider-fake/" class="md-nav__link">
  442. Fake
  443. </a>
  444. </li>
  445. <li class="md-nav__item">
  446. <a href="../provider-kubernetes/" class="md-nav__link">
  447. Kubernetes
  448. </a>
  449. </li>
  450. </ul>
  451. </nav>
  452. </li>
  453. <li class="md-nav__item md-nav__item--nested">
  454. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_6" type="checkbox" id="__nav_6" >
  455. <label class="md-nav__link" for="__nav_6">
  456. Examples
  457. <span class="md-nav__icon md-icon"></span>
  458. </label>
  459. <nav class="md-nav" aria-label="Examples" data-md-level="1">
  460. <label class="md-nav__title" for="__nav_6">
  461. <span class="md-nav__icon md-icon"></span>
  462. Examples
  463. </label>
  464. <ul class="md-nav__list" data-md-scrollfix>
  465. <li class="md-nav__item">
  466. <a href="../examples-gitops-using-fluxcd/" class="md-nav__link">
  467. FluxCD
  468. </a>
  469. </li>
  470. <li class="md-nav__item">
  471. <a href="../examples-anchore-engine-credentials/" class="md-nav__link">
  472. Anchore Engine
  473. </a>
  474. </li>
  475. <li class="md-nav__item">
  476. <a href="../examples-jenkins-kubernetes-credentials/" class="md-nav__link">
  477. Jenkins
  478. </a>
  479. </li>
  480. </ul>
  481. </nav>
  482. </li>
  483. <li class="md-nav__item md-nav__item--nested">
  484. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_7" type="checkbox" id="__nav_7" >
  485. <label class="md-nav__link" for="__nav_7">
  486. External Resources
  487. <span class="md-nav__icon md-icon"></span>
  488. </label>
  489. <nav class="md-nav" aria-label="External Resources" data-md-level="1">
  490. <label class="md-nav__title" for="__nav_7">
  491. <span class="md-nav__icon md-icon"></span>
  492. External Resources
  493. </label>
  494. <ul class="md-nav__list" data-md-scrollfix>
  495. <li class="md-nav__item">
  496. <a href="../eso-talks/" class="md-nav__link">
  497. Talks
  498. </a>
  499. </li>
  500. <li class="md-nav__item">
  501. <a href="../eso-demos/" class="md-nav__link">
  502. Demos
  503. </a>
  504. </li>
  505. <li class="md-nav__item">
  506. <a href="../eso-blogs/" class="md-nav__link">
  507. Blogs
  508. </a>
  509. </li>
  510. </ul>
  511. </nav>
  512. </li>
  513. <li class="md-nav__item md-nav__item--nested">
  514. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_8" type="checkbox" id="__nav_8" >
  515. <label class="md-nav__link" for="__nav_8">
  516. References
  517. <span class="md-nav__icon md-icon"></span>
  518. </label>
  519. <nav class="md-nav" aria-label="References" data-md-level="1">
  520. <label class="md-nav__title" for="__nav_8">
  521. <span class="md-nav__icon md-icon"></span>
  522. References
  523. </label>
  524. <ul class="md-nav__list" data-md-scrollfix>
  525. <li class="md-nav__item">
  526. <a href="../spec/" class="md-nav__link">
  527. API specification
  528. </a>
  529. </li>
  530. </ul>
  531. </nav>
  532. </li>
  533. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  534. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_9" type="checkbox" id="__nav_9" checked>
  535. <label class="md-nav__link" for="__nav_9">
  536. Contributing
  537. <span class="md-nav__icon md-icon"></span>
  538. </label>
  539. <nav class="md-nav" aria-label="Contributing" data-md-level="1">
  540. <label class="md-nav__title" for="__nav_9">
  541. <span class="md-nav__icon md-icon"></span>
  542. Contributing
  543. </label>
  544. <ul class="md-nav__list" data-md-scrollfix>
  545. <li class="md-nav__item">
  546. <a href="../contributing-devguide/" class="md-nav__link">
  547. Developer guide
  548. </a>
  549. </li>
  550. <li class="md-nav__item">
  551. <a href="../contributing-process/" class="md-nav__link">
  552. Contributing Process
  553. </a>
  554. </li>
  555. <li class="md-nav__item">
  556. <a href="../contributing-release/" class="md-nav__link">
  557. Release Process
  558. </a>
  559. </li>
  560. <li class="md-nav__item md-nav__item--active">
  561. <input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc">
  562. <label class="md-nav__link md-nav__link--active" for="__toc">
  563. Code of Conduct
  564. <span class="md-nav__icon md-icon"></span>
  565. </label>
  566. <a href="./" class="md-nav__link md-nav__link--active">
  567. Code of Conduct
  568. </a>
  569. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  570. <label class="md-nav__title" for="__toc">
  571. <span class="md-nav__icon md-icon"></span>
  572. Table of contents
  573. </label>
  574. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  575. <li class="md-nav__item">
  576. <a href="#our-pledge" class="md-nav__link">
  577. Our Pledge
  578. </a>
  579. </li>
  580. <li class="md-nav__item">
  581. <a href="#our-standards" class="md-nav__link">
  582. Our Standards
  583. </a>
  584. </li>
  585. <li class="md-nav__item">
  586. <a href="#enforcement-responsibilities" class="md-nav__link">
  587. Enforcement Responsibilities
  588. </a>
  589. </li>
  590. <li class="md-nav__item">
  591. <a href="#scope" class="md-nav__link">
  592. Scope
  593. </a>
  594. </li>
  595. <li class="md-nav__item">
  596. <a href="#enforcement" class="md-nav__link">
  597. Enforcement
  598. </a>
  599. </li>
  600. <li class="md-nav__item">
  601. <a href="#enforcement-guidelines" class="md-nav__link">
  602. Enforcement Guidelines
  603. </a>
  604. <nav class="md-nav" aria-label="Enforcement Guidelines">
  605. <ul class="md-nav__list">
  606. <li class="md-nav__item">
  607. <a href="#1-correction" class="md-nav__link">
  608. 1. Correction
  609. </a>
  610. </li>
  611. <li class="md-nav__item">
  612. <a href="#2-warning" class="md-nav__link">
  613. 2. Warning
  614. </a>
  615. </li>
  616. <li class="md-nav__item">
  617. <a href="#3-temporary-ban" class="md-nav__link">
  618. 3. Temporary Ban
  619. </a>
  620. </li>
  621. <li class="md-nav__item">
  622. <a href="#4-permanent-ban" class="md-nav__link">
  623. 4. Permanent Ban
  624. </a>
  625. </li>
  626. </ul>
  627. </nav>
  628. </li>
  629. <li class="md-nav__item">
  630. <a href="#attribution" class="md-nav__link">
  631. Attribution
  632. </a>
  633. </li>
  634. </ul>
  635. </nav>
  636. </li>
  637. </ul>
  638. </nav>
  639. </li>
  640. <li class="md-nav__item">
  641. <a href="../stability-support/" class="md-nav__link">
  642. Stability and Support
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../deprecation-policy/" class="md-nav__link">
  647. Deprecation Policy
  648. </a>
  649. </li>
  650. </ul>
  651. </nav>
  652. </div>
  653. </div>
  654. </div>
  655. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  656. <div class="md-sidebar__scrollwrap">
  657. <div class="md-sidebar__inner">
  658. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  659. <label class="md-nav__title" for="__toc">
  660. <span class="md-nav__icon md-icon"></span>
  661. Table of contents
  662. </label>
  663. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  664. <li class="md-nav__item">
  665. <a href="#our-pledge" class="md-nav__link">
  666. Our Pledge
  667. </a>
  668. </li>
  669. <li class="md-nav__item">
  670. <a href="#our-standards" class="md-nav__link">
  671. Our Standards
  672. </a>
  673. </li>
  674. <li class="md-nav__item">
  675. <a href="#enforcement-responsibilities" class="md-nav__link">
  676. Enforcement Responsibilities
  677. </a>
  678. </li>
  679. <li class="md-nav__item">
  680. <a href="#scope" class="md-nav__link">
  681. Scope
  682. </a>
  683. </li>
  684. <li class="md-nav__item">
  685. <a href="#enforcement" class="md-nav__link">
  686. Enforcement
  687. </a>
  688. </li>
  689. <li class="md-nav__item">
  690. <a href="#enforcement-guidelines" class="md-nav__link">
  691. Enforcement Guidelines
  692. </a>
  693. <nav class="md-nav" aria-label="Enforcement Guidelines">
  694. <ul class="md-nav__list">
  695. <li class="md-nav__item">
  696. <a href="#1-correction" class="md-nav__link">
  697. 1. Correction
  698. </a>
  699. </li>
  700. <li class="md-nav__item">
  701. <a href="#2-warning" class="md-nav__link">
  702. 2. Warning
  703. </a>
  704. </li>
  705. <li class="md-nav__item">
  706. <a href="#3-temporary-ban" class="md-nav__link">
  707. 3. Temporary Ban
  708. </a>
  709. </li>
  710. <li class="md-nav__item">
  711. <a href="#4-permanent-ban" class="md-nav__link">
  712. 4. Permanent Ban
  713. </a>
  714. </li>
  715. </ul>
  716. </nav>
  717. </li>
  718. <li class="md-nav__item">
  719. <a href="#attribution" class="md-nav__link">
  720. Attribution
  721. </a>
  722. </li>
  723. </ul>
  724. </nav>
  725. </div>
  726. </div>
  727. </div>
  728. <div class="md-content" data-md-component="content">
  729. <article class="md-content__inner md-typeset">
  730. <a href="https://github.com/external-secrets/external-secrets/edit/master/docs/contributing-coc.md" title="Edit this page" class="md-content__button md-icon">
  731. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83 3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75L3 17.25z"/></svg>
  732. </a>
  733. <h1 id="code-of-conduct">Code of Conduct</h1>
  734. <h2 id="our-pledge">Our Pledge</h2>
  735. <p>We as members, contributors, and leaders pledge to make participation in our
  736. community a harassment-free experience for everyone, regardless of age, body
  737. size, visible or invisible disability, ethnicity, sex characteristics, gender
  738. identity and expression, level of experience, education, socio-economic status,
  739. nationality, personal appearance, race, caste, color, religion, or sexual identity
  740. and orientation.</p>
  741. <p>We pledge to act and interact in ways that contribute to an open, welcoming,
  742. diverse, inclusive, and healthy community.</p>
  743. <h2 id="our-standards">Our Standards</h2>
  744. <p>Examples of behavior that contributes to a positive environment for our
  745. community include:</p>
  746. <ul>
  747. <li>Demonstrating empathy and kindness toward other people</li>
  748. <li>Being respectful of differing opinions, viewpoints, and experiences</li>
  749. <li>Giving and gracefully accepting constructive feedback</li>
  750. <li>Accepting responsibility and apologizing to those affected by our mistakes,
  751. and learning from the experience</li>
  752. <li>Focusing on what is best not just for us as individuals, but for the
  753. overall community</li>
  754. </ul>
  755. <p>Examples of unacceptable behavior include:</p>
  756. <ul>
  757. <li>The use of sexualized language or imagery, and sexual attention or
  758. advances of any kind</li>
  759. <li>Trolling, insulting or derogatory comments, and personal or political attacks</li>
  760. <li>Public or private harassment</li>
  761. <li>Publishing others' private information, such as a physical or email
  762. address, without their explicit permission</li>
  763. <li>Other conduct which could reasonably be considered inappropriate in a
  764. professional setting</li>
  765. </ul>
  766. <h2 id="enforcement-responsibilities">Enforcement Responsibilities</h2>
  767. <p>Community leaders are responsible for clarifying and enforcing our standards of
  768. acceptable behavior and will take appropriate and fair corrective action in
  769. response to any behavior that they deem inappropriate, threatening, offensive,
  770. or harmful.</p>
  771. <p>Community leaders have the right and responsibility to remove, edit, or reject
  772. comments, commits, code, wiki edits, issues, and other contributions that are
  773. not aligned to this Code of Conduct, and will communicate reasons for moderation
  774. decisions when appropriate.</p>
  775. <h2 id="scope">Scope</h2>
  776. <p>This Code of Conduct applies within all community spaces, and also applies when
  777. an individual is officially representing the community in public spaces.
  778. Examples of representing our community include using an official e-mail address,
  779. posting via an official social media account, or acting as an appointed
  780. representative at an online or offline event.</p>
  781. <h2 id="enforcement">Enforcement</h2>
  782. <p>Instances of abusive, harassing, or otherwise unacceptable behavior may be
  783. reported to the community leaders responsible for enforcement at contact@external-secrets.io.
  784. All complaints will be reviewed and investigated promptly and fairly.</p>
  785. <p>All community leaders are obligated to respect the privacy and security of the
  786. reporter of any incident.</p>
  787. <h2 id="enforcement-guidelines">Enforcement Guidelines</h2>
  788. <p>Community leaders will follow these Community Impact Guidelines in determining
  789. the consequences for any action they deem in violation of this Code of Conduct:</p>
  790. <h3 id="1-correction">1. Correction</h3>
  791. <p><strong>Community Impact</strong>: Use of inappropriate language or other behavior deemed
  792. unprofessional or unwelcome in the community.</p>
  793. <p><strong>Consequence</strong>: A private, written warning from community leaders, providing
  794. clarity around the nature of the violation and an explanation of why the
  795. behavior was inappropriate. A public apology may be requested.</p>
  796. <h3 id="2-warning">2. Warning</h3>
  797. <p><strong>Community Impact</strong>: A violation through a single incident or series
  798. of actions.</p>
  799. <p><strong>Consequence</strong>: A warning with consequences for continued behavior. No
  800. interaction with the people involved, including unsolicited interaction with
  801. those enforcing the Code of Conduct, for a specified period of time. This
  802. includes avoiding interactions in community spaces as well as external channels
  803. like social media. Violating these terms may lead to a temporary or
  804. permanent ban.</p>
  805. <h3 id="3-temporary-ban">3. Temporary Ban</h3>
  806. <p><strong>Community Impact</strong>: A serious violation of community standards, including
  807. sustained inappropriate behavior.</p>
  808. <p><strong>Consequence</strong>: A temporary ban from any sort of interaction or public
  809. communication with the community for a specified period of time. No public or
  810. private interaction with the people involved, including unsolicited interaction
  811. with those enforcing the Code of Conduct, is allowed during this period.
  812. Violating these terms may lead to a permanent ban.</p>
  813. <h3 id="4-permanent-ban">4. Permanent Ban</h3>
  814. <p><strong>Community Impact</strong>: Demonstrating a pattern of violation of community
  815. standards, including sustained inappropriate behavior, harassment of an
  816. individual, or aggression toward or disparagement of classes of individuals.</p>
  817. <p><strong>Consequence</strong>: A permanent ban from any sort of public interaction within
  818. the community.</p>
  819. <h2 id="attribution">Attribution</h2>
  820. <p>This Code of Conduct is adapted from the <a href="https://www.contributor-covenant.org">Contributor Covenant</a>,
  821. version 2.0, available at
  822. <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>
  823. <p>Community Impact Guidelines were inspired by
  824. <a href="https://github.com/mozilla/diversity">Mozilla's code of conduct enforcement ladder</a>.</p>
  825. <p>For answers to common questions about this code of conduct, see the FAQ at
  826. <a href="https://www.contributor-covenant.org/faq">https://www.contributor-covenant.org/faq</a>. Translations are available
  827. at <a href="https://www.contributor-covenant.org/translations">https://www.contributor-covenant.org/translations</a>.</p>
  828. </article>
  829. </div>
  830. </div>
  831. </main>
  832. <footer class="md-footer">
  833. <nav class="md-footer__inner md-grid" aria-label="Footer">
  834. <a href="../contributing-release/" class="md-footer__link md-footer__link--prev" aria-label="Previous: Release Process" rel="prev">
  835. <div class="md-footer__button md-icon">
  836. <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>
  837. </div>
  838. <div class="md-footer__title">
  839. <div class="md-ellipsis">
  840. <span class="md-footer__direction">
  841. Previous
  842. </span>
  843. Release Process
  844. </div>
  845. </div>
  846. </a>
  847. <a href="../stability-support/" class="md-footer__link md-footer__link--next" aria-label="Next: Stability and Support" rel="next">
  848. <div class="md-footer__title">
  849. <div class="md-ellipsis">
  850. <span class="md-footer__direction">
  851. Next
  852. </span>
  853. Stability and Support
  854. </div>
  855. </div>
  856. <div class="md-footer__button md-icon">
  857. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4z"/></svg>
  858. </div>
  859. </a>
  860. </nav>
  861. <div class="md-footer-meta md-typeset">
  862. <div class="md-footer-meta__inner md-grid">
  863. <div class="md-copyright">
  864. Made with
  865. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  866. Material for MkDocs
  867. </a>
  868. </div>
  869. </div>
  870. </div>
  871. </footer>
  872. </div>
  873. <div class="md-dialog" data-md-component="dialog">
  874. <div class="md-dialog__inner md-typeset"></div>
  875. </div>
  876. <script id="__config" type="application/json">{"base": "..", "features": [], "translations": {"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing", "select.version.title": "Select version"}, "search": "../assets/javascripts/workers/search.092fa1f6.min.js", "version": {"provider": "mike"}}</script>
  877. <script src="../assets/javascripts/bundle.e3b2bf44.min.js"></script>
  878. </body>
  879. </html>