Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: scale down app resources #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions build/ci/production-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ web:
gunicornThreadCount: 5
resources:
requests:
memory: "12Gi"
cpu: "1500m"
memory: "3Gi"
cpu: "1"
limits:
memory: "14Gi"
cpu: "2"
memory: "4Gi"
cpu: "1"
secrets:
googleClient:
ref: google-client-secret
Expand All @@ -67,7 +67,7 @@ nodejs:
containerImage:
imageRegistry:
tag:
replicaCount: 2
replicaCount: 1
resources:
requests:
memory: "1Gi"
Expand All @@ -80,17 +80,17 @@ varnish:
replicaCount: 1
resources:
requests:
memory: "17Gi"
cpu: "1"
memory: "1Gi"
cpu: "500"
limits:
memory: "18Gi"
cpu: "1500m"
memory: "2Gi"
cpu: "500m"
tuning:
malloc: "14440m"
malloc: "500m"
nuke_limit: "400"
thread_pools: 2
thread_pool_max: 5000
thread_pool_min: 100
thread_pool_max: 500
thread_pool_min: 10
first_byte_timeout: 60 # Default 60s
between_bytes_timeout: 60 # Default 60s
secrets:
Expand Down Expand Up @@ -125,7 +125,7 @@ nginx:
tag:
SEARCH_HOST: contextus-es-http.elasticsearch.svc
disableScraping: false
replicaCount: 2
replicaCount: 1
resources:
requests:
memory: "200Mi"
Expand Down