Database:

ARTIFACTORY: Installation Quick Start Guide - Helm

AuthorFullName__c
Paul Pan
articleNumber
000005199
ft:sourceType
Salesforce
FirstPublishedDate
2022-01-13T19:22:21Z
lastModifiedDate
2024-03-13T08:56:30Z
VersionNumber
14
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 .
$ 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