Default deployment will install a bundled postgresql database. For production, we suggested using an external postgresql database. In this example, we will be deploying with a bundled postgresql database. For other database choice, please refer to the external database documentation .
For external database settings, please refer to the external database setting link at the end of this instruction.
We will add the properties above to a values.yaml
$ helm install artifactory-ha \ --set postgresql.enabled=true \ --set postgresql.postgresqlUsername=artifactory \ --set postgresql.postgresqlPassword=password \ --set postgresql.postgresqlDatabase=artifactory\ --set postgresql.postgresqlExtendedConf.maxConnections=1000\ --namespace artifactory-ha jfrog/artifactory-ha --version 107.21.12 --dry-run
For external database settings, please refer to the external database setting link at the end of this instruction.
We will add the properties above to a values.yaml
postgresql: enabled: true postgresqlUsername: artifactory postgresqlPassword: password postgresqlDatabase: artifactory postgresqlExtendedConf: maxConnections: 1000