Garden universe renders a Kubernetes landscape which is setup and managed by the Gardener Project into a dynamic 3D graph. An example landscape visualization can be found here.
- 3D landscape overview
- Seed <-> shoot relationship
- Identify shoot clusters with errors
- Show latest error message for a shoot
Get the garden-universe binary
go get github.com/afritzler/garden-universeStart garden-universe locally
garden-universe serve --kubeconfig=PATH_TO_MY_KUBECONFIGThe web UI can be accessed via http://localhost:3000 and the rendered landscape graph under http://localhost:3000/graph.
With the --port flag you can also specify under which port the garden-universe server should be exposed (default is 3000).
There are two other rendering alternatives:
- VR Version: http://localhost:3000/vr
- Rotation: http://localhost:3000/rotate
Before running make you need to make sure that statik is installed in your go workspace.
go get github.com/rakyll/statikTo build and run the garden universe
git clone https://github.com/afritzler/garden-universe $GOPATH/src/github.com/afritzler/garden-universe
cd $GOPATH/src/github.com/afritzler/garden-universe
go run *.go serve --kubeconfig=PATH_TO_MY_GARDENER_CLUSTER_KUBECONFIGor to build and run it using the executable
make
./garden-universe serve --kubeconfig=PATH_TO_MY_GARDENER_CLUSTER_KUBECONFIGThe web UI can be accessed via http://localhost:3000 and the rendered graph under http://localhost:3000/graph.
With the --port flag you can also specify under which port the garden universe server should be exposed (default is 3000).
To build the Docker image
cd $GOPATH/src/github.com/afritzler/garden-universe
make docker-buildGarden universe is using 3d-force-graph for rendering.
