Skip to content

Commit

Permalink
Network performance: fix native routing case
Browse files Browse the repository at this point in the history
[ upstream commit dc6cf34 ]

While fixing one of the review comments in PR that introduced this test,
I changed datapath mode to be explicitly set from matrix.mode.
Unfortunately, setting `native` makes it actually use `tunneling` mode.
Switching to `gke` mode resolves this issue.

Fixes #30247

Signed-off-by: Marcel Zieba <marcel.zieba@isovalent.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
  • Loading branch information
marseel authored and tklauser committed Feb 20, 2024
1 parent f41d675 commit 9d517ed
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/net-perf-gke.yaml
Expand Up @@ -4,6 +4,10 @@ name: Network performance GKE
on:
schedule:
- cron: '39 0 * * 1-5'
# For testing uncomment following lines:
# push:
# branches:
# - your_branch_name

# By specifying the access of one of the scopes, all of those that are not
# specified are set to 'none'.
Expand Down Expand Up @@ -53,7 +57,7 @@ jobs:
include:
- index: 1
name: "native"
mode: "native"
mode: "gke"
encryption: "none"
hubble: "false"

Expand All @@ -65,7 +69,7 @@ jobs:

- index: 3
name: "native-ipsec"
mode: "native"
mode: "gke"
encryption: "ipsec"
hubble: "false"

Expand All @@ -77,7 +81,7 @@ jobs:

- index: 5
name: "native-hubble"
mode: "native"
mode: "gke"
encryption: "none"
hubble: "true"

Expand All @@ -89,7 +93,7 @@ jobs:

- index: 7
name: "native-ipsec-hubble"
mode: "native"
mode: "gke"
encryption: "ipsec"
hubble: "true"

Expand Down

0 comments on commit 9d517ed

Please sign in to comment.