-
Notifications
You must be signed in to change notification settings - Fork 541
security: Upgrade Envoy Gateway from v1.2.8 to v1.6.3 (CVE-2026-22771) #1985
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| kind: Kustomization | ||
|
|
||
| resources: | ||
| - https://github.com/envoyproxy/gateway/releases/download/v1.2.8/install.yaml | ||
| - https://github.com/envoyproxy/gateway/releases/download/v1.6.3/install.yaml | ||
|
|
||
| patches: | ||
| - path: envoy_gateway_patch.yaml | ||
|
|
||
| images: | ||
| - name: envoyproxy/gateway | ||
| newName: envoyproxy/gateway | ||
| newTag: v1.2.8 | ||
| newTag: v1.6.3 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ TARGET_REGISTRY=$1 | |
| IMAGES=( | ||
| "redis:7.4 ${TARGET_REGISTRY}/aibrix/redis:7.4" | ||
| "envoyproxy/envoy:v1.33.2 ${TARGET_REGISTRY}/aibrix/envoy:v1.33.2" | ||
| "envoyproxy/gateway:v1.2.8 ${TARGET_REGISTRY}/aibrix/gateway:v1.2.8" | ||
| "envoyproxy/gateway:v1.6.3 ${TARGET_REGISTRY}/aibrix/gateway:v1.6.3" | ||
|
Contributor
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. To improve maintainability and reduce the chance of errors in future updates, consider defining the version as a variable and reusing it. This avoids hardcoding the version string in multiple places on the same line. For example: ENVOY_GATEWAY_VERSION="v1.6.3"
# ... in IMAGES array
"envoyproxy/gateway:${ENVOY_GATEWAY_VERSION} ${TARGET_REGISTRY}/aibrix/gateway:${ENVOY_GATEWAY_VERSION}"Applying this pattern to all images in the |
||
| "aibrix/kuberay-operator:v1.2.1-patch-20250726 ${TARGET_REGISTRY}/aibrix/kuberay-operator:v1.2.1-patch-20250726" | ||
| "busybox:stable ${TARGET_REGISTRY}/aibrix/busybox:stable" | ||
| ) | ||
|
|
||
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 upgrade appears incomplete: there are still references to the vulnerable Envoy Gateway version
v1.2.8in Helm chart values (e.g.,dist/chart/stable.yaml,dist/chart/values.yaml,dist/chart/vke.yaml). As a result, Helm-based installs can still deploy the oldenvoyproxy/gateway:v1.2.8shutdown-manager image despite updating the kustomize dependency here. Please update those chart files (or narrow the PR description/scope) so all install paths are consistently onv1.6.3.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.
Yes, update the dist/ files as well
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.
FYI uploaded these two images
aibrix-public-release-cn-beijing.cr.volces.com/aibrix/envoy:v1.36.4
aibrix-public-release-cn-beijing.cr.volces.com/aibrix/gateway:v1.6.3