Installation
Helm Chart
helm install postgresql-operator https://github.com/aboutbits/postgresql-operator/releases/download/v0.6.0/postgresql-operator-0.6.0.tgzWith the Helm chart, the Custom Resource Definitions (CRDs) are installed automatically.
However, if you deploy the operator directly from the OCI image, the CRDs are not automatically applied and must be installed separately.
Manual CRD Installation
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.6.0/clusterconnections.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.6.0/databases.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.6.0/schemas.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.6.0/roles.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.6.0/grants.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.6.0/defaultprivileges.postgresql.aboutbits.it-v1.ymlWhat's Changed
- Add a Terraform pitfalls section to the docs (fixes #58) by @ThoSap in #59
- Add
adminSecretFileRefas alternative toadminSecretReffor file-based credentials inClusterConnectionby @fredordercloud in #60 - PR #60 follow-up fixes by @ThoSap in #61
- Enforce LF line endings with .gitattributes by @ThoSap in #64
- Add
volumesandvolumeMountsvalues to the Helm chart for file-based credentials by @ThoSap in #62
New Contributors
- @fredordercloud made their first contribution in #60
Full Changelog: v0.5.0...v0.6.0