An open API service indexing awesome lists of open source software.

https://github.com/colinbut/envoy-example

An example of Envoy: an open-source edge & service proxy for cloud native apps
https://github.com/colinbut/envoy-example

data-plane envoy envoy-proxy envoyproxy service-mesh sidecar sidecar-proxy

Last synced: 6 months ago
JSON representation

An example of Envoy: an open-source edge & service proxy for cloud native apps

Awesome Lists containing this project

README

          

# Envoy Example

## Testing Envoy Simple Example

```bash
docker pull envoyproxy/envoy:latest
docker run --rm -d -p 10000:10000 envoyproxy/envoy:latest
curl -v localhost:10000
```

Building the envoy docker container:
```bash
docker build -t envoy-example:v1 .
```

Running the envoy docker container:
```bash
docker run -d --name envoy-example-v1 -p 9901:9901 -p 10000:10000 envoy-example:v1
```

Test it:
```bash
curl -v localhost:10000
```