├── .github └── workflows │ ├── lint-and-test.yaml │ └── release-chart.yaml ├── .gitignore ├── .helmignore ├── CONTRIBUTING.md ├── DEVELOPER_GUIDE.md ├── LICENSE ├── NOTICE ├── README.md ├── charts └── lakekeeper │ ├── Changelog.md │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ ├── authorization.yaml │ ├── hpa-values.yaml │ ├── ingress-values.yaml │ ├── lakekeeper-plus.yaml │ ├── pdb-values.yaml │ ├── secure-values.yaml │ └── volume-values.yaml │ ├── templates │ ├── _helpers.tpl │ ├── _pods.tpl │ ├── _validations.tpl │ ├── catalog │ │ ├── catalog-deployment.yaml │ │ ├── catalog-hpa.yaml │ │ ├── catalog-ingress.yaml │ │ ├── catalog-pdb.yaml │ │ └── catalog-service.yaml │ ├── config │ │ ├── db-encryption-secret.yaml │ │ └── secret-config-envs.yaml │ ├── db-migration.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── bootstrap.yaml │ └── values.yaml ├── justfile └── renovate.json /.github/workflows/lint-and-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/.github/workflows/lint-and-test.yaml -------------------------------------------------------------------------------- /.github/workflows/release-chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/.github/workflows/release-chart.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/.helmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/DEVELOPER_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/lakekeeper/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/Changelog.md -------------------------------------------------------------------------------- /charts/lakekeeper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/Chart.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/README.md -------------------------------------------------------------------------------- /charts/lakekeeper/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/README.md.gotmpl -------------------------------------------------------------------------------- /charts/lakekeeper/ci/authorization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/ci/authorization.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/ci/hpa-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/ci/hpa-values.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/ci/ingress-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/ci/ingress-values.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/ci/lakekeeper-plus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/ci/lakekeeper-plus.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/ci/pdb-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/ci/pdb-values.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/ci/secure-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/ci/secure-values.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/ci/volume-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/ci/volume-values.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/lakekeeper/templates/_pods.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/_pods.tpl -------------------------------------------------------------------------------- /charts/lakekeeper/templates/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/_validations.tpl -------------------------------------------------------------------------------- /charts/lakekeeper/templates/catalog/catalog-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/catalog/catalog-deployment.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/catalog/catalog-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/catalog/catalog-hpa.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/catalog/catalog-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/catalog/catalog-ingress.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/catalog/catalog-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/catalog/catalog-pdb.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/catalog/catalog-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/catalog/catalog-service.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/config/db-encryption-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/config/db-encryption-secret.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/config/secret-config-envs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/config/secret-config-envs.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/db-migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/db-migration.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/templates/tests/bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/templates/tests/bootstrap.yaml -------------------------------------------------------------------------------- /charts/lakekeeper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/charts/lakekeeper/values.yaml -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | update-readme: 2 | helm-docs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakekeeper/lakekeeper-charts/HEAD/renovate.json --------------------------------------------------------------------------------