Skip to content

Commit 4d4f383

Browse files
authored
Merge branch 'kubeovn:master' into bugfix
2 parents 3b23583 + 86ad84b commit 4d4f383

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+4028
-237
lines changed

.github/workflows/build-x86-image.yaml

+189-4
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ concurrency:
2222

2323
env:
2424
KIND_VERSION: v0.25.0
25-
GOLANGCI_LINT_VERSION: 'v1.62.0'
26-
HELM_VERSION: v3.16.2
27-
SUBMARINER_VERSION: '0.18.2'
25+
GOLANGCI_LINT_VERSION: 'v1.62.2'
26+
HELM_VERSION: v3.16.3
27+
SUBMARINER_VERSION: '0.19.1'
2828

2929
jobs:
3030
build-kube-ovn-base:
@@ -184,6 +184,10 @@ jobs:
184184
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
185185
make ut
186186
187+
- uses: shogo82148/actions-goveralls@v1
188+
with:
189+
path-to-profile: profile.cov
190+
187191
- name: Install golangci-lint
188192
run: |
189193
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin $GOLANGCI_LINT_VERSION
@@ -2002,7 +2006,7 @@ jobs:
20022006

20032007
- name: Create kind cluster
20042008
env:
2005-
k8s_version: v1.23.17
2009+
k8s_version: v1.29.10
20062010
run: |
20072011
pipx install jinjanator
20082012
make kind-init
@@ -2421,6 +2425,186 @@ jobs:
24212425
- name: Cleanup
24222426
run: timeout -k 10 180 sh -x dist/images/cleanup.sh
24232427

2428+
vpc-egress-gateway-e2e:
2429+
name: VPC Egress Gateway E2E
2430+
needs:
2431+
- build-kube-ovn
2432+
- build-e2e-binaries
2433+
runs-on: ubuntu-24.04
2434+
timeout-minutes: 10
2435+
strategy:
2436+
fail-fast: false
2437+
matrix:
2438+
ip-family:
2439+
- ipv4
2440+
- ipv6
2441+
- dual
2442+
steps:
2443+
- uses: jlumbroso/[email protected]
2444+
with:
2445+
android: true
2446+
dotnet: true
2447+
haskell: true
2448+
docker-images: false
2449+
large-packages: false
2450+
tool-cache: false
2451+
swap-storage: false
2452+
2453+
- uses: actions/checkout@v4
2454+
2455+
- name: Create the default branch directory
2456+
if: (github.base_ref || github.ref_name) != github.event.repository.default_branch
2457+
run: mkdir -p test/e2e/source
2458+
2459+
- name: Check out the default branch
2460+
if: (github.base_ref || github.ref_name) != github.event.repository.default_branch
2461+
uses: actions/checkout@v4
2462+
with:
2463+
ref: ${{ github.event.repository.default_branch }}
2464+
fetch-depth: 1
2465+
path: test/e2e/source
2466+
2467+
- name: Export E2E directory
2468+
run: |
2469+
if [ '${{ github.base_ref || github.ref_name }}' = '${{ github.event.repository.default_branch }}' ]; then
2470+
echo "E2E_DIR=." >> "$GITHUB_ENV"
2471+
else
2472+
echo "E2E_DIR=test/e2e/source" >> "$GITHUB_ENV"
2473+
fi
2474+
2475+
- uses: actions/setup-go@v5
2476+
id: setup-go
2477+
with:
2478+
go-version-file: ${{ env.E2E_DIR }}/go.mod
2479+
check-latest: true
2480+
cache: false
2481+
2482+
- name: Export Go full version
2483+
run: echo "GO_VERSION=${{ steps.setup-go.outputs.go-version }}" >> "$GITHUB_ENV"
2484+
2485+
- name: Go cache
2486+
uses: actions/cache/restore@v4
2487+
with:
2488+
path: |
2489+
~/.cache/go-build
2490+
~/go/pkg/mod
2491+
key: ${{ runner.os }}-e2e-go-${{ env.GO_VERSION }}-x86-${{ hashFiles(format('{0}/**/go.sum', env.E2E_DIR)) }}
2492+
restore-keys: ${{ runner.os }}-e2e-go-${{ env.GO_VERSION }}-x86-
2493+
2494+
- name: Install kind
2495+
uses: helm/[email protected]
2496+
with:
2497+
version: ${{ env.KIND_VERSION }}
2498+
install_only: true
2499+
2500+
- name: Install ginkgo
2501+
working-directory: ${{ env.E2E_DIR }}
2502+
run: go install -v -mod=mod github.com/onsi/ginkgo/v2/ginkgo
2503+
2504+
- name: Download image
2505+
uses: actions/download-artifact@v4
2506+
with:
2507+
name: kube-ovn
2508+
2509+
- name: Load image
2510+
run: docker load --input kube-ovn.tar
2511+
2512+
- name: Create kind cluster
2513+
run: |
2514+
pipx install jinjanator
2515+
make kind-init-${{ matrix.ip-family }}
2516+
2517+
- name: Install Kube-OVN
2518+
id: install
2519+
run: make kind-install-debug-valgrind-${{ matrix.ip-family }}
2520+
2521+
- name: Install Multus
2522+
run: make kind-install-multus
2523+
2524+
- name: Run E2E
2525+
id: e2e
2526+
working-directory: ${{ env.E2E_DIR }}
2527+
env:
2528+
E2E_BRANCH: ${{ github.base_ref || github.ref_name }}
2529+
E2E_IP_FAMILY: ${{ matrix.ip-family }}
2530+
run: make vpc-egress-gateway-e2e
2531+
2532+
- name: Collect k8s events
2533+
if: failure() && steps.e2e.conclusion == 'failure'
2534+
run: |
2535+
kubectl get events -A -o yaml > kube-ovn-conformance-e2e-${{ matrix.ip-family }}-events.yaml
2536+
tar zcf kube-ovn-conformance-e2e-${{ matrix.ip-family }}-events.tar.gz kube-ovn-conformance-e2e-${{ matrix.ip-family }}-events.yaml
2537+
2538+
- name: Upload k8s events
2539+
uses: actions/upload-artifact@v4
2540+
if: failure() && steps.e2e.conclusion == 'failure'
2541+
with:
2542+
name: kube-ovn-conformance-e2e-${{ matrix.ip-family }}-events
2543+
path: kube-ovn-conformance-e2e-${{ matrix.ip-family }}-events.tar.gz
2544+
2545+
- name: Collect apiserver audit logs
2546+
if: failure() && steps.e2e.conclusion == 'failure'
2547+
run: |
2548+
docker cp kube-ovn-control-plane:/var/log/kubernetes/kube-apiserver-audit.log .
2549+
tar zcf kube-ovn-conformance-e2e-${{ matrix.ip-family }}-audit-log.tar.gz kube-apiserver-audit.log
2550+
2551+
- name: Upload apiserver audit logs
2552+
uses: actions/upload-artifact@v4
2553+
if: failure() && steps.e2e.conclusion == 'failure'
2554+
with:
2555+
name: kube-ovn-conformance-e2e-${{ matrix.ip-family }}-audit-log
2556+
path: kube-ovn-conformance-e2e-${{ matrix.ip-family }}-audit-log.tar.gz
2557+
2558+
- name: kubectl ko log
2559+
if: failure() && steps.e2e.conclusion == 'failure'
2560+
run: |
2561+
make kubectl-ko-log
2562+
mv kubectl-ko-log.tar.gz kube-ovn-conformance-e2e-${{ matrix.ip-family }}-ko-log.tar.gz
2563+
2564+
- name: upload kubectl ko log
2565+
uses: actions/upload-artifact@v4
2566+
if: failure() && steps.e2e.conclusion == 'failure'
2567+
with:
2568+
name: kube-ovn-conformance-e2e-${{ matrix.ip-family }}-ko-log
2569+
path: kube-ovn-conformance-e2e-${{ matrix.ip-family }}-ko-log.tar.gz
2570+
2571+
- name: Check kube ovn pod restarts
2572+
if: ${{ success() || (failure() && (steps.install.conclusion == 'failure' || steps.e2e.conclusion == 'failure')) }}
2573+
run: make check-kube-ovn-pod-restarts
2574+
2575+
- name: Check valgrind result
2576+
run: |
2577+
kubectl -n kube-system rollout restart ds ovs-ovn
2578+
kubectl -n kube-system rollout status ds ovs-ovn
2579+
sleep 10
2580+
kubectl -n kube-system rollout restart deploy ovn-central
2581+
kubectl -n kube-system rollout status deploy ovn-central
2582+
while true; do
2583+
if [ $(kubectl -n kube-system get pod -l app=ovs -o name | wc -l) -eq $(kubectl get node -o name | wc -l) ]; then
2584+
break
2585+
fi
2586+
sleep 1
2587+
done
2588+
kubectl ko log ovn
2589+
kubectl ko log ovs
2590+
2591+
for daemon in ovsdb-nb ovsdb-sb ovn-northd ovn-controller ovsdb-server ovs-vswitchd; do
2592+
echo "Checking if valgrind log file for $daemon exists..."
2593+
find kubectl-ko-log -type f -name "$daemon.valgrind.log.[[:digit:]]*" -exec false {} + && exit 1
2594+
done
2595+
2596+
find kubectl-ko-log -type f -name '*.valgrind.log.*' | while read f; do
2597+
if grep -qw 'definitely lost' "$f"; then
2598+
echo "Memory leak detected in $(basename $f | awk -F. '{print $1}')."
2599+
echo $f
2600+
cat "$f"
2601+
exit 1
2602+
fi;
2603+
done
2604+
2605+
- name: Cleanup
2606+
run: timeout -k 10 180 sh -x dist/images/cleanup.sh
2607+
24242608
iptables-vpc-nat-gw-conformance-e2e:
24252609
name: Iptables VPC NAT Gateway E2E
24262610
needs:
@@ -2966,6 +3150,7 @@ jobs:
29663150
- kube-ovn-ic-conformance-e2e
29673151
- kube-ovn-ipsec-e2e
29683152
- multus-conformance-e2e
3153+
- vpc-egress-gateway-e2e
29693154
- ovn-vpc-nat-gw-conformance-e2e
29703155
- iptables-vpc-nat-gw-conformance-e2e
29713156
- webhook-e2e

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ test/**/*.test
4444
*.html
4545
cover.out
4646
cover.html
47+
profile.cov
4748
kube-ovn-app-sa.yaml
4849
kube-ovn-cni-sa.yaml
4950
kube-ovn-sa.yaml

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ METALLB_CHART_REPO = https://metallb.github.io/metallb
4141
METALLB_CONTROLLER_IMAGE = quay.io/metallb/controller:v$(METALLB_VERSION)
4242
METALLB_SPEAKER_IMAGE = quay.io/metallb/speaker:v$(METALLB_VERSION)
4343

44-
KUBEVIRT_VERSION = v1.3.1
44+
KUBEVIRT_VERSION = v1.4.0
4545
KUBEVIRT_OPERATOR_IMAGE = quay.io/kubevirt/virt-operator:$(KUBEVIRT_VERSION)
4646
KUBEVIRT_API_IMAGE = quay.io/kubevirt/virt-api:$(KUBEVIRT_VERSION)
4747
KUBEVIRT_CONTROLLER_IMAGE = quay.io/kubevirt/virt-controller:$(KUBEVIRT_VERSION)
@@ -50,16 +50,16 @@ KUBEVIRT_LAUNCHER_IMAGE = quay.io/kubevirt/virt-launcher:$(KUBEVIRT_VERSION)
5050
KUBEVIRT_OPERATOR_YAML = https://github.com/kubevirt/kubevirt/releases/download/$(KUBEVIRT_VERSION)/kubevirt-operator.yaml
5151
KUBEVIRT_CR_YAML = https://github.com/kubevirt/kubevirt/releases/download/$(KUBEVIRT_VERSION)/kubevirt-cr.yaml
5252

53-
CILIUM_VERSION = 1.16.3
53+
CILIUM_VERSION = 1.16.4
5454
CILIUM_IMAGE_REPO = quay.io/cilium
5555

56-
CERT_MANAGER_VERSION = v1.16.1
56+
CERT_MANAGER_VERSION = v1.16.2
5757
CERT_MANAGER_CONTROLLER = quay.io/jetstack/cert-manager-controller:$(CERT_MANAGER_VERSION)
5858
CERT_MANAGER_CAINJECTOR = quay.io/jetstack/cert-manager-cainjector:$(CERT_MANAGER_VERSION)
5959
CERT_MANAGER_WEBHOOK = quay.io/jetstack/cert-manager-webhook:$(CERT_MANAGER_VERSION)
6060
CERT_MANAGER_YAML = https://github.com/cert-manager/cert-manager/releases/download/$(CERT_MANAGER_VERSION)/cert-manager.yaml
6161

62-
SUBMARINER_VERSION = $(shell echo $${SUBMARINER_VERSION:-0.18.2})
62+
SUBMARINER_VERSION = $(shell echo $${SUBMARINER_VERSION:-0.19.1})
6363
SUBMARINER_OPERATOR = quay.io/submariner/submariner-operator:$(SUBMARINER_VERSION)
6464
SUBMARINER_GATEWAY = quay.io/submariner/submariner-gateway:$(SUBMARINER_VERSION)
6565
SUBMARINER_LIGHTHOUSE_AGENT = quay.io/submariner/lighthouse-agent:$(SUBMARINER_VERSION)
@@ -1055,7 +1055,7 @@ scan:
10551055
.PHONY: ut
10561056
ut:
10571057
ginkgo -mod=mod --show-node-events --poll-progress-after=60s $(GINKGO_OUTPUT_OPT) -v test/unittest
1058-
go test ./pkg/...
1058+
go test -coverprofile=profile.cov $$(go list ./pkg/... | grep -vw '^github.com/kubeovn/kube-ovn/pkg/client')
10591059

10601060
.PHONY: ovs-sandbox
10611061
ovs-sandbox: clean-ovs-sandbox

Makefile.e2e

+9
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ e2e-build:
7474
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/multus
7575
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/lb-svc
7676
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/vip
77+
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/vpc-egress-gateway
7778
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/iptables-vpc-nat-gw
7879
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/ovn-vpc-nat-gw
7980
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/ha
@@ -168,6 +169,14 @@ vip-conformance-e2e:
168169
ginkgo $(GINKGO_OUTPUT_OPT) $(GINKGO_PARALLEL_OPT) --randomize-all -v \
169170
--focus=CNI:Kube-OVN ./test/e2e/vip/vip.test -- $(TEST_BIN_ARGS)
170171

172+
.PHONY: vpc-egress-gateway-e2e
173+
vpc-egress-gateway-e2e:
174+
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/vpc-egress-gateway
175+
E2E_BRANCH=$(E2E_BRANCH) \
176+
E2E_IP_FAMILY=$(E2E_IP_FAMILY) \
177+
ginkgo $(GINKGO_OUTPUT_OPT) $(GINKGO_PARALLEL_OPT) --randomize-all -v --timeout=30m \
178+
--focus=CNI:Kube-OVN ./test/e2e/vpc-egress-gateway/vpc-egress-gateway.test -- $(TEST_BIN_ARGS)
179+
171180
.PHONY: iptables-vpc-nat-gw-conformance-e2e
172181
iptables-vpc-nat-gw-conformance-e2e:
173182
ginkgo build $(E2E_BUILD_FLAGS) ./test/e2e/iptables-vpc-nat-gw

charts/kube-ovn/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ version: v1.14.0
2323
# It is recommended to use it with quotes.
2424
appVersion: "1.14.0"
2525

26-
kubeVersion: ">= 1.23.0-0"
26+
kubeVersion: ">= 1.29.0-0"

charts/kube-ovn/templates/controller-deploy.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ spec:
140140
- --ovsdb-con-timeout={{- .Values.func.OVSDB_CON_TIMEOUT }}
141141
- --ovsdb-inactivity-timeout={{- .Values.func.OVSDB_INACTIVITY_TIMEOUT }}
142142
- --enable-live-migration-optimize={{- .Values.func.ENABLE_LIVE_MIGRATION_OPTIMIZE }}
143+
- --image={{ .Values.global.registry.address }}/{{ .Values.global.images.kubeovn.repository }}:{{ .Values.global.images.kubeovn.tag }}
143144
securityContext:
144145
runAsUser: {{ include "kubeovn.runAsUser" . }}
145146
privileged: false

0 commit comments

Comments
 (0)