├── .editorconfig ├── .github ├── dependabot.yaml ├── kind │ └── conf │ │ └── kind-config.yaml ├── scripts │ ├── edit-yaml.py │ ├── parse-versions.sh │ ├── requirements.txt │ ├── update-tags.sh │ └── update-versions.sh ├── tests │ ├── charts.json │ ├── common.sh │ ├── create-cert.sh │ ├── dependencies │ │ ├── mysql.yaml │ │ ├── postgresql.yaml │ │ ├── spire-root-server-values.yaml │ │ └── testcert.yaml │ ├── example-org.key │ ├── example-org.pem │ ├── images.json │ ├── post-install.sh │ └── pre-install.sh └── workflows │ ├── check-versions.yaml │ ├── helm-chart-ci-ignore.yaml │ ├── helm-chart-ci.yaml │ ├── helm-release.yaml │ └── shellcheck.yaml ├── .gitignore ├── .nojekyll ├── CODEOWNERS ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── Makefile ├── README.md ├── charts └── spire │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ ├── spiffe-csi-driver │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── daemonset.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── spiffe-csi-driver.yaml │ │ └── values.yaml │ ├── spiffe-oidc-discovery-provider │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── files │ │ │ └── test │ │ │ │ └── jwt-decode.sh │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── pre-delete-hook.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ ├── test-connection.yaml │ │ │ │ └── test-keys.yaml │ │ └── values.yaml │ ├── spire-agent │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── roles.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── spire-server │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── crds │ │ │ ├── clusterfederatedtrustdomains.yaml │ │ │ ├── clusterspiffeids.yaml │ │ │ └── controllermanagerconfigs.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── aws-kms-configmap.yaml │ │ │ ├── aws-kms-secret.yaml │ │ │ ├── bundle-configmap.yaml │ │ │ ├── configmap.yaml │ │ │ ├── controller-manager-cluster-ids.yaml │ │ │ ├── controller-manager-configmap.yaml │ │ │ ├── controller-manager-roles.yaml │ │ │ ├── controller-manager-service.yaml │ │ │ ├── controller-manager-webhook.yaml │ │ │ ├── federation-ingress.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── issuer.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── post-install-hook.yaml │ │ │ ├── post-upgrade-hook.yaml │ │ │ ├── pre-delete-hook.yaml │ │ │ ├── pre-upgrade-hook.yaml │ │ │ ├── roles.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── tests │ │ │ │ ├── test-connection.yaml │ │ │ │ └── test-tornjak-connection.yaml │ │ │ ├── tornjak-config.yaml │ │ │ ├── tornjak-service.yaml │ │ │ └── upstream-ca-secret.yaml │ │ └── values.yaml │ └── tornjak-frontend │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-tornjak-connection.yaml │ │ └── values.yaml │ ├── ci │ ├── external-mysql-values.yaml │ ├── external-postgres-values.yaml │ ├── extras-values.yaml │ ├── federation-bundle-endpoint-values.yaml │ ├── namespace-override-values-skip.yaml │ ├── no-spire-controller-manager-values.yaml │ ├── oidc-values.yaml │ ├── prometheus-values.yaml │ ├── tornjak-values.yaml │ ├── upstream-authority-cert-manager-values.yaml │ └── upstream-authority-disk-values.yaml │ ├── templates │ ├── NOTES.txt │ └── _spire-lib.tpl │ └── values.yaml ├── ct.yaml ├── examples ├── bin │ └── readpw.sh ├── external-mysql │ ├── README.md │ ├── run-tests.sh │ └── values.yaml ├── external-postgresql │ ├── README.md │ ├── run-tests.sh │ └── values.yaml ├── nested │ ├── run-tests.sh │ └── values.yaml ├── production │ ├── README.md │ ├── example-your-values.yaml │ ├── run-tests.sh │ ├── values-export-federation-https-spiffe-ingress-nginx.yaml │ ├── values-export-federation-https-web-ingress-nginx.yaml │ ├── values-export-spiffe-oidc-discovery-provider-ingress-nginx.yaml │ ├── values-export-spire-server-ingress-nginx.yaml │ ├── values-node-pod-antiaffinity.yaml │ └── values.yaml ├── spire-plugins │ └── node-agent-tpm │ │ ├── Dockerfile.agent │ │ ├── Dockerfile.server │ │ └── values.yaml └── tornjak │ ├── README.md │ ├── run-tests.sh │ └── values.yaml ├── helm-docs.sh ├── project ├── conventions.md ├── glossary.md ├── issues_due_to_nesting.md ├── maintainers.md └── overview.md ├── release-chart.sh └── tests ├── go.mod ├── go.sum └── unit ├── main.go ├── spire_test.go └── unit_suite_test.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/kind/conf/kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/kind/conf/kind-config.yaml -------------------------------------------------------------------------------- /.github/scripts/edit-yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/scripts/edit-yaml.py -------------------------------------------------------------------------------- /.github/scripts/parse-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/scripts/parse-versions.sh -------------------------------------------------------------------------------- /.github/scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | ruamel.yaml 2 | dict_deep 3 | -------------------------------------------------------------------------------- /.github/scripts/update-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/scripts/update-tags.sh -------------------------------------------------------------------------------- /.github/scripts/update-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/scripts/update-versions.sh -------------------------------------------------------------------------------- /.github/tests/charts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/charts.json -------------------------------------------------------------------------------- /.github/tests/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/common.sh -------------------------------------------------------------------------------- /.github/tests/create-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/create-cert.sh -------------------------------------------------------------------------------- /.github/tests/dependencies/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/dependencies/mysql.yaml -------------------------------------------------------------------------------- /.github/tests/dependencies/postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/dependencies/postgresql.yaml -------------------------------------------------------------------------------- /.github/tests/dependencies/spire-root-server-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/dependencies/spire-root-server-values.yaml -------------------------------------------------------------------------------- /.github/tests/dependencies/testcert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/dependencies/testcert.yaml -------------------------------------------------------------------------------- /.github/tests/example-org.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/example-org.key -------------------------------------------------------------------------------- /.github/tests/example-org.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/example-org.pem -------------------------------------------------------------------------------- /.github/tests/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/images.json -------------------------------------------------------------------------------- /.github/tests/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/post-install.sh -------------------------------------------------------------------------------- /.github/tests/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/tests/pre-install.sh -------------------------------------------------------------------------------- /.github/workflows/check-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/workflows/check-versions.yaml -------------------------------------------------------------------------------- /.github/workflows/helm-chart-ci-ignore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/workflows/helm-chart-ci-ignore.yaml -------------------------------------------------------------------------------- /.github/workflows/helm-chart-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/workflows/helm-chart-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/helm-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/workflows/helm-release.yaml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/.github/workflows/shellcheck.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | .idea/ 3 | .vscode/ 4 | *.swp 5 | charts/**/*.tgz 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/spire/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/.helmignore -------------------------------------------------------------------------------- /charts/spire/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/Chart.yaml -------------------------------------------------------------------------------- /charts/spire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/LICENSE -------------------------------------------------------------------------------- /charts/spire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/README.md -------------------------------------------------------------------------------- /charts/spire/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/README.md.gotmpl -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/.helmignore -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/Chart.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/README.md -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/README.md.gotmpl -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | SPIFFE CSI Driver installed… 2 | -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/templates/spiffe-csi-driver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/templates/spiffe-csi-driver.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-csi-driver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-csi-driver/values.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/.helmignore -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/Chart.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/README.md -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/README.md.gotmpl -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/files/test/jwt-decode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/files/test/jwt-decode.sh -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | SPIFFE OIDC discovery provider installed… 2 | -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/podmonitor.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/pre-delete-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/pre-delete-hook.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/service.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/templates/tests/test-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/templates/tests/test-keys.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spiffe-oidc-discovery-provider/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spiffe-oidc-discovery-provider/values.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/.helmignore -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/Chart.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/README.md -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/README.md.gotmpl -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Installed {{ .Chart.Name }}… 2 | -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/templates/podmonitor.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/templates/roles.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-agent/values.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/.helmignore -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/Chart.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/README.md -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/crds/clusterfederatedtrustdomains.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/crds/clusterfederatedtrustdomains.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/crds/clusterspiffeids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/crds/clusterspiffeids.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/crds/controllermanagerconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/crds/controllermanagerconfigs.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/aws-kms-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/aws-kms-configmap.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/aws-kms-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/aws-kms-secret.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/bundle-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/bundle-configmap.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/controller-manager-cluster-ids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/controller-manager-cluster-ids.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/controller-manager-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/controller-manager-configmap.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/controller-manager-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/controller-manager-roles.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/controller-manager-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/controller-manager-service.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/controller-manager-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/controller-manager-webhook.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/federation-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/federation-ingress.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/issuer.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/podmonitor.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/post-install-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/post-install-hook.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/post-upgrade-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/post-upgrade-hook.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/pre-delete-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/pre-delete-hook.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/pre-upgrade-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/pre-upgrade-hook.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/roles.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/secret.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/service.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/tests/test-tornjak-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/tests/test-tornjak-connection.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/tornjak-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/tornjak-config.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/tornjak-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/tornjak-service.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/templates/upstream-ca-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/templates/upstream-ca-secret.yaml -------------------------------------------------------------------------------- /charts/spire/charts/spire-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/spire-server/values.yaml -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/Chart.yaml -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/README.md -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/README.md.gotmpl -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/templates/service.yaml -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/templates/tests/test-tornjak-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/templates/tests/test-tornjak-connection.yaml -------------------------------------------------------------------------------- /charts/spire/charts/tornjak-frontend/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/charts/tornjak-frontend/values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/external-mysql-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/external-mysql-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/external-postgres-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/external-postgres-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/extras-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/extras-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/federation-bundle-endpoint-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/federation-bundle-endpoint-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/namespace-override-values-skip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/namespace-override-values-skip.yaml -------------------------------------------------------------------------------- /charts/spire/ci/no-spire-controller-manager-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/no-spire-controller-manager-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/oidc-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/oidc-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/prometheus-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/prometheus-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/tornjak-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/tornjak-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/upstream-authority-cert-manager-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/upstream-authority-cert-manager-values.yaml -------------------------------------------------------------------------------- /charts/spire/ci/upstream-authority-disk-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/ci/upstream-authority-disk-values.yaml -------------------------------------------------------------------------------- /charts/spire/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/spire/templates/_spire-lib.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/templates/_spire-lib.tpl -------------------------------------------------------------------------------- /charts/spire/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/charts/spire/values.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/ct.yaml -------------------------------------------------------------------------------- /examples/bin/readpw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/bin/readpw.sh -------------------------------------------------------------------------------- /examples/external-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/external-mysql/README.md -------------------------------------------------------------------------------- /examples/external-mysql/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/external-mysql/run-tests.sh -------------------------------------------------------------------------------- /examples/external-mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/external-mysql/values.yaml -------------------------------------------------------------------------------- /examples/external-postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/external-postgresql/README.md -------------------------------------------------------------------------------- /examples/external-postgresql/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/external-postgresql/run-tests.sh -------------------------------------------------------------------------------- /examples/external-postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/external-postgresql/values.yaml -------------------------------------------------------------------------------- /examples/nested/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/nested/run-tests.sh -------------------------------------------------------------------------------- /examples/nested/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/nested/values.yaml -------------------------------------------------------------------------------- /examples/production/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/README.md -------------------------------------------------------------------------------- /examples/production/example-your-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/example-your-values.yaml -------------------------------------------------------------------------------- /examples/production/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/run-tests.sh -------------------------------------------------------------------------------- /examples/production/values-export-federation-https-spiffe-ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/values-export-federation-https-spiffe-ingress-nginx.yaml -------------------------------------------------------------------------------- /examples/production/values-export-federation-https-web-ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/values-export-federation-https-web-ingress-nginx.yaml -------------------------------------------------------------------------------- /examples/production/values-export-spiffe-oidc-discovery-provider-ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/values-export-spiffe-oidc-discovery-provider-ingress-nginx.yaml -------------------------------------------------------------------------------- /examples/production/values-export-spire-server-ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/values-export-spire-server-ingress-nginx.yaml -------------------------------------------------------------------------------- /examples/production/values-node-pod-antiaffinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/values-node-pod-antiaffinity.yaml -------------------------------------------------------------------------------- /examples/production/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/production/values.yaml -------------------------------------------------------------------------------- /examples/spire-plugins/node-agent-tpm/Dockerfile.agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/spire-plugins/node-agent-tpm/Dockerfile.agent -------------------------------------------------------------------------------- /examples/spire-plugins/node-agent-tpm/Dockerfile.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/spire-plugins/node-agent-tpm/Dockerfile.server -------------------------------------------------------------------------------- /examples/spire-plugins/node-agent-tpm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/spire-plugins/node-agent-tpm/values.yaml -------------------------------------------------------------------------------- /examples/tornjak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/tornjak/README.md -------------------------------------------------------------------------------- /examples/tornjak/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/tornjak/run-tests.sh -------------------------------------------------------------------------------- /examples/tornjak/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/examples/tornjak/values.yaml -------------------------------------------------------------------------------- /helm-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/helm-docs.sh -------------------------------------------------------------------------------- /project/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/project/conventions.md -------------------------------------------------------------------------------- /project/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/project/glossary.md -------------------------------------------------------------------------------- /project/issues_due_to_nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/project/issues_due_to_nesting.md -------------------------------------------------------------------------------- /project/maintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/project/maintainers.md -------------------------------------------------------------------------------- /project/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/project/overview.md -------------------------------------------------------------------------------- /release-chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/release-chart.sh -------------------------------------------------------------------------------- /tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/tests/go.mod -------------------------------------------------------------------------------- /tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/tests/go.sum -------------------------------------------------------------------------------- /tests/unit/main.go: -------------------------------------------------------------------------------- 1 | package unit 2 | -------------------------------------------------------------------------------- /tests/unit/spire_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/tests/unit/spire_test.go -------------------------------------------------------------------------------- /tests/unit/unit_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiffe/helm-charts/HEAD/tests/unit/unit_suite_test.go --------------------------------------------------------------------------------