Skip to content

Commit 44dd389

Browse files
committed
wip
Signed-off-by: zhangzujian <[email protected]>
1 parent 3c0d849 commit 44dd389

26 files changed

+1640
-320
lines changed

charts/kube-ovn/templates/kube-ovn-crd.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -2078,6 +2078,18 @@ spec:
20782078
type: string
20792079
sctpSessionLoadBalancer:
20802080
type: string
2081+
localTCPLoadBalancer:
2082+
type: string
2083+
localTCPSessionLoadBalancer:
2084+
type: string
2085+
localUDPLoadBalancer:
2086+
type: string
2087+
localUDPSessionLoadBalancer:
2088+
type: string
2089+
localSCTPLoadBalancer:
2090+
type: string
2091+
localSCTPSessionLoadBalancer:
2092+
type: string
20812093
bfdPort:
20822094
type: object
20832095
properties:

dist/images/install.sh

+12
Original file line numberDiff line numberDiff line change
@@ -2329,6 +2329,18 @@ spec:
23292329
type: string
23302330
sctpSessionLoadBalancer:
23312331
type: string
2332+
localTCPLoadBalancer:
2333+
type: string
2334+
localTCPSessionLoadBalancer:
2335+
type: string
2336+
localUDPLoadBalancer:
2337+
type: string
2338+
localUDPSessionLoadBalancer:
2339+
type: string
2340+
localSCTPLoadBalancer:
2341+
type: string
2342+
localSCTPSessionLoadBalancer:
2343+
type: string
23322344
bfdPort:
23332345
type: object
23342346
properties:

e2e.mk

+18-3
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,39 @@ E2E_IP_FAMILY := $(shell echo $${E2E_IP_FAMILY:-ipv4})
77
E2E_NETWORK_MODE := $(shell echo $${E2E_NETWORK_MODE:-overlay})
88
E2E_CILIUM_CHAINING = $(shell echo $${E2E_CILIUM_CHAINING:-false})
99

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+
1117
K8S_CONFORMANCE_E2E_SKIP =
1218
K8S_NETPOL_E2E_FOCUS = "sig-network.*Feature:NetworkPolicy"
1319
K8S_NETPOL_E2E_SKIP = "sig-network.*NetworkPolicyLegacy"
1420
K8S_NETPOL_LEGACY_E2E_FOCUS = "sig-network.*NetworkPolicyLegacy"
1521

1622
GINKGO_PARALLEL_MULTIPLIER = $(shell echo $${GINKGO_PARALLEL_MULTIPLIER:-2})
1723

24+
VER_MAJOR = 999
25+
VER_MINOR = 999
1826
ifeq ($(shell echo $(E2E_BRANCH) | grep -o ^release-),release-)
1927
VERSION_NUM = $(subst release-,,$(E2E_BRANCH))
2028
VER_MAJOR = $(shell echo $(VERSION_NUM) | cut -f1 -d.)
2129
VER_MINOR = $(shell echo $(VERSION_NUM) | cut -f2 -d.)
30+
endif
31+
2232
ifeq ($(shell test $(VER_MAJOR) -lt 1 -o \( $(VER_MAJOR) -eq 1 -a $(VER_MINOR) -lt 12 \) && echo true),true)
2333
K8S_CONFORMANCE_E2E_SKIP += "sig-network.*Services.*session affinity"
2434
K8S_CONFORMANCE_E2E_SKIP += "sig-network.*Feature:SCTPConnectivity"
2535
else
2636
K8S_CONFORMANCE_E2E_FOCUS += "sig-network.*Networking.*Feature:SCTPConnectivity"
2737
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)"
3043
endif
3144

3245
ifneq ($(E2E_IP_FAMILY),ipv6)
@@ -65,6 +78,8 @@ endef
6578

6679
TEST_BIN_ARGS = -kubeconfig $(KUBECONFIG) -num-nodes $(shell kubectl get node -o name | wc -l)
6780

81+
K8S_CONFORMANCE_E2E_FOCUS = "should respect internalTrafficPolicy=Local Pod to Pod"
82+
6883
.PHONY: e2e
6984
e2e: kube-ovn-conformance-e2e
7085

0 commit comments

Comments
 (0)