Database Setup
The NeMo Platform uses a SQL-based database to store entities such as workspaces, jobs, and other records.
By default, the NeMo Platform Helm chart deploys an embedded PostgreSQL instance (a StatefulSet using the official Postgres image) with simplified authentication to enable quick installation. This should not be used for production use, and an external PostgreSQL instance is recommended.
External PostgreSQL Database
To use an external PostgreSQL database in the Helm chart:
- Set
postgresql.enabled: falseand configureexternalDatabase. - Choose one of the following approaches to create a Kubernetes secret with your credentials:
Option 1: Use a full connection URI
Use a secret that holds the full database connection URI and reference it with uriSecret. This is the best option when you need to configure TLS/SSL or want a single secret for the connection string.
- Create a secret containing the connection URI (optionally with SSL parameters):
For SSL, include sslmode in the URI:
- Configure the chart to use that secret:
When uriSecret is set, the platform uses the URI from the secret and ignores host, port, user, database, and existingSecret.
Option 2: Configure individual connection details
Use individual host, port, user, and database values and a secret that contains only the password. The platform builds the connection from these values.
- Create a secret containing the password (the key must be
password, or setexistingSecretPasswordKeyto the key name in your secret):
Or define the secret in YAML:
- Configure the chart with connection details and the secret name: