Skip to content

Commit

Permalink
fix: back down resource requests
Browse files Browse the repository at this point in the history
This fixes an issue where sidero can't be installed on a 2 CPU/2GB RAM
node. Backing down the requests so that the pods can get scheduled, but
still keeping the limits high.

Signed-off-by: Spencer Smith <[email protected]>
  • Loading branch information
rsmitty authored and talos-bot committed May 13, 2021
1 parent 3a6c5b9 commit ca75eb4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/cluster-api-provider-sidero/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ spec:
cpu: 1000m
memory: 512Mi
requests:
cpu: 500m
memory: 256Mi
cpu: 100m
memory: 128Mi
terminationGracePeriodSeconds: 10
4 changes: 2 additions & 2 deletions app/metal-controller-manager/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ spec:
cpu: 1000m
memory: 512Mi
requests:
cpu: 500m
memory: 256Mi
cpu: 100m
memory: 128Mi
terminationGracePeriodSeconds: 10
4 changes: 2 additions & 2 deletions app/metal-metadata-server/config/server/server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ spec:
cpu: 500m
memory: 512Mi
requests:
cpu: 200m
memory: 256Mi
cpu: 100m
memory: 128Mi
terminationGracePeriodSeconds: 10

0 comments on commit ca75eb4

Please sign in to comment.