-
Notifications
You must be signed in to change notification settings - Fork 360
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
release: v1.0.1 #3144
Merged
Merged
release: v1.0.1 #3144
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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
v1.0.0 | ||
v1.0.1 |
This file contains 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,25 @@ | ||
date: April 9, 2024 | ||
|
||
changes: | ||
- area: installation | ||
change: | | ||
Updated EnvoyProxy version to v1.29.3 | ||
Fixed certgen to support creating the hmac secret during an upgrade | ||
|
||
- area: translator | ||
change: | | ||
Fixed nil secret in resourceversiontable | ||
Add missing http filters to the http filter chain when ClientTrafficPolicy and MergeGateways is enabled | ||
Allow websockets when url rewrite is enabled | ||
Set the Host header for http health checker | ||
Fixed double slashes in redirect URL | ||
Allow ClientTrafficPolicy to attach to multiple http (non https) listeners within the same Gateway | ||
Set path prefix for the http ext auth service | ||
Set the route matching precedence order to Exact > RegularExpression > PathPrefix | ||
Fixed infraIR duplicate port translation for merged gateways | ||
Set SpawnUpstreamSpan to true | ||
Allow rate limit to work with multiple listeners | ||
|
||
- area: infra-manager | ||
change: | | ||
Skip creating infra resources when the InfraIR has empty listeners |
This file contains 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
This file contains 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,27 @@ | ||
--- | ||
title: "v1.0.1" | ||
publishdate: 2024-04-09 | ||
--- | ||
|
||
Date: April 9, 2024 | ||
|
||
## Installation | ||
- Updated EnvoyProxy version to v1.29.3 | ||
- Fixed certgen to support creating the hmac secret during an upgrade | ||
|
||
## Translator | ||
- Fixed nil secret in resourceversiontable | ||
- Add missing http filters to the http filter chain when ClientTrafficPolicy and MergeGateways is enabled | ||
- Allow websockets when url rewrite is enabled | ||
- Set the Host header for http health checker | ||
- Fixed double slashes in redirect URL | ||
- Allow ClientTrafficPolicy to attach to multiple http (non https) listeners within the same Gateway | ||
- Set path prefix for the http ext auth service | ||
- Set the route matching precedence order to Exact > RegularExpression > PathPrefix | ||
- Fixed infraIR duplicate port translation for merged gateways | ||
- Set SpawnUpstreamSpan to true | ||
- Allow rate limit to work with multiple listeners | ||
|
||
## Infra-manager | ||
- Skip creating infra resources when the InfraIR has empty listeners | ||
|
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
This file contains 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 |
---|---|---|
|
@@ -20,7 +20,7 @@ so the `Gateway` resource has an Address associated with it. We recommend using | |
Install the Gateway API CRDs and Envoy Gateway: | ||
|
||
```shell | ||
helm install eg oci://docker.io/envoyproxy/gateway-helm --version v1.0.0 -n envoy-gateway-system --create-namespace | ||
helm install eg oci://docker.io/envoyproxy/gateway-helm --version v1.0.1 -n envoy-gateway-system --create-namespace | ||
``` | ||
|
||
Wait for Envoy Gateway to become available: | ||
|
@@ -32,7 +32,7 @@ kubectl wait --timeout=5m -n envoy-gateway-system deployment/envoy-gateway --for | |
Install the GatewayClass, Gateway, HTTPRoute and example app: | ||
|
||
```shell | ||
kubectl apply -f https://github.com/envoyproxy/gateway/releases/download/v1.0.0/quickstart.yaml -n default | ||
kubectl apply -f https://github.com/envoyproxy/gateway/releases/download/v1.0.1/quickstart.yaml -n default | ||
``` | ||
|
||
**Note**: [`quickstart.yaml`] defines that Envoy Gateway will listen for | ||
|
@@ -43,7 +43,7 @@ unprivileged port, so that Envoy Gateway doesn't need additional privileges. | |
It's important to be aware of this mapping, since you may need to take it into | ||
consideration when debugging. | ||
|
||
[`quickstart.yaml`]: https://github.com/envoyproxy/gateway/releases/download/v1.0.0/quickstart.yaml | ||
[`quickstart.yaml`]: https://github.com/envoyproxy/gateway/releases/download/v1.0.1/quickstart.yaml | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some links are 404 as expected since release is not cut off yet There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this link will never 404, because github.com is ignored because of rate limiting. |
||
|
||
## Testing the Configuration | ||
|
||
|
@@ -90,7 +90,7 @@ Use the steps in this section to uninstall everything from the quickstart guide. | |
Delete the GatewayClass, Gateway, HTTPRoute and Example App: | ||
|
||
```shell | ||
kubectl delete -f https://github.com/envoyproxy/gateway/releases/download/v1.0.0/quickstart.yaml --ignore-not-found=true | ||
kubectl delete -f https://github.com/envoyproxy/gateway/releases/download/v1.0.1/quickstart.yaml --ignore-not-found=true | ||
``` | ||
|
||
Delete the Gateway API CRDs and Envoy Gateway: | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Oops, something went wrong.
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.
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.
wait #3146
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.
I think you can remove this now.