-
Notifications
You must be signed in to change notification settings - Fork 689
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
internal/envoy: Update GZip to valid wellknown name #2926
Conversation
83aed21
to
5eaaf79
Compare
Codecov Report
@@ Coverage Diff @@
## main #2926 +/- ##
=======================================
Coverage 74.88% 74.88%
=======================================
Files 83 83
Lines 5582 5582
=======================================
Hits 4180 4180
Misses 1311 1311
Partials 91 91
|
Updates: projectcontour#2479 Signed-off-by: Steve Sloka <[email protected]>
5eaaf79
to
7030a05
Compare
IIUC, the name can be anything (at least with current Envoy versions); just specifying the typed config is enough envoy do do the right thing. |
I don't understand what's happening here. @stevesloka, is this PR just to clear the messages from the Envoy logs? It seems like the better long-term fix is to move the filter config to the typed configs, and to stop using the names altogether? |
@youngnick yes the goal of this is to update the names as the current one's are deprecated and will stop working at some point. I'd like to move to the typedconfig, but can't seem to get that to work (with xDS v2 at least): envoyproxy/go-control-plane#354 (comment) For now this bumps it down the road to avoid compatibility issues until we get it sorted out properly. |
Per this Slack thread (linked in #2479) it seems like the typed-config thing is only supported in v3. |
@stevesloka I'm seeing this error in the Contour log when I test this change:
|
Closing this since the typed config isn't working with v2 xds types. Will come back when implementing v3 and I think it will work then avoiding this issue in the future. |
Updates: #2479
Signed-off-by: Steve Sloka [email protected]