Accessing rook-ceph Dashboard

I was playing with MKS Rook Ceph this morning, and didn’t know what default password had been generated for the dashboard. I figured I’d post it here just in case anyone else was wondering. This will work in the Control dialog for the MKS cluster for the rook-ceph namespace:

get secret rook-ceph-dashboard-password -o jsonpath="{['data']['password']}" | base64 --decode

On the cli:

kubectl -n rook-ceph get secret rook-ceph-dashboard-password -o jsonpath="{['data']['password']}" | base64 --decode && echo

That is indeed the way to do it from a Control perspective. Or just follow the UI route to Storage and select Secrets :wink: and click on the informational box

Oh nice! Shows how much time I spend on the CLI.