If you want to use external PostgreSQL, set postgresql.enabled=false and create values-external-postgresql.yaml with the following configuration.
global:
# Internal Postgres must be set to false
postgresql:
user: db_username
password: db_user_password
host: db_host
port: 5432
database: db_name
ssl: false / true
postgresql:
enabled: falseVerify that the user db_username and database db_name exist before running the Helm install / upgrade.
helm upgrade --install pipelines --namespace pipelines jfrog/pipelines -f values-external-postgresql.yaml