Skip to content

Commit

Permalink
Update the amount of RAM used by each service
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosribas committed Jul 22, 2024
1 parent dd2c00c commit 75d83e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions kubernetes/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ branch: main
# Redis
redisPort: 6379
redisReplicas: 1
redisRequestsMemory: "1000Mi"
redisRequestsMemory: "2000Mi"
redisRequestsCPU: "1000m"
redisLimitsMemory: "2000Mi"

# FastAPI
port: 8000
replicas: 2
requestsMemory: "1000Mi"
requestsMemory: "2000Mi"
requestsCPU: "1000m"
limitsMemory: "2000Mi"

# Worker (celery)
workerPort: 8001
workerReplicas: 3
workerRequestsMemory: "4000Mi"
workerReplicas: 4
workerRequestsMemory: "6000Mi"
workerRequestsCPU: "1000m"
workerLimitsMemory: "8000Mi"
workerLimitsMemory: "6000Mi"

0 comments on commit 75d83e9

Please sign in to comment.