Skip to content

Commit

Permalink
Increase cpu requests limit (#2038)
Browse files Browse the repository at this point in the history
- Porting changes from release-1.10 branch made in PR #1749
  • Loading branch information
vikasmb authored Jul 22, 2022
1 parent ecfe8fa commit 46fcc3a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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"
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

0 comments on commit 46fcc3a

Please sign in to comment.