Skip to content

Commit

Permalink
chore: update memory and cpu limits (#444)
Browse files Browse the repository at this point in the history
Need to update the memory limit due to didkit-wasm-node usage
Also increase CPU utilization target slightly based on Grafana usage
  • Loading branch information
jrhender authored Jul 21, 2022
1 parent 39491a8 commit d5e53b9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 22 deletions.
28 changes: 12 additions & 16 deletions devops/dev/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,24 +126,20 @@ iam-cache-server-helm:
DB_MAXIMUM_CONNECTION_POOL: 56 # https://github.com/energywebfoundation/iam-cache-server/blob/develop/README.md#connection-pooling
SENTRY_ENV: dev

resources: { }
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
resources:
limits:
cpu: 750m
memory: 768Mi # spike of memory on initilaization of didkit-wasm-node requires higher limit https://github.com/spruceid/didkit/issues/301
requests:
cpu: 500m
memory: 256Mi

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 1
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
enabled: true
minReplicas: 2
maxReplicas: 4
targetCPUUtilizationPercentage: 60
targetMemoryUtilizationPercentage: 85

nodeSelector: { }

Expand Down
4 changes: 2 additions & 2 deletions devops/prod/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ iam-cache-server-helm:
resources:
limits:
cpu: 750m
memory: 384Mi
memory: 768Mi # spike of memory on initilaization of didkit-wasm-node requires higher limit https://github.com/spruceid/didkit/issues/301
requests:
cpu: 500m
memory: 256Mi
Expand All @@ -140,7 +140,7 @@ iam-cache-server-helm:
enabled: true
minReplicas: 3
maxReplicas: 6
targetCPUUtilizationPercentage: 50
targetCPUUtilizationPercentage: 60
targetMemoryUtilizationPercentage: 85

nodeSelector: { }
Expand Down
8 changes: 4 additions & 4 deletions devops/staging/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,17 +133,17 @@ iam-cache-server-helm:

resources:
limits:
cpu: 500m
memory: 384Mi
cpu: 750m
memory: 768Mi # spike of memory on initilaization of didkit-wasm-node requires higher limit https://github.com/spruceid/didkit/issues/301
requests:
cpu: 250m
cpu: 500m
memory: 256Mi

autoscaling:
enabled: true
minReplicas: 2
maxReplicas: 4
targetCPUUtilizationPercentage: 50
targetCPUUtilizationPercentage: 60
targetMemoryUtilizationPercentage: 85

nodeSelector: { }
Expand Down

0 comments on commit d5e53b9

Please sign in to comment.