Open verdverm opened 6 months ago
Update, it seems this is the proper helm command
helm upgrade --install \
postgres \
postgres-operator-charts/postgres-operator \
--set configAwsOrGcp.wal_gs_bucket=<bucket name> \
--set podServiceAccount.name=postgres-pod-custom \
--namespace=operators \
--wait
Note the format of --set configAwsOrGcp.wal_gs_bucket=<bucket name>
It seems this fills in the missing part, but now I am getting leader election issues. Does the instance fail to become healthy if it cannot connect to GCS via Workload Identity during startup?
Ok, so it seems Workload Identity was the issue because the command changed
Looks to be working for me now.
I would say the only change needed would be to update the docs to reflect the new command format
Please, answer some short questions which should help us to understand your problem / question better?
registry.opensource.zalan.do/acid/postgres-operator:v1.11.0
I'm trying to add backups to an existing cluster, to push WAL-E to GCS.
I first updated the Helm Chart as follows (after doing the GCP IAM stuff)
Was hoping that setting
aws_or_gcp.wal_gs_bucket
would be sufficientI've also tried adding a ConfigMap for the operator
Still, the
/run/etc/...
directory that should house the necessarywal-e.d
stuff does not existAny help & guidance is much appreciated, thanks!