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 we can't install 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 <robertspencersmith@gmail.com>
  • Loading branch information
rsmitty authored and talos-bot committed May 14, 2021
1 parent 430fcda commit 4bba1c9
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ spec:
control-plane: controller-manager
spec:
containers:
- command:
- /manager
args:
- --enable-leader-election
image: controller:latest
imagePullPolicy: Always
name: manager
resources:
limits:
cpu: 1000m
memory: 500Mi
requests:
cpu: 500m
memory: 500Mi
- command:
- /manager
args:
- --enable-leader-election
image: controller:latest
imagePullPolicy: Always
name: manager
resources:
limits:
cpu: 1000m
memory: 500Mi
requests:
cpu: 100m
memory: 128Mi
terminationGracePeriodSeconds: 10

0 comments on commit 4bba1c9

Please sign in to comment.