Skip to content

Commit

Permalink
test: disallow m7a instance types for pod-eni test (#4578)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdeal committed Sep 7, 2023
1 parent 99caf37 commit bb18d3c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/suites/integration/extended_resources_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ var _ = Describe("Extended Resources", func() {
Key: v1alpha1.LabelInstanceCategory,
Operator: v1.NodeSelectorOpExists,
},
// TODO: Remove this once m7a instances are supported by the vpc resource controller
{
Key: v1alpha1.LabelInstanceFamily,
Operator: v1.NodeSelectorOpNotIn,
Values: []string{"m7a"},
},
},
})
numPods := 1
Expand Down

0 comments on commit bb18d3c

Please sign in to comment.