Skip to content

Commit

Permalink
test: Fix Windows UserData test flakes by removing m7a family (#4601)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-innis committed Sep 11, 2023
1 parent 2dfebc9 commit f743e20
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/suites/integration/ami_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,12 @@ var _ = Describe("AMI", func() {
Operator: v1.NodeSelectorOpIn,
Values: []string{string(v1.Windows)},
},
// TODO: remove this requirement once VPC RC rolls out m7a.* ENI data (https://github.com/aws/karpenter/issues/4472)
{
Key: v1alpha1.LabelInstanceFamily,
Operator: v1.NodeSelectorOpNotIn,
Values: []string{"m7a"},
},
{
Key: v1alpha1.LabelInstanceCategory,
Operator: v1.NodeSelectorOpIn,
Expand Down

0 comments on commit f743e20

Please sign in to comment.