Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase cpu requests limit #2038

Merged
merged 1 commit into from
Jul 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/aws-vpc-cni/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: aws-vpc-cni
version: 1.1.17
version: 1.1.18
appVersion: "v1.11.2"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to bump the appVersion to 1.11.3 as well, so maybe we can update that and merge this PR as part of release process.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Synced up offline, appVersion change would be made in a separate PR.

description: A Helm chart for the AWS VPC CNI
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-vpc-cni/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ readinessProbeTimeoutSeconds: 10

resources:
requests:
cpu: 10m
cpu: 25m

updateStrategy:
type: RollingUpdate
Expand Down
2 changes: 1 addition & 1 deletion config/master/aws-k8s-cni-cn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ spec:
fieldPath: spec.nodeName
resources:
requests:
cpu: 10m
cpu: 25m
securityContext:
capabilities:
add:
Expand Down
2 changes: 1 addition & 1 deletion config/master/aws-k8s-cni-us-gov-east-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ spec:
fieldPath: spec.nodeName
resources:
requests:
cpu: 10m
cpu: 25m
securityContext:
capabilities:
add:
Expand Down
2 changes: 1 addition & 1 deletion config/master/aws-k8s-cni-us-gov-west-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ spec:
fieldPath: spec.nodeName
resources:
requests:
cpu: 10m
cpu: 25m
securityContext:
capabilities:
add:
Expand Down
2 changes: 1 addition & 1 deletion config/master/aws-k8s-cni.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ spec:
fieldPath: spec.nodeName
resources:
requests:
cpu: 10m
cpu: 25m
securityContext:
capabilities:
add:
Expand Down
6 changes: 3 additions & 3 deletions config/master/manifests.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ local awsnode = {
name: "aws-node",
readinessProbe: {
exec: {
command: ["/app/grpc-health-probe", "-addr=:50051", "-connect-timeout=2s", "-rpc-timeout=2s"],
command: ["/app/grpc-health-probe", "-addr=:50051", "-connect-timeout=5s", "-rpc-timeout=5s"],
},
initialDelaySeconds: 1,
timeoutSeconds: 5,
timeoutSeconds: 10,
},
livenessProbe: self.readinessProbe + {
initialDelaySeconds: 60,
Expand Down Expand Up @@ -196,7 +196,7 @@ local awsnode = {
for kv in objectItems(self.env_)
],
resources: {
requests: {cpu: "10m"},
requests: {cpu: "25m"},
},
securityContext: {
capabilities: {add: ["NET_ADMIN"]},
Expand Down