Skip to content

Commit

Permalink
Fix pull-kops-e2e-cni-cilium-eni flake due to OutOfpods (max 35 due t…
Browse files Browse the repository at this point in the history
…o instance size eni restrictions)

Signed-off-by: Rafael da Fonseca <[email protected]>
  • Loading branch information
rsafonseca committed Jun 10, 2024
1 parent a7dbaac commit f682340
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion tests/integration/create_cluster/cilium-eni/options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ Zones:
- us-test-1a
CloudProvider: aws
Networking: cilium-eni
KubernetesVersion: v1.26.0
KubernetesVersion: v1.26.0
NodeSizes:
- c6g.xlarge
ControlPlaneSizes:
- c6g.xlarge
2 changes: 1 addition & 1 deletion upup/pkg/fi/cloudup/awsup/mock_aws_cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ func (c *MockAWSCloud) DescribeInstanceType(instanceType string) (*ec2types.Inst
ec2types.ArchitectureTypeX8664,
},
}
case "a1.large", "m6g.xlarge":
case "a1.large", "m6g.xlarge", "c6g.xlarge":
info.ProcessorInfo = &ec2types.ProcessorInfo{
SupportedArchitectures: []ec2types.ArchitectureType{
ec2types.ArchitectureTypeArm64,
Expand Down

0 comments on commit f682340

Please sign in to comment.