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
- Host: GitHub
- URL: https://github.com/colinbut/envoy-example
- Owner: colinbut
- Created: 2018-12-03T14:40:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-03T22:43:45.000Z (almost 7 years ago)
- Last Synced: 2025-02-01T14:46:18.526Z (8 months ago)
- Topics: data-plane, envoy, envoy-proxy, envoyproxy, service-mesh, sidecar, sidecar-proxy
- Language: Dockerfile
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```