@@ -7,7 +7,12 @@ E2E_IP_FAMILY := $(shell echo $${E2E_IP_FAMILY:-ipv4})
7
7
E2E_NETWORK_MODE := $(shell echo $${E2E_NETWORK_MODE:-overlay})
8
8
E2E_CILIUM_CHAINING = $(shell echo $${E2E_CILIUM_CHAINING:-false})
9
9
10
- K8S_CONFORMANCE_E2E_FOCUS = "sig-network.*Conformance" "sig-network.*Feature:NoSNAT"
10
+ K8S_CONFORMANCE_E2E_FOCUS = "sig-network.*Conformance" "sig-network.*Feature:NoSNAT" \
11
+ "should preserve source pod IP for traffic thru service cluster IP" \
12
+ "should allow pods to hairpin back to themselves through services" \
13
+ "should be able to up and down services" \
14
+ "should work after the service has been recreated" \
15
+
11
16
K8S_CONFORMANCE_E2E_SKIP =
12
17
K8S_NETPOL_E2E_FOCUS = "sig-network.*Feature:NetworkPolicy"
13
18
K8S_NETPOL_E2E_SKIP = "sig-network.*NetworkPolicyLegacy"
@@ -29,12 +34,14 @@ endif
29
34
30
35
# support for internalTrafficPolicy=Local was added in v1.14
31
36
ifeq ($(shell test $(VER_MAJOR ) -gt 1 -o \( $(VER_MAJOR ) -eq 1 -a $(VER_MINOR ) -gt 13 \) && echo true),true)
32
- K8S_CONFORMANCE_E2E_FOCUS += "should respect internalTrafficPolicy=Local Pod to Pod"
37
+ K8S_CONFORMANCE_E2E_FOCUS += "should respect internalTrafficPolicy=Local Pod to Pod" \
38
+ "should respect internalTrafficPolicy=Local Pod and Node, to Pod (hostNetwork: true)"
33
39
endif
34
40
35
41
else
36
- K8S_CONFORMANCE_E2E_FOCUS += "sig-network.*Networking.*Feature:SCTPConnectivity"
37
- K8S_CONFORMANCE_E2E_FOCUS += "should respect internalTrafficPolicy=Local Pod to Pod"
42
+ K8S_CONFORMANCE_E2E_FOCUS += "sig-network.*Networking.*Feature:SCTPConnectivity" \
43
+ "should respect internalTrafficPolicy=Local Pod to Pod" \
44
+ "should respect internalTrafficPolicy=Local Pod and Node, to Pod (hostNetwork: true)"
38
45
endif
39
46
40
47
ifneq ($(E2E_IP_FAMILY ) ,ipv6)
0 commit comments