Report
I am trying to set up PostgreSQL in a Kubernetes cluster (in my local environment with kind), using the percona-postgresql-operator. I am trying to set a default password for a user, but it doesn't work
users:
- name: postgres
databases:
- quotesdb
options: "SUPERUSER"
password:
type: ASCII
secretName: postgres-user-secret
More about the problem
I tried creating a secret named postgres-user-secret with a key named password however this gets overwritten when the pods related to percona pg starts up. Is it possible to setup a default password?
Steps to reproduce
Versions
- Kubernetes
- Operator
- Database
Anything else?
No response