Kubernetes Dashboard on Angular app

Hello everyone!

I’m looking for ways to display information on my Angular app and I found that the Kubernetes Dashboard (which uses Angular 12).

Is there a way to include this dashboard in my own app? What ways do you recommend to implement a dashboard in an already existing app?

I don’t recommend exposing any dashboard that manages Kubernetes, because security.

All of Kubernetes is API driven, so you can pull whatever information you want from the control plane when you’re authenticated against it and present the data however you want. The dashboard just does that.

1 Like