The default Helm Chart for PostgreSQL (i.e. stable/postgresql
) defines an initdbScripts
parameter that allows initialization scripts to be run. However, I can't seem to get the format correct on how to issue it via the command line.
Could someone provide an example of how to populate this command line parameter?
Here's what I'm issuing, minus a working version of the initdbScripts
parameter.
helm install stable/postgresql -n testpg \
--set global.postgresql.postgresqlDatabase=testpg \
--set global.postgresql.postgresqlUsername=testpg \
--set global.postgresql.postgresqlPassword=testpg \
--set global.postgresql.servicePort=5432 \
--set initdbScripts=(WHAT GOES HERE TO RUN "sql/init.sql"??) \
--set service.type=LoadBalancer