Revert "fix: fix generating SNIs in dbless (#7853)"#7872
Merged
Conversation
This reverts commit 18c1423.
tao12345666333
approved these changes
Mar 31, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7872 +/- ##
=======================================
- Coverage 80.4% 78.4% -2.0%
=======================================
Files 222 222
Lines 20964 20791 -173
=======================================
- Hits 16862 16319 -543
- Misses 3112 3433 +321
- Partials 990 1039 +49 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
team-k8s-bot
pushed a commit
that referenced
this pull request
Mar 31, 2026
Collaborator
|
The backport to To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-release/3.4.x release/3.4.x
# Navigate to the new working tree
cd .worktrees/backport-release/3.4.x
# Create a new branch
git switch --create backport-7872-to-release/3.4.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 a5878aead35832b692e9b71b3c906ff954bfeb70
# Push it to GitHub
git push --set-upstream origin backport-7872-to-release/3.4.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-release/3.4.xThen, create a pull request where the |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What this PR does / why we need it:
This reverts commit 18c1423 (#7853)
This fixes an issue where Kong versions older than 3.10 would return errors when being configured with config, not containing SNI cert backreferences with IDs.
These types of configs are already accepted by versions 3.10+ (the SNI cert backreference is optional) but older versions do not allow these.
The issue with the related Kong bug is that it's only reproducible when there are consumers in the config, so:
does not fail with kong:3.9, but
Both manifests work against kong/kong-gateway 3.10+
Which issue this PR fixes:
Special notes for your reviewer:
Related kong PRs which fixed the bug but were never backported to 3.9
PR Readiness Checklist:
Complete these before marking the PR as
ready to review:CHANGELOG.mdrelease notes have been updated to reflect any significant (and particularly user-facing) changes introduced by this PR