Bump Envoy to 1.15.0

This commit is contained in:
Stanley Cheung 2020-07-07 14:07:39 -07:00 committed by Stanley Cheung
parent d5550cd52b
commit 664fd9c3e9
4 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM envoyproxy/envoy:v1.14.1
FROM envoyproxy/envoy:v1.15.0
COPY net/grpc/gateway/examples/echo/envoy.yaml /etc/envoy/envoy.yaml

View File

@ -294,7 +294,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.14.1
--network=host envoyproxy/envoy:v1.15.0
```
> NOTE: As per [this issue](https://github.com/grpc/grpc-web/issues/436):
@ -302,7 +302,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.14.1
> -p 8080:8080 -p 9901:9901 envoyproxy/envoy:v1.15.0
> ```
3. Run the simple Web Server. This hosts the static file `index.html` and

View File

@ -42,7 +42,7 @@ docker-compose build common prereqs node-interop-server interop-client java-inte
# Run interop tests
pid1=$(docker run -d \
-v "$(pwd)"/test/interop/envoy.yaml:/etc/envoy/envoy.yaml:ro \
--network=host envoyproxy/envoy:v1.14.1)
--network=host envoyproxy/envoy:v1.15.0)
pid2=$(docker run -d --network=host grpcweb/node-interop-server)
run_tests

View File

@ -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.14.1
--network=host envoyproxy/envoy:v1.15.0
```