The Envoy playground allows you to experiment with proxies, services and networks using Docker.
This is useful for learning or testing Envoy configurations and network architectures.
It is not (at least with current focus) intended to be exposed on the internet or other network.
Exposing the playground to the internet could create an open proxy and allow unknown users to run playground databases and services.
😃 The playground is currently in alpha development.
It should mostly work and do no harm, but may have bugs
Contributions/issues are welcome.
You will need a recent version of Docker installed and runnable by the user running the playground.
Version 19.0.3 is well tested.
You can run the playground directly with Docker.
⚠️ The playground container must be run in privileged mode and with access to the Docker socket.It requires these permissions in order to start and stop proxy and service containers, and attach their networks.
$ docker run -d --rm \
--privileged \
-v /var/run/docker.sock:/var/run/docker.sock \
phlax/envoy-playground:0.3.2
You can stop the playground with.
$ docker stop envoy-playground
💡 This will not stop any services, proxies or networks that you started with the playground.
Start the container and browse to http://localhost:8000
Add Envoy proxies and set their configuration.
https://phlax.github.io/playground/docs/screencasts/create-proxies.webm
Add some services to the playground.
Connect the proxies and services with networks.
Test out connectivity of ports that are exposed to your (localhost) edges.
Remove an Envoy proxy, service or network from the playground.
Clear all of the toys away.
$ git clone [email protected]:envoyproxy/playground
$ cd playground
To start the control server (python API and websocket).
$ make dev-control
To start the ui (webpack-dev-server)
$ make dev-ui
In dev mode the playground should be available at http://localhost:5555
You can optionally also start continuous javascript testing.
$ make dev-ui-test
$ make test
This will generate a production image named envoy-playground
.
$ make build
This will run the built production envoy-playground
image.
The playground will be available on http://localhost:8000.
$ make run
See the Makefile for further commands, and other usage.