Reputation: 8586
I was going through a Kubernetes tutorial on Youtube and found the following UI which demonstrates pod and service arrangements of Kubernetes cluster.How can I install this UI in my Kubernetes setup?
Upvotes: 4
Views: 1283
Reputation: 198
the visualizer expects some specific tags to be on the pods / services for them to be displayed. It was built for a demo and I don't think it was generalized to work on arbitrary deployments
As Robert Bailey pointed out, the versions of brendendburns and saturnism are not generealized scripts, but require little modifications on your resource labels (such as labeling things with "name" or "uses").
Maybe this version can help you: https://github.com/0ortmann/k8s-visualizer It features minimalistic configuration options. You can configure labels you want the script to use. You do not need to change your actual setup. Please contact me if you run into issues.
Upvotes: 0
Reputation: 18200
The code for that UI is from https://github.com/brendandburns/gcp-live-k8s-visualizer.
Upvotes: 2
Reputation: 13941
In order to use this UI, go to the saturnism/gcp-live-k8s-visualizer GitHub repo and follow the steps, there.
Upvotes: 4