-
Notifications
You must be signed in to change notification settings - Fork 97
Add blog enhancing-vpn-high-availability-with-round-robin-bonding-mode #823
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
gardener-answering-machine
wants to merge
2
commits into
master
Choose a base branch
from
blog/2026-01-28-enhancing-vpn-high-availability-with-round-robin-bonding-mode
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
.../2026/01/01-28-enhancing-vpn-high-availability-with-round-robin-bonding-mode.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| --- | ||
| title: "Enhancing VPN High Availability with Round-Robin Bonding Mode" | ||
| linkTitle: "Enhancing VPN High Availability with Round-Robin Bonding Mode" | ||
| newsSubtitle: January 28, 2026 | ||
| publishdate: 2026-01-28 | ||
| authors: | ||
| - avatar: https://avatars.githubusercontent.com/domdom82 | ||
| email: Dominik.Froehlich@sap.com | ||
| login: domdom82 | ||
| name: Dominik Froehlich | ||
| tags: | ||
| - feature-announcement | ||
| - high-availability | ||
| - networking | ||
| aliases: ["/blog/2026/01/28/enhancing-vpn-high-availability-with-round-robin-bonding-mode"] | ||
| --- | ||
|
|
||
| Gardener's High Availability (HA) VPN setup is designed to ensure a stable and reliable connection between the shoot cluster's control plane and its worker nodes. By default, this setup operates in an `active-backup` mode, where one VPN tunnel is active while the other remains on standby. However, certain network degradation scenarios, such as packet loss on the primary connection, could lead to disruptions without triggering a failover to the backup tunnel. | ||
|
|
||
| To address this, Gardener now introduces an alternative bonding mode: `round-robin`. | ||
|
|
||
| ### The Challenge with Active-Backup Bonding | ||
|
|
||
| In the default `active-backup` configuration, only one of the two VPN servers (`vpn-seed-server-0`) actively handles traffic. The second server (`vpn-seed-server-1`) acts as a passive backup. The system only switches to the backup if the primary link goes down completely. This model can be problematic when the primary connection experiences significant packet loss but the link itself remains technically "up." In such cases, connections can fail, but the bonding device won't initiate a failover, leading to service degradation. | ||
|
|
||
| ### A More Resilient Approach: Round-Robin Bonding | ||
|
|
||
| To improve resilience against network degradation, Gardener now offers a `round-robin` (`balance-rr`) bonding mode for HA VPN configurations. When enabled, this mode utilizes both VPN tunnels simultaneously, distributing traffic across them. This approach makes the VPN connection more tolerant to issues like packet loss on a single link, as traffic can still flow through the other active tunnel, thus maintaining connectivity and enhancing overall availability. | ||
|
|
||
| This change only affects HA VPN setups; non-HA VPNs are not impacted. | ||
|
|
||
| ### How to Enable the Feature | ||
|
|
||
| The round-robin bonding mode is introduced as an alpha feature and is disabled by default. To enable it, operators can activate the `VPNBondingModeRoundRobin` feature gate in the `gardenlet` configuration. | ||
|
|
||
| This feature is available starting with Gardener release `v1.135.0`. By introducing it behind a feature gate, operators can adopt it incrementally and monitor its behavior in their specific environments. | ||
|
|
||
| --- | ||
| ### Further Reading | ||
|
|
||
| * [Recording of "HA VPN Round-Robin Bonding Mode"](https://youtu.be/2rOOsQWLO_w) | ||
| * [GitHub Pull Request: Add feature gate for HA VPN round-robin bonding mode](https://github.com/gardener/gardener/pull/13649) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.