Skip to content

Commit a1c1ef3

Browse files
committed
Remove unnecessary e2e feature.UDP
[Feature:UDP] was probably added in the past by analogy to [Feature:SCTP], but is unnecessary since UDP support has always been required.
1 parent 7f68d01 commit a1c1ef3

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

test/e2e/feature/feature.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,6 @@ var (
327327
// TODO: document the feature (owning SIG, when to use this feature for a test)
328328
TopologyManager = framework.WithFeature(framework.ValidFeatures.Add("TopologyManager"))
329329

330-
// TODO: document the feature (owning SIG, when to use this feature for a test)
331-
UDP = framework.WithFeature(framework.ValidFeatures.Add("UDP"))
332-
333330
// TODO: document the feature (owning SIG, when to use this feature for a test)
334331
Upgrade = framework.WithFeature(framework.ValidFeatures.Add("Upgrade"))
335332

test/e2e/network/netpol/network_policy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ var _ = common.SIGDescribe("Netpol", func() {
893893
ValidateOrFail(k8s, &TestCase{ToPort: 80, Protocol: v1.ProtocolTCP, Reachability: reachability})
894894
})
895895

896-
f.It("should enforce ingress policy allowing any port traffic to a server on a specific protocol", feature.NetworkPolicy, feature.UDP, func(ctx context.Context) {
896+
f.It("should enforce ingress policy allowing any port traffic to a server on a specific protocol", feature.NetworkPolicy, func(ctx context.Context) {
897897
protocols := []v1.Protocol{protocolTCP, protocolUDP}
898898
ports := []int32{80}
899899
k8s = initializeResources(ctx, f, protocols, ports)

0 commit comments

Comments
 (0)