Skip to content

Commit

Permalink
Update database file path in helm
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Oct 10, 2024
1 parent 30c91a1 commit e19f62e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions helm-charts/hypha-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ env:
key: JWT_SECRET
- name: PUBLIC_BASE_URL
value: "https://hypha.amun.ai"
- name: DATABASE_FILE_PATH
value: "/data/hypha-app-database.db"

# Define command-line arguments here
startupCommand:
Expand All @@ -111,10 +113,10 @@ startupCommand:
- "--port=9520"
- "--public-base-url=$(PUBLIC_BASE_URL)"
# - "--redis-uri=redis://redis.hypha.svc.cluster.local:6379/0"
- "--database-uri=sqlite+aiosqlite:///app/data/artifacts.db"
- "--database-uri=sqlite+aiosqlite:///${DATABASE_FILE_PATH}"

# Persistence Configuration
persistence:
volumeName: hypha-app-storage
claimName: hypha-data-pvc
mountPath: /app/data
mountPath: /data

0 comments on commit e19f62e

Please sign in to comment.