https://github.com/renuka-fernando/envoy-external-processor-sample
Example of Envoy External Processor
https://github.com/renuka-fernando/envoy-external-processor-sample
envoy envoyproxy example sample
Last synced: about 1 year ago
JSON representation
Example of Envoy External Processor
- Host: GitHub
- URL: https://github.com/renuka-fernando/envoy-external-processor-sample
- Owner: renuka-fernando
- License: mit
- Created: 2025-01-22T06:19:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-22T07:40:33.000Z (about 1 year ago)
- Last Synced: 2025-01-22T08:29:46.844Z (about 1 year ago)
- Topics: envoy, envoyproxy, example, sample
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
### Run Setup
Start Ext Processing Server:
```sh
cd external_processor; go run main.go; cd -
```
Start Envoy and the backend service:
```sh
docker compose up -d; docker compose logs -ft
```
### Test
```sh
curl http://localhost:8000/foo/123?myQuery=bar -H 'MyHeader: Foo' -i -d 'foo bar'
```
### Stop
```sh
docker compose down
```