From 602fa66366760e6b96d5f0d9e68236e7176c856b Mon Sep 17 00:00:00 2001 From: Stanley Cheung Date: Fri, 19 Nov 2021 14:33:03 -0800 Subject: [PATCH] Update envoy version to 1.20 --- net/grpc/gateway/docker/envoy/Dockerfile | 2 +- net/grpc/gateway/examples/helloworld/README.md | 4 ++-- scripts/run_interop_tests.sh | 2 +- test/interop/README.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/net/grpc/gateway/docker/envoy/Dockerfile b/net/grpc/gateway/docker/envoy/Dockerfile index 3e5fe4aa..b513e5d7 100644 --- a/net/grpc/gateway/docker/envoy/Dockerfile +++ b/net/grpc/gateway/docker/envoy/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM envoyproxy/envoy:v1.17.0 +FROM envoyproxy/envoy:v1.20.0 COPY net/grpc/gateway/examples/echo/envoy.yaml /etc/envoy/envoy.yaml diff --git a/net/grpc/gateway/examples/helloworld/README.md b/net/grpc/gateway/examples/helloworld/README.md index f19a070f..ba254d72 100644 --- a/net/grpc/gateway/examples/helloworld/README.md +++ b/net/grpc/gateway/examples/helloworld/README.md @@ -307,7 +307,7 @@ run the 3 processes all in the background. ```sh $ docker run -d -v "$(pwd)"/envoy.yaml:/etc/envoy/envoy.yaml:ro \ - --network=host envoyproxy/envoy:v1.17.0 + --network=host envoyproxy/envoy:v1.20.0 ``` > NOTE: As per [this issue](https://github.com/grpc/grpc-web/issues/436): @@ -315,7 +315,7 @@ run the 3 processes all in the background. > > ```sh > $ docker run -d -v "$(pwd)"/envoy.yaml:/etc/envoy/envoy.yaml:ro \ -> -p 8080:8080 -p 9901:9901 envoyproxy/envoy:v1.17.0 +> -p 8080:8080 -p 9901:9901 envoyproxy/envoy:v1.20.0 > ``` 3. Run the simple Web Server. This hosts the static file `index.html` and diff --git a/scripts/run_interop_tests.sh b/scripts/run_interop_tests.sh index 25bfff49..2d0fb70b 100755 --- a/scripts/run_interop_tests.sh +++ b/scripts/run_interop_tests.sh @@ -43,7 +43,7 @@ docker-compose build prereqs node-interop-server java-interop-server echo -e "\n[Running] Interop test #1 - against Envoy" pid1=$(docker run -d \ -v "$(pwd)"/test/interop/envoy.yaml:/etc/envoy/envoy.yaml:ro \ - --network=host envoyproxy/envoy:v1.17.0) + --network=host envoyproxy/envoy:v1.20.0) pid2=$(docker run -d --network=host grpcweb/node-interop-server) run_tests diff --git a/test/interop/README.md b/test/interop/README.md index e4412919..eca21cc5 100644 --- a/test/interop/README.md +++ b/test/interop/README.md @@ -33,7 +33,7 @@ tests. ```sh $ docker run -d -v $(pwd)/test/interop/envoy.yaml:/etc/envoy/envoy.yaml:ro \ - --network=host envoyproxy/envoy:v1.17.0 + --network=host envoyproxy/envoy:v1.20.0 ```