Skip to content

Commit

Permalink
Merge pull request noobaa#1341 from jackyalbo/jacky-resouce-update
Browse files Browse the repository at this point in the history
Fix default resource request/limit for PV pool pods
  • Loading branch information
jackyalbo authored Apr 10, 2024
2 parents f76d728 + 8c4937a commit 4bf91c8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions deploy/internal/pod-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ spec:
resources:
# https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
requests:
cpu: "100m"
memory: "400Mi"
cpu: "999m"
memory: "1Gi"
limits:
cpu: "100m"
memory: "400Mi"
cpu: "999m"
memory: "1Gi"
env:
# Insert the relevant config for the current agent
- name: CONTAINER_PLATFORM
Expand Down
10 changes: 5 additions & 5 deletions pkg/bundle/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -4243,7 +4243,7 @@ metadata:
data: {}
`

const Sha256_deploy_internal_pod_agent_yaml = "204e11eea569564b507010d13c43a2d3ad5feae9e86666a08904508eab231830"
const Sha256_deploy_internal_pod_agent_yaml = "66b9cf14b2e55a8ec6243b00e13e1f8b0cd2ed72e2cbde3931398f7782c24f84"

const File_deploy_internal_pod_agent_yaml = `apiVersion: v1
kind: Pod
Expand All @@ -4259,11 +4259,11 @@ spec:
resources:
# https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
requests:
cpu: "100m"
memory: "400Mi"
cpu: "999m"
memory: "1Gi"
limits:
cpu: "100m"
memory: "400Mi"
cpu: "999m"
memory: "1Gi"
env:
# Insert the relevant config for the current agent
- name: CONTAINER_PLATFORM
Expand Down

0 comments on commit 4bf91c8

Please sign in to comment.