Files
devops-infra-helm-charts-gcp/helm-templates/bifrost-v1.5.12/values-examples/sqlite-qdrant.yaml
T
2026-08-26 03:39:42 +05:30

59 lines
1.3 KiB
YAML

# Configuration: SQLite for config/logs + Qdrant for vector store
# Usage: helm install bifrost ./bifrost -f values-examples/sqlite-qdrant.yaml
# Storage configuration
storage:
mode: sqlite
persistence:
enabled: true
size: 10Gi
configStore:
enabled: true
logsStore:
enabled: true
# No PostgreSQL
postgresql:
enabled: false
# Deploy Qdrant for vector store
vectorStore:
enabled: true
type: qdrant
qdrant:
enabled: true
persistence:
enabled: true
size: 10Gi
resources:
limits:
cpu: 1000m
memory: 2Gi
requests:
cpu: 500m
memory: 1Gi
# Bifrost configuration
bifrost:
client:
enableLogging: true
providers: {}
# Add your provider keys here
# Enable semantic cache plugin to use vector store
plugins:
semanticCache:
enabled: true
# Reference to external Kubernetes Secret for OpenAI API key
# Create the secret with: kubectl create secret generic bifrost-semantic-cache --from-literal=openai-key=sk-YOUR_OPENAI_KEY
secretRef:
name: "bifrost-semantic-cache"
key: "openai-key"
config:
provider: "openai"
# keys are injected from the secret via environment variable
embedding_model: "text-embedding-3-small"
dimension: 1536
threshold: 0.8
ttl: "5m"