I'm deploying the https://github.com/bitnami/charts/tree/master/bitnami/postgresql into k8s and wondering how can I automate the following
- creation of a database
- create a role with password as owner of the database above
I've seen the extraDeploy
https://github.com/bitnami/charts/blob/master/bitnami/postgresql/values.yaml#L43
parameter but this seems like will create a k8s specific resource (not touching pg).
The only idea I have leveraging the extraDeploy
is to create a job which deploys a custom pod that will connect to pg and create the db, role and password ...
thanks!