Skip to content

Commit

Permalink
chore: adjust resource allocation to prevent hitting limits
Browse files Browse the repository at this point in the history
Signed-off-by: Bryce McMath <bryce.j.mcmath@gmail.com>
  • Loading branch information
bryce-mcmath committed Oct 10, 2024
1 parent 579219e commit 2addb27
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions devops/charts/server/values_prod.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Default values for vdr-proxy prod deployment
namespace: c2a2c4-prod

replicaCount: 3
replicaCount: 2

autoscaling:
enabled: true
minReplicas: 3
maxReplicas: 5
minReplicas: 2
maxReplicas: 3
targetCPUUtilizationPercentage: 80

podAnnotations: {}
Expand All @@ -29,10 +29,10 @@ env:
resources:
requests:
memory: 300Mi
cpu: 50m
cpu: 40m
limits:
memory: 300Mi
cpu: 200m
cpu: 120m

imagePullSecrets:
- name: artifactory-regcred
Expand Down
2 changes: 1 addition & 1 deletion devops/charts/server/values_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resources:
cpu: 30m
limits:
memory: 300Mi
cpu: 200m
cpu: 120m

imagePullSecrets:
- name: artifactory-regcred
Expand Down

0 comments on commit 2addb27

Please sign in to comment.