fix: disable PostgreSQL and Redis in Helm values
Some checks failed
CD - Build & Deploy / build-and-push (push) Has been cancelled
CD - Build & Deploy / package-helm (push) Has been cancelled
CD - Build & Deploy / deploy-staging (push) Has been cancelled
CD - Build & Deploy / deploy-production (push) Has been cancelled
CD - Build & Deploy / release (push) Has been cancelled
ci/woodpecker/push/woodpecker Pipeline failed
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / security (push) Has been cancelled

- Currently using SQLite (not PostgreSQL)
- Redis not implemented yet
- Disabled postgresql.enabled and redis.enabled in production and staging values
- Removed unnecessary database environment variables from deployment
This commit is contained in:
Ehsan.Asadi
2025-12-30 17:12:12 +03:30
parent 11e96c82d6
commit befa393ba6
2 changed files with 4 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ ingress:
- www.peikarband.ir
postgresql:
enabled: true
enabled: false # Using SQLite for now
external:
host: "postgres-prod.default.svc.cluster.local"
port: "5432"
@@ -87,7 +87,7 @@ postgresql:
key: "db-password"
redis:
enabled: true
enabled: false # Not used yet
external:
host: "redis-prod.default.svc.cluster.local"
port: "6379"

View File

@@ -38,14 +38,14 @@ ingress:
- staging.peikarband.ir
postgresql:
enabled: true
enabled: false # Using SQLite for now
external:
host: "postgres-staging.default.svc.cluster.local"
port: "5432"
database: "peikarband_staging"
redis:
enabled: true
enabled: false # Not used yet
external:
host: "redis-staging.default.svc.cluster.local"
port: "6379"