Skip to content

Commit

Permalink
chore(helm chart): cpu resources for server & objects increased (#1993)
Browse files Browse the repository at this point in the history
  • Loading branch information
iainsproat authored Jan 25, 2024
1 parent 9aebb3f commit cf67a23
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions utils/helm/speckle-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@
"cpu": {
"type": "string",
"description": "The CPU that should be available on a node when scheduling this pod.",
"default": "500m"
"default": "1000m"
},
"memory": {
"type": "string",
Expand All @@ -829,7 +829,7 @@
"cpu": {
"type": "string",
"description": "The maximum CPU that will be made available to the server Pod in a given period.",
"default": "1000m"
"default": "1500m"
},
"memory": {
"type": "string",
Expand Down Expand Up @@ -1101,7 +1101,7 @@
"cpu": {
"type": "string",
"description": "The CPU that should be available on a node when scheduling this pod.",
"default": "500m"
"default": "1000m"
},
"memory": {
"type": "string",
Expand All @@ -1116,7 +1116,7 @@
"cpu": {
"type": "string",
"description": "The maximum CPU that will be made available to the server Pod in a given period.",
"default": "1000m"
"default": "1500m"
},
"memory": {
"type": "string",
Expand Down
8 changes: 4 additions & 4 deletions utils/helm/speckle-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ server:
## @param server.requests.cpu The CPU that should be available on a node when scheduling this pod.
## ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
##
cpu: 500m
cpu: 1000m
## @param server.requests.memory The Memory that should be available on a node when scheduling this pod.
## Depending on the Kubernetes cluster's configuration, exceeding this value may result in pod eviction from a node.
## ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
Expand All @@ -576,7 +576,7 @@ server:
## If this limit is exceeded, execution of the Pod will be paused until the next period.
## ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
##
cpu: 1000m
cpu: 1500m
## @param server.limits.memory The maximum Memory that will be made available to the server Pod.
## If this limit is exceeded, processes within the pod that request additional memory may be stopped.
## ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
Expand Down Expand Up @@ -718,7 +718,7 @@ objects:
## @param objects.requests.cpu The CPU that should be available on a node when scheduling this pod.
## ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
##
cpu: 500m
cpu: 1000m
## @param objects.requests.memory The Memory that should be available on a node when scheduling this pod.
## Depending on the Kubernetes cluster's configuration, exceeding this value may result in pod eviction from a node.
## ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
Expand All @@ -729,7 +729,7 @@ objects:
## If this limit is exceeded, execution of the Pod will be paused until the next period.
## ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
##
cpu: 1000m
cpu: 1500m
## @param objects.limits.memory The maximum Memory that will be made available to the server Pod.
## If this limit is exceeded, processes within the pod that request additional memory may be stopped.
## ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
Expand Down

0 comments on commit cf67a23

Please sign in to comment.