Skip to content

Commit

Permalink
Limit calico cpu request to 100m
Browse files Browse the repository at this point in the history
Per docs/development/instancesizes.md we don't have much cpu on a 1
core machine.  Note that this is only requests, not limits, so calico
can still burst.

At least related to issue #7592
  • Loading branch information
justinsb committed Sep 27, 2019
1 parent 2fef10f commit ba76db7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ spec:
privileged: true
resources:
requests:
cpu: 250m
cpu: 100m
livenessProbe:
httpGet:
path: /liveness
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ spec:
privileged: true
resources:
requests:
cpu: 250m
cpu: 90m
livenessProbe:
httpGet:
path: /liveness
Expand Down
2 changes: 1 addition & 1 deletion upup/pkg/fi/cloudup/bootstrapchannelbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ func (b *BootstrapChannelBuilder) buildAddons() *channelsapi.Addons {
"k8s-1.6": "2.6.9-kops.1",
"k8s-1.7": "2.6.12-kops.1",
"k8s-1.7-v3": "3.8.0-kops.1",
"k8s-1.12": "3.8.2-kops.1",
"k8s-1.12": "3.8.2-kops.2",
}

{
Expand Down

0 comments on commit ba76db7

Please sign in to comment.