@@ -7,26 +7,39 @@ 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 be updated after adding or deleting ports" \
12
+ "should preserve source pod IP for traffic thru service cluster IP" \
13
+ "should allow pods to hairpin back to themselves through services" \
14
+ "should be able to up and down services" \
15
+ "should work after the service has been recreated"
16
+
11
17
K8S_CONFORMANCE_E2E_SKIP =
12
18
K8S_NETPOL_E2E_FOCUS = "sig-network.*Feature:NetworkPolicy"
13
19
K8S_NETPOL_E2E_SKIP = "sig-network.*NetworkPolicyLegacy"
14
20
K8S_NETPOL_LEGACY_E2E_FOCUS = "sig-network.*NetworkPolicyLegacy"
15
21
16
22
GINKGO_PARALLEL_MULTIPLIER = $(shell echo $${GINKGO_PARALLEL_MULTIPLIER:-2})
17
23
24
+ VER_MAJOR = 999
25
+ VER_MINOR = 999
18
26
ifeq ($(shell echo $(E2E_BRANCH ) | grep -o ^release-) ,release-)
19
27
VERSION_NUM = $(subst release-,,$(E2E_BRANCH ) )
20
28
VER_MAJOR = $(shell echo $(VERSION_NUM ) | cut -f1 -d.)
21
29
VER_MINOR = $(shell echo $(VERSION_NUM ) | cut -f2 -d.)
30
+ endif
31
+
22
32
ifeq ($(shell test $(VER_MAJOR ) -lt 1 -o \( $(VER_MAJOR ) -eq 1 -a $(VER_MINOR ) -lt 12 \) && echo true),true)
23
33
K8S_CONFORMANCE_E2E_SKIP += "sig-network.*Services.*session affinity"
24
34
K8S_CONFORMANCE_E2E_SKIP += "sig-network.*Feature:SCTPConnectivity"
25
35
else
26
36
K8S_CONFORMANCE_E2E_FOCUS += "sig-network.*Networking.*Feature:SCTPConnectivity"
27
37
endif
28
- else
29
- K8S_CONFORMANCE_E2E_FOCUS += "sig-network.*Networking.*Feature:SCTPConnectivity"
38
+
39
+ # support for internalTrafficPolicy=Local was added in v1.14
40
+ ifeq ($(shell test $(VER_MAJOR ) -gt 1 -o \( $(VER_MAJOR ) -eq 1 -a $(VER_MINOR ) -gt 13 \) && echo true),true)
41
+ K8S_CONFORMANCE_E2E_FOCUS += "should respect internalTrafficPolicy=Local Pod to Pod" \
42
+ "should respect internalTrafficPolicy=Local Pod and Node, to Pod (hostNetwork: true)"
30
43
endif
31
44
32
45
ifneq ($(E2E_IP_FAMILY ) ,ipv6)
65
78
66
79
TEST_BIN_ARGS = -kubeconfig $(KUBECONFIG ) -num-nodes $(shell kubectl get node -o name | wc -l)
67
80
81
+ K8S_CONFORMANCE_E2E_FOCUS = "should respect internalTrafficPolicy=Local Pod to Pod"
82
+
68
83
.PHONY : e2e
69
84
e2e : kube-ovn-conformance-e2e
70
85
0 commit comments