├── docs ├── .gitignore ├── themes │ ├── hugo-geekdocs │ │ ├── VERSION │ │ ├── layouts │ │ │ ├── taxonomy │ │ │ │ ├── list.html │ │ │ │ └── taxonomy.html │ │ │ ├── partials │ │ │ │ ├── head │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── favicons.html │ │ │ │ │ ├── meta.html │ │ │ │ │ └── others.html │ │ │ │ ├── svg-icon-symbols.html │ │ │ │ ├── title.html │ │ │ │ ├── content.html │ │ │ │ ├── search.html │ │ │ │ ├── menu.html │ │ │ │ ├── foot.html │ │ │ │ ├── menu-extra.html │ │ │ │ ├── site-footer.html │ │ │ │ ├── menu-filetree.html │ │ │ │ ├── page-footer.html │ │ │ │ ├── menu-bundle.html │ │ │ │ ├── page-header.html │ │ │ │ └── site-header.html │ │ │ ├── shortcodes │ │ │ │ ├── hint.html │ │ │ │ ├── icon.html │ │ │ │ ├── columns.html │ │ │ │ ├── toc.html │ │ │ │ ├── tab.html │ │ │ │ ├── mermaid.html │ │ │ │ ├── expand.html │ │ │ │ ├── include.html │ │ │ │ ├── tabs.html │ │ │ │ ├── button.html │ │ │ │ ├── katex.html │ │ │ │ ├── toc-tree.html │ │ │ │ └── img.html │ │ │ ├── _default │ │ │ │ ├── _markup │ │ │ │ │ ├── render-image.html │ │ │ │ │ ├── render-link.html │ │ │ │ │ └── render-heading.html │ │ │ │ ├── list.html │ │ │ │ ├── single.html │ │ │ │ └── baseof.html │ │ │ ├── posts │ │ │ │ ├── single.html │ │ │ │ └── list.html │ │ │ └── 404.html │ │ ├── static │ │ │ ├── custom.css │ │ │ ├── js │ │ │ │ ├── clipboard-loader-f0b5fbd5f6.min.js │ │ │ │ ├── katex-loader-3cfedeea38.min.js │ │ │ │ ├── mermaid-loader-1bd1515cbf.min.js │ │ │ │ ├── groupBy-174feb11c7.min.js │ │ │ │ ├── darkmode-ce906ea916.min.js │ │ │ │ └── auto-render-e6e57901eb.min.js │ │ │ ├── favicon │ │ │ │ ├── favicon.ico │ │ │ │ ├── mstile-70x70.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── mstile-144x144.png │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── mstile-310x150.png │ │ │ │ ├── mstile-310x310.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ ├── browserconfig.xml │ │ │ │ ├── site.webmanifest │ │ │ │ └── safari-pinned-tab.svg │ │ │ ├── fonts │ │ │ │ ├── Metropolis.woff │ │ │ │ ├── GeekdocIcons.woff │ │ │ │ ├── GeekdocIcons.woff2 │ │ │ │ ├── Metropolis.woff2 │ │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ │ ├── LiberationMono.woff │ │ │ │ ├── LiberationMono.woff2 │ │ │ │ ├── LiberationSans.woff │ │ │ │ ├── LiberationSans.woff2 │ │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ │ ├── LiberationSans-Bold.woff │ │ │ │ ├── LiberationSans-Bold.woff2 │ │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ │ ├── LiberationSans-Italic.woff │ │ │ │ ├── LiberationSans-Italic.woff2 │ │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ │ │ ├── LiberationSans-BoldItalic.woff │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ │ └── LiberationSans-BoldItalic.woff2 │ │ │ ├── print-f79fc3e5d7.min.css │ │ │ ├── mobile-c344439d04.min.css │ │ │ └── brand.svg │ │ ├── data │ │ │ ├── assets-static.json │ │ │ └── assets.json │ │ ├── archetypes │ │ │ ├── posts.md │ │ │ └── docs.md │ │ ├── images │ │ │ ├── tn.png │ │ │ ├── readme.png │ │ │ └── screenshot.png │ │ ├── theme.toml │ │ ├── assets │ │ │ ├── search-data.json │ │ │ └── js │ │ │ │ └── search.js │ │ ├── LICENSE │ │ └── README.md │ └── update.sh ├── content │ ├── _includes │ │ ├── _index.md │ │ └── include-page.md │ ├── usage │ │ ├── _index.md │ │ ├── overview.md │ │ ├── getting-started.md │ │ └── crd-specs.md │ └── _index.md ├── archetypes │ └── default.md ├── config.yaml ├── data │ └── menu │ │ └── extra.yaml ├── README.md ├── .env.example └── docker-compose.yaml ├── .dockerignore ├── .gitignore ├── generate.go ├── charts ├── cr.yaml ├── dockhand-secrets-operator-crd │ ├── Chart.yaml │ ├── README.md │ └── templates │ │ └── crd │ │ ├── secret-crd.yaml │ │ └── profile-crd.yaml └── dockhand-secrets-operator │ ├── Chart.yaml │ ├── templates │ ├── webhook │ │ ├── service.yaml │ │ ├── deployment.yaml │ │ ├── mutating-webhook.yaml │ │ └── rbac.yaml │ ├── controller │ │ ├── deployment.yaml │ │ └── rbac.yaml │ └── _helpers.tpl │ ├── README.md │ └── values.yaml ├── .yamlfmt ├── .github ├── dependabot.yml └── workflows │ ├── pre-commit.yml │ ├── helm.yaml │ └── docker.yaml ├── .yamllint ├── netlify.toml ├── scripts └── boilerplate.go.txt ├── Dockerfile ├── pkg ├── apis │ └── dhs.dockhand.dev │ │ ├── v1alpha2 │ │ ├── doc.go │ │ ├── zz_generated_list_types.go │ │ ├── zz_generated_register.go │ │ └── types.go │ │ └── zz_generated_register.go ├── codegen │ ├── cleanup │ │ └── main.go │ └── main.go ├── common │ ├── common.go │ └── tls.go └── generated │ └── controllers │ └── dhs.dockhand.dev │ ├── interface.go │ ├── v1alpha2 │ ├── profile.go │ ├── interface.go │ └── secret.go │ └── factory.go ├── main.go ├── Makefile ├── .pre-commit-config.yaml ├── cmd ├── root.go ├── operator.go └── server.go ├── README.md └── go.mod /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /public 3 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/VERSION: -------------------------------------------------------------------------------- 1 | v0.17.0 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/layouts/taxonomy/list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/layouts/taxonomy/taxonomy.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/content/_includes/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | GeekdocHidden: true 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Usage 3 | weight: -20 4 | --- 5 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/custom.css: -------------------------------------------------------------------------------- 1 | /* You can add custom styles here. */ 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/data/assets-static.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom.css": "custom.css" 3 | } 4 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | /bin 3 | /release 4 | /dockhand-secrets-operator 5 | /local-test 6 | /charts 7 | .idea 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /release 2 | .idea 3 | /local-test* 4 | /remote-test* 5 | /bin 6 | ./dockhand-secrets-operator 7 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/layouts/partials/head/custom.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/archetypes/posts.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | --- 5 | -------------------------------------------------------------------------------- /generate.go: -------------------------------------------------------------------------------- 1 | //go:generate go run ./pkg/codegen/cleanup/main.go 2 | //go:generate go run ./pkg/codegen/main.go 3 | 4 | package main 5 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/images/tn.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/layouts/partials/head/favicons.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/config.yaml: -------------------------------------------------------------------------------- 1 | baseURL: https://secrets-operator.dockhand.dev/ 2 | languageCode: en-us 3 | title: dockhand-secrets-operator 4 | theme: hugo-geekdocs 5 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/images/readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/images/readme.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/js/clipboard-loader-f0b5fbd5f6.min.js: -------------------------------------------------------------------------------- 1 | document.addEventListener("DOMContentLoaded",function(n){new ClipboardJS(".clip")}); -------------------------------------------------------------------------------- /charts/cr.yaml: -------------------------------------------------------------------------------- 1 | # https://github.com/helm/chart-releaser#config-file 2 | pages-branch: gh-pages 3 | pages-index-path: charts/index.yaml 4 | skip-existing: true 5 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/images/screenshot.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/layouts/shortcodes/hint.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner | $.Page.RenderString }} 3 |4 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/js/katex-loader-3cfedeea38.min.js: -------------------------------------------------------------------------------- 1 | document.addEventListener("DOMContentLoaded",function(){renderMathInElement(document.body)}); -------------------------------------------------------------------------------- /docs/data/menu/extra.yaml: -------------------------------------------------------------------------------- 1 | header: 2 | - name: GitHub 3 | ref: https://github.com/boxboat/dockhand-secrets-operator 4 | icon: gdoc_github 5 | external: true 6 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/favicon.ico -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/Metropolis.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/Metropolis.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/GeekdocIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/GeekdocIcons.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/GeekdocIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/GeekdocIcons.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/Metropolis.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/Metropolis.woff2 -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # Docs 2 | 3 | ## Build Locally 4 | 5 | - `docker compose up` 6 | - To change Port or switch to Polling FS Watcher arg, copy `.env.example` to `.env` and modify `.env` 7 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationMono.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationMono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationMono.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationSans.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationSans.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationSans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationSans.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/layouts/shortcodes/icon.html: -------------------------------------------------------------------------------- 1 | {{ $id := .Get 0 }} 2 | 3 | {{- with $id -}} 4 | 5 | {{- end -}} 6 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/archetypes/docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ .Name | humanize | title }}" 3 | weight: 1 4 | # geekdocFlatSection: false 5 | # geekdocToc: 6 6 | # geekdocHidden: false 7 | --- 8 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationSans-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationSans-Bold.woff2 -------------------------------------------------------------------------------- /charts/dockhand-secrets-operator-crd/Chart.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v2 2 | name: dockhand-secrets-operator-crd 3 | description: A Helm chart to install the dockhand-secrets-operator CRDs 4 | version: 1.1.7 5 | -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationSans-Italic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationSans-Italic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationSans-BoldItalic.woff -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/static/fonts/LiberationSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxboat/dockhand-secrets-operator/HEAD/docs/themes/hugo-geekdocs/static/fonts/LiberationSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/themes/hugo-geekdocs/layouts/_default/_markup/render-image.html: -------------------------------------------------------------------------------- 1 |
9 | {{- .Inner -}}
10 |
11 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdocs/static/print-f79fc3e5d7.min.css:
--------------------------------------------------------------------------------
1 | @media print{.editpage,.gdoc-footer .container span:not(:first-child),.gdoc-nav{display:none}.gdoc-footer{border-top:1px solid #dee2e6}.gdoc-markdown pre{white-space:pre-wrap;overflow-wrap:break-word}.chroma code{border:1px solid #dee2e6;padding:.5rem!important;font-weight:400!important}.gdoc-markdown code{font-weight:700}a,a:visited{color:inherit!important;text-decoration:none!important}.gdoc-toc{flex:none}.gdoc-toc nav{position:relative;width:auto}.wrapper{display:block}.wrapper main{display:block}}
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdocs/layouts/partials/search.html:
--------------------------------------------------------------------------------
1 | {{ if default true .Site.Params.GeekdocSearch }}
2 |