Skip to content

Commit

Permalink
Update Envoy to v1.31 in examples.
Browse files Browse the repository at this point in the history
Notably, it fixes an issue with always injecting invalid "grpc-status"
HTTP response header when sending local HTTP response to gRPC clients.

Fixes proxy-wasm#211.

Signed-off-by: Piotr Sikora <[email protected]>
  • Loading branch information
PiotrSikora committed Jul 21, 2024
1 parent 44c5a3c commit 7d3ddd6
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ jobs:
docker run --rm \
-v $(pwd)/envoy.yaml:/envoy.yaml \
-v $(pwd)/target/wasm32-wasi/release:/etc/envoy/proxy-wasm-plugins \
envoyproxy/envoy:v1.24-latest \
envoyproxy/envoy:v1.31-latest \
--mode validate \
-c envoy.yaml
Expand Down Expand Up @@ -365,6 +365,6 @@ jobs:
docker run --rm \
-v $(pwd)/envoy.yaml:/envoy.yaml \
-v $(pwd)/target/wasm32-wasi/release:/etc/envoy/proxy-wasm-plugins \
envoyproxy/envoy:v1.24-latest \
envoyproxy/envoy:v1.31-latest \
--mode validate \
-c envoy.yaml
2 changes: 1 addition & 1 deletion examples/grpc_auth_random/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

services:
envoy:
image: envoyproxy/envoy:v1.24-latest
image: envoyproxy/envoy:v1.31-latest
hostname: envoy
ports:
- "10000:10000"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

services:
envoy:
image: envoyproxy/envoy:v1.24-latest
image: envoyproxy/envoy:v1.31-latest
hostname: envoy
ports:
- "10000:10000"
Expand Down
2 changes: 1 addition & 1 deletion examples/http_auth_random/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

services:
envoy:
image: envoyproxy/envoy:v1.24-latest
image: envoyproxy/envoy:v1.31-latest
hostname: envoy
ports:
- "10000:10000"
Expand Down
2 changes: 1 addition & 1 deletion examples/http_body/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

services:
envoy:
image: envoyproxy/envoy:v1.24-latest
image: envoyproxy/envoy:v1.31-latest
hostname: envoy
ports:
- "10000:10000"
Expand Down
2 changes: 1 addition & 1 deletion examples/http_config/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

services:
envoy:
image: envoyproxy/envoy:v1.24-latest
image: envoyproxy/envoy:v1.31-latest
hostname: envoy
ports:
- "10000:10000"
Expand Down
2 changes: 1 addition & 1 deletion examples/http_headers/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

services:
envoy:
image: envoyproxy/envoy:v1.24-latest
image: envoyproxy/envoy:v1.31-latest
hostname: envoy
ports:
- "10000:10000"
Expand Down

0 comments on commit 7d3ddd6

Please sign in to comment.