Kubernetes DashboardΒΆ

You need an token to access the Kubernetes Dashboard. We provide an admin token in the cluster that can be used to issue administrator access to the Dashboard.

You can use the following kubectl command to retrieve the access token:

ASERGO Kubernetes V2 and below

kubectl -n default describe secret \
    $(kubectl -n default get secret | \
    grep 'users' | awk '{print $1}') | \
    grep 'token:' | awk '{print $2}'