gitextract_5lwfnjj2/ ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── cosign.pub │ ├── helm-release.yaml │ ├── helm-vib-lint.yaml │ ├── helm-vib.yaml │ ├── publish-release.yaml │ ├── release.yaml │ └── stale.yml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yml ├── .vib/ │ ├── vib-pipeline.json │ └── vib-platform-verify-openshift.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.md ├── RELEASE-NOTES.md ├── SECURITY.md ├── carvel/ │ └── package.yaml ├── cmd/ │ ├── controller/ │ │ ├── main.go │ │ └── main_test.go │ └── kubeseal/ │ ├── main.go │ └── main_test.go ├── contrib/ │ └── prometheus-mixin/ │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── alerts/ │ │ ├── alerts.libsonnet │ │ └── sealed-secrets-alerts.libsonnet │ ├── config.libsonnet │ ├── dashboards/ │ │ ├── dashboards.libsonnet │ │ └── sealed-secrets-controller.json │ ├── lib/ │ │ ├── alerts.jsonnet │ │ ├── dashboards.jsonnet │ │ └── rules.jsonnet │ ├── mixin.libsonnet │ ├── rules/ │ │ └── rules.libsonnet │ └── tests.yaml ├── controller-norbac.jsonnet ├── controller-podmonitor.jsonnet ├── controller.jsonnet ├── docker/ │ ├── controller.Dockerfile │ └── kubeseal.Dockerfile ├── docs/ │ ├── GKE.md │ ├── bring-your-own-certificates.md │ ├── developer/ │ │ ├── README.md │ │ ├── controller.md │ │ ├── crypto.md │ │ ├── kubeseal.md │ │ └── swagger.yml │ └── examples/ │ └── config-template/ │ ├── README.md │ ├── deployment.yaml │ └── sealedsecret.yaml ├── githooks/ │ └── pre-commit/ │ └── doc-toc ├── go.mod ├── go.sum ├── hack/ │ ├── boilerplate.go.txt │ ├── tools.go │ └── update-codegen.sh ├── helm/ │ └── sealed-secrets/ │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds/ │ │ └── bitnami.com_sealedsecrets.yaml │ ├── dashboards/ │ │ └── sealed-secrets-controller.json │ ├── templates/ │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── configmap-dashboards.yaml │ │ ├── deployment.yaml │ │ ├── extra-list.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── psp-clusterrole.yaml │ │ ├── psp-clusterrolebinding.yaml │ │ ├── psp.yaml │ │ ├── role-binding.yaml │ │ ├── role.yaml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ └── tls-secret.yaml │ └── values.yaml ├── integration/ │ ├── controller_test.go │ ├── integration_suite_test.go │ └── kubeseal_test.go ├── jsonnetfile.json ├── jsonnetfile.lock.json ├── kube-fixes.libsonnet ├── pkg/ │ ├── apis/ │ │ └── sealedsecrets/ │ │ └── v1alpha1/ │ │ ├── doc.go │ │ ├── register.go │ │ ├── sealedsecret_expansion.go │ │ ├── sealedsecret_test.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ ├── buildinfo/ │ │ └── version.go │ ├── client/ │ │ ├── clientset/ │ │ │ └── versioned/ │ │ │ ├── clientset.go │ │ │ ├── fake/ │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── scheme/ │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed/ │ │ │ └── sealedsecrets/ │ │ │ └── v1alpha1/ │ │ │ ├── doc.go │ │ │ ├── fake/ │ │ │ │ ├── doc.go │ │ │ │ ├── fake_sealedsecret.go │ │ │ │ └── fake_sealedsecrets_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── sealedsecret.go │ │ │ └── sealedsecrets_client.go │ │ ├── informers/ │ │ │ └── externalversions/ │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces/ │ │ │ │ └── factory_interfaces.go │ │ │ └── sealedsecrets/ │ │ │ ├── interface.go │ │ │ └── v1alpha1/ │ │ │ ├── interface.go │ │ │ └── sealedsecret.go │ │ └── listers/ │ │ └── sealedsecrets/ │ │ └── v1alpha1/ │ │ ├── expansion_generated.go │ │ └── sealedsecret.go │ ├── controller/ │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── funcs.go │ │ ├── keyregistry.go │ │ ├── keyregistry_test.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── main.go │ │ ├── main_test.go │ │ ├── metrics.go │ │ ├── metrics_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── signal_notwin.go │ │ └── signal_windows.go │ ├── crypto/ │ │ ├── crypto.go │ │ ├── keys.go │ │ └── keys_test.go │ ├── flagenv/ │ │ ├── flagenv.go │ │ └── flagenv_test.go │ ├── kubeseal/ │ │ ├── kubeseal.go │ │ └── kubeseal_test.go │ ├── log/ │ │ └── log.go │ ├── multidocyaml/ │ │ ├── multidocyaml.go │ │ └── multidocyaml_test.go │ └── pflagenv/ │ ├── flagenv.go │ └── flagenv_test.go ├── schema-v1alpha1.yaml ├── scripts/ │ ├── check-k8s │ ├── kubeseal-sudo │ └── release-check ├── site/ │ ├── .gitignore │ ├── README.md │ ├── archetypes/ │ │ └── default.md │ ├── config.yaml │ ├── content/ │ │ ├── community/ │ │ │ └── _index.html │ │ ├── contributors/ │ │ │ ├── agarcia-oss.md │ │ │ ├── alvneiayu.md │ │ │ └── index.md │ │ ├── docs/ │ │ │ ├── CONTRIBUTING.md │ │ │ ├── _index.md │ │ │ ├── img/ │ │ │ │ └── _index.md │ │ │ └── latest/ │ │ │ ├── README.md │ │ │ ├── _index.md │ │ │ ├── background/ │ │ │ │ ├── README.md │ │ │ │ ├── _index.md │ │ │ │ └── cryptography.md │ │ │ ├── howto/ │ │ │ │ ├── README.md │ │ │ │ ├── _index.md │ │ │ │ └── validate-sealed-secrets.md │ │ │ ├── project/ │ │ │ │ ├── .placeholder │ │ │ │ └── _index.md │ │ │ ├── reference/ │ │ │ │ ├── README.md │ │ │ │ ├── _index.md │ │ │ │ └── faq.md │ │ │ └── tutorials/ │ │ │ ├── README.md │ │ │ ├── _index.md │ │ │ ├── getting-started.md │ │ │ └── install-sealed-secrets.md │ │ ├── posts/ │ │ │ └── _index.md │ │ └── resources/ │ │ └── _index.html │ ├── data/ │ │ └── docs/ │ │ ├── latest-toc.yml │ │ └── toc-mapping.yml │ ├── resources/ │ │ └── _gen/ │ │ └── assets/ │ │ └── scss/ │ │ └── scss/ │ │ ├── site.scss_8967e03afb92eb0cac064520bf021ba2.content │ │ └── site.scss_8967e03afb92eb0cac064520bf021ba2.json │ └── themes/ │ └── template/ │ ├── archetypes/ │ │ └── default.md │ ├── assets/ │ │ └── scss/ │ │ ├── _base.scss │ │ ├── _components.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ └── site.scss │ ├── layouts/ │ │ ├── _default/ │ │ │ ├── _markup/ │ │ │ │ ├── render-image.html │ │ │ │ └── render-link.html │ │ │ ├── baseof.html │ │ │ ├── docs.html │ │ │ ├── list.html │ │ │ ├── posts.html │ │ │ ├── search.html │ │ │ ├── section.html │ │ │ ├── single.html │ │ │ ├── summary.html │ │ │ ├── tag.html │ │ │ └── versions.html │ │ ├── index.html │ │ ├── index.redirects │ │ ├── partials/ │ │ │ ├── blog-post-card.html │ │ │ ├── contributors.html │ │ │ ├── docs-right-bar.html │ │ │ ├── docs-sidebar.html │ │ │ ├── footer.html │ │ │ ├── getting-started.html │ │ │ ├── header.html │ │ │ ├── hero.html │ │ │ ├── homepage-grid.html │ │ │ ├── pagination.html │ │ │ └── use-cases.html │ │ └── shortcodes/ │ │ └── readfile.html │ └── static/ │ ├── fonts/ │ │ ├── Open Font License.md │ │ └── README.md │ └── js/ │ └── main.js ├── vendor_jsonnet/ │ └── kube-libsonnet/ │ ├── .travis.yml │ ├── CODEOWNERS │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── bitnami.libsonnet │ ├── examples/ │ │ ├── guestbook/ │ │ │ └── guestbook.jsonnet │ │ └── wordpress/ │ │ ├── backend.jsonnet │ │ ├── frontend.jsonnet │ │ └── wordpress.jsonnet │ ├── kube.libsonnet │ └── tests/ │ ├── Dockerfile │ ├── Makefile │ ├── docker-compose.yaml │ ├── golden/ │ │ ├── test-sealedsecrets-datalines.json │ │ ├── test-sealedsecrets.json │ │ ├── test-simple-validate.json │ │ └── unittests.json │ ├── test-sealedsecrets-datalines.jsonnet │ ├── test-sealedsecrets-datalines.txt │ ├── test-sealedsecrets.jsonnet │ ├── test-simple-validate.jsonnet │ └── unittests.jsonnet └── versions.env