subyraman / envoy-typesafe-config

Example code for generating type-safe server configuration with Envoy in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An example of generating type-safe Envoy configuration in Go using Envoy's protocol buffers. The accompanying post explaining this repo is here.

Build the configuration and run the envoy server in Docker:

docker build --tag envoy:latest .

Run the envoy server:

docker run -d -p 10000:10000 envoy:latest

Confirm that all is working by issuing a request:

curl 0.0.0.0:10000 -v

About

Example code for generating type-safe server configuration with Envoy in Go


Languages

Language:Go 90.2%Language:Dockerfile 9.8%