chore: update distribution templates with MongoDB connection parameters

Distribution codegen hook automatically added host, port, username, and password
parameters to MongoDB vector IO provider configuration in distribution templates.
This commit is contained in:
Young Han 2025-11-03 17:18:33 -08:00
parent 83276d4aaa
commit b34c928d43
3 changed files with 12 additions and 0 deletions

View file

@ -132,6 +132,10 @@ providers:
provider_type: remote::mongodb
config:
connection_string: ${env.MONGODB_CONNECTION_STRING:=}
host: ${env.MONGODB_HOST:=localhost}
port: ${env.MONGODB_PORT:=27017}
username: ${env.MONGODB_USERNAME:=}
password: ${env.MONGODB_PASSWORD:=}
database_name: ${env.MONGODB_DATABASE_NAME:=llama_stack}
index_name: ${env.MONGODB_INDEX_NAME:=vector_index}
path_field: ${env.MONGODB_PATH_FIELD:=embedding}