NeMo Entity Store Values Setup#
Find more information on prerequisites and configuring the key parts of the values.yaml
file in the NeMo Entity Store Helm chart.
Tip
For an end-to-end deployment of the NeMo platform, see the Install NeMo Microservices Helm Chart.
Prerequisites#
Microservices
Storage
Access to an external PostgreSQL database to store entities and metadata.
Configure Entity Store to Connect to NeMo Data Store#
To configure the Entity Store microservice to connect to the NeMo Data Store microservice, you need to set the BASE_URL_DATASTORE
value to the internal DNS of the NeMo Data Store microservice.
image:
registry: nvcr.io
repository: nvidia/nemo-microservices/entity-store
tag: 25.6.0
appConfig:
BASE_URL_DATASTORE: http://<DATASTORE-SERVICE-NAME>.<DATASTORE-NAMESPACE>.svc.cluster.local:3000 # Update with internal DNS of Datastore microservice
Note
Ensure that BASE_URL_DATASTORE
correctly points to the NeMo Data Store microservice within your cluster. Incorrect configuration can result in issues with the NeMo Data Store and other microservices.
Set Up with External PostgreSQL Database for Production#
By default, the NeMo Entity Store Helm chart uses the Bitnami PostgreSQL chart to deploy a PostgreSQL database. Refer to the PostgreSQL section for information on how to configure the microservice with an external PostgreSQL database.