Managing your Kubernetes cluster from the user interface

Is there any known approach by which we can manage a cluster of Kubernetes from the dashboard UI? Kubernetes has a default user interface that is good enough to view the details of how containers, services, etc. work.

But what is the approach if we need to change some properties of the Kubernetes cluster (for example, increase replicas to RC, change autoscale policies, etc.) from the UI rather than issue kubectl commands?

I heard that Kismatic is working towards this same goal, but I'm not really sure how to set them up from github .

I use google cloud for my projects.

+3


source to share


1 answer


The default UI in Kubernetes does not currently support modifying anything running on the cluster, and there are no other official UIs. This is something we would definitely like to improve in the future.



However, fabric8 has put together a console that allows you to change what is running on the Kubernetes cluster as well as view it. I haven't tried it myself, so I can't vouch for this, but it might be worth checking out. There's a video demo here , with documentation here .

+5


source







All Articles