https://github.com/keuller/envoy-sidecar
Sidecar pattern implementation using Envoy & Micronaut
https://github.com/keuller/envoy-sidecar
Last synced: 3 months ago
JSON representation
Sidecar pattern implementation using Envoy & Micronaut
- Host: GitHub
- URL: https://github.com/keuller/envoy-sidecar
- Owner: keuller
- Created: 2019-07-28T18:07:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-05T22:22:21.000Z (over 1 year ago)
- Last Synced: 2025-01-23T00:28:13.283Z (5 months ago)
- Language: Dockerfile
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Microservices Sidecar Pattern Demo
This project try to demonstrate Sidecar Pattern with Envoy.
Building Application Package:
```bash
$ mvn clean compile package
```Building Docker Image:
```bash
$ docker build . -t sidecar-envoy
```Running Docker:
```bash
$ docker run --rm --name=envoy -p 9000:9000 -p 9001:9001 sidecar-envoy
```