@@ -22,9 +22,9 @@ concurrency:
22
22
23
23
env :
24
24
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 '
28
28
29
29
jobs :
30
30
build-kube-ovn-base :
@@ -184,6 +184,10 @@ jobs:
184
184
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
185
185
make ut
186
186
187
+ - uses : shogo82148/actions-goveralls@v1
188
+ with :
189
+ path-to-profile : profile.cov
190
+
187
191
- name : Install golangci-lint
188
192
run : |
189
193
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:
2002
2006
2003
2007
- name : Create kind cluster
2004
2008
env :
2005
- k8s_version : v1.23.17
2009
+ k8s_version : v1.29.10
2006
2010
run : |
2007
2011
pipx install jinjanator
2008
2012
make kind-init
@@ -2421,6 +2425,186 @@ jobs:
2421
2425
- name : Cleanup
2422
2426
run : timeout -k 10 180 sh -x dist/images/cleanup.sh
2423
2427
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
+
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
+
2424
2608
iptables-vpc-nat-gw-conformance-e2e :
2425
2609
name : Iptables VPC NAT Gateway E2E
2426
2610
needs :
@@ -2966,6 +3150,7 @@ jobs:
2966
3150
- kube-ovn-ic-conformance-e2e
2967
3151
- kube-ovn-ipsec-e2e
2968
3152
- multus-conformance-e2e
3153
+ - vpc-egress-gateway-e2e
2969
3154
- ovn-vpc-nat-gw-conformance-e2e
2970
3155
- iptables-vpc-nat-gw-conformance-e2e
2971
3156
- webhook-e2e
0 commit comments