Skip to content

v0.6.0

Latest

Choose a tag to compare

@github-actions github-actions released this 04 Sep 23:13
· 1 commit to main since this release
3b1d1f6

Installation

Helm Chart

helm install postgresql-operator https://github.com/aboutbits/postgresql-operator/releases/download/v0.6.0/postgresql-operator-0.6.0.tgz

With 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.yml

What's Changed

  • Add a Terraform pitfalls section to the docs (fixes #58) by @ThoSap in #59
  • Add adminSecretFileRef as alternative to adminSecretRef for file-based credentials in ClusterConnection by @fredordercloud in #60
  • PR #60 follow-up fixes by @ThoSap in #61
  • Enforce LF line endings with .gitattributes by @ThoSap in #64
  • Add volumes and volumeMounts values to the Helm chart for file-based credentials by @ThoSap in #62

New Contributors

Full Changelog: v0.5.0...v0.6.0