I understand that Kubernetes dashboard can be accessed through kubectl proxy
.
On Linux, we can run kubectl proxy. This will allow you to access the dashboard at http://localhost:8001/ui
additionally if you are using Windows and sshing into the master to use kubectl, you will need to set up remote port forwarding from port 8001 on the master to your host in order to use kubectl proxy. To do this, under PUTTY > Connection > SSH > Tunnels, create a new forwarded port (source local port 8001 to destination 127.0.0.1:8001).
I had a look at Azure OMS as well, but could not figure out what additional features are available on azure OMS!.
Does it give pod/deployment logs as well in its dashboard? because thats the only thing that i dont get in Kubernetes dashboard.
Also do we have control on amount logs that get generated on pods? Meaning if we execute kubectl logs <<pod-name>>
will result in logs of that pod being displayed in command line. it keeps on loading all the logs into it.
when does it get rolled over? can we control it? Can we access this logs in a single place as we see stats in kubernetes dashboard.
Can we customize Kubernetes dashboard to pull pod logs?