Installation
Helm Chart
helm install postgresql-operator https://github.com/aboutbits/postgresql-operator/releases/download/v0.5.0/postgresql-operator-0.5.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.5.0/clusterconnections.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.5.0/databases.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.5.0/schemas.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.5.0/roles.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.5.0/grants.postgresql.aboutbits.it-v1.yml
kubectl apply -f https://github.com/aboutbits/postgresql-operator/releases/download/v0.5.0/defaultprivileges.postgresql.aboutbits.it-v1.ymlWhat's Changed
- Update to Gradle 9.5.1 by @ThoSap in #52
- Update to Quarkus
3.35.3and tune back the probes as a JOSDK health check issue was fixed by @ThoSap in #53 - Update dependencies by @ThoSap in #54
- Remove passing the
GH_PERSONAL_ACCESS_TOKENtoactions/checkoutby @ThoSap in #56 - Add
linux/arm64support for the operator OCI image by @Danielduel in #55
New Contributors
- @Danielduel made their first contribution in #55
Full Changelog: v0.4.5...v0.5.0