-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Set AppProtocol on Services #14757
Set AppProtocol on Services #14757
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #14757 +/- ##
==========================================
- Coverage 86.02% 86.01% -0.01%
==========================================
Files 197 197
Lines 14945 14950 +5
==========================================
+ Hits 12856 12859 +3
- Misses 1778 1780 +2
Partials 311 311 ☔ View full report in Codecov by Sentry. |
/test istio-latest-no-mesh-tls |
go.mod
Outdated
@@ -162,3 +162,5 @@ require ( | |||
|
|||
// TODO: https://github.com/knative/serving/issues/14597 | |||
replace github.com/gorilla/websocket => github.com/gorilla/websocket v1.5.0 | |||
|
|||
replace knative.dev/networking v0.0.0-20231219131858-8c7897c8b9a0 => github.com/KauzClay/networking v0.0.0-20240103183713-99c292ac8072 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can the changes you need from github.com/KauzClay/networking
go to knative.dev/networking
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah I actually have another PR open with them here: knative/networking#904
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was just a way to get the PR tests to run with those changes, and see if I was breaking anything major in serving
6e5bf1a
to
a468a6b
Compare
You'll need to rebase - looks like the networking deps change came in through another PR |
a468a6b
to
fe7f339
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dprotaso, KauzClay The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Let's merge this in - but I think in the future when a Gateway implementation lands a change that we can test we'll have to change what we do here. H2C - is H2 Prior Knowledge over clear text which isn't the same as an HTTP/1 Upgrade with the h2c nonce. So I wonder if we'll want to label things as http/1 (empty) and only put h2c when it's explicitly done by the user. Let's revisit this when we have a gateway implementation that supports that this feature. |
I changed the PR body not say 'fixes' to 'part of' - I'd like to verify this before we close out that issue. |
This reverts commit e5602d7.
Part of #14569
Depends on knative/networking#904
Proposed Changes
Release Note