Use Pipelines with an External PostgreSQL

JFrog Installation & Setup Documentation

Content Type
Installation & Setup
ft:sourceType
Paligo

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: false

Verify 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