Documentation Index
Fetch the complete documentation index at: https://docs.getbifrost.ai/llms.txt
Use this file to discover all available pages before exploring further.
Changelog
StatefulSet for SQLite with Persistence
This release fixes the multi-attach volume error when running multiple replicas with SQLite storage mode.What Changed
- When using
storage.mode: sqlitewithstorage.persistence.enabled: true, Bifrost now deploys as a StatefulSet instead of a Deployment - Each pod gets its own dedicated PersistentVolumeClaim (e.g.,
data-bifrost-0,data-bifrost-1,data-bifrost-2) - A headless service is created for StatefulSet DNS resolution
- HorizontalPodAutoscaler now correctly references StatefulSet or Deployment based on storage configuration
Who Is Affected
- Users running SQLite mode with persistence enabled and multiple replicas
- Users upgrading existing SQLite deployments need to migrate (see below)
Who Is NOT Affected
- Users running PostgreSQL mode (
storage.mode: postgres) - no changes, still uses Deployment - Users running SQLite without persistence (
storage.persistence.enabled: false) - Users running SQLite with an existing PVC claim (
storage.persistence.existingClaim)
Migration Guide for Existing SQLite Deployments
Since Kubernetes doesn’t allow in-place conversion from Deployment to StatefulSet, you need to:- Back up your data (if needed)
- Uninstall the existing release:
helm uninstall bifrost - Delete the old PVC:
kubectl delete pvc bifrost-data - Install with the new chart version:
helm install bifrost bifrost/bifrost --set image.tag=<latest-image>

