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
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:
@@ -74,7 +74,7 @@ ingress:
|
|||||||
- www.peikarband.ir
|
- www.peikarband.ir
|
||||||
|
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: false # Using SQLite for now
|
||||||
external:
|
external:
|
||||||
host: "postgres-prod.default.svc.cluster.local"
|
host: "postgres-prod.default.svc.cluster.local"
|
||||||
port: "5432"
|
port: "5432"
|
||||||
@@ -87,7 +87,7 @@ postgresql:
|
|||||||
key: "db-password"
|
key: "db-password"
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
enabled: true
|
enabled: false # Not used yet
|
||||||
external:
|
external:
|
||||||
host: "redis-prod.default.svc.cluster.local"
|
host: "redis-prod.default.svc.cluster.local"
|
||||||
port: "6379"
|
port: "6379"
|
||||||
|
|||||||
@@ -38,14 +38,14 @@ ingress:
|
|||||||
- staging.peikarband.ir
|
- staging.peikarband.ir
|
||||||
|
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: false # Using SQLite for now
|
||||||
external:
|
external:
|
||||||
host: "postgres-staging.default.svc.cluster.local"
|
host: "postgres-staging.default.svc.cluster.local"
|
||||||
port: "5432"
|
port: "5432"
|
||||||
database: "peikarband_staging"
|
database: "peikarband_staging"
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
enabled: true
|
enabled: false # Not used yet
|
||||||
external:
|
external:
|
||||||
host: "redis-staging.default.svc.cluster.local"
|
host: "redis-staging.default.svc.cluster.local"
|
||||||
port: "6379"
|
port: "6379"
|
||||||
|
|||||||
Reference in New Issue
Block a user