-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #548 from rackerlabs/troubleshooting-20241211
docs: adds docs for ceph
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Rook Ceph | ||
|
||
UnderStack uses Ceph primarily as an OpenStack Glance backend and for pod volumes. | ||
|
||
## Accessing Ceph Dashboard | ||
|
||
The Ceph admin dashboard is not exposed publicly so a port-forward needs to be | ||
created and then you'll be able to access the Ceph UI. | ||
|
||
``` bash | ||
kubectl -n rook-ceph port-forward service/rook-ceph-mgr-dashboard 8443:8443 | ||
``` | ||
|
||
Once the port-forward is running, you can browse to <https://localhost:8443/> to access the Ceph admin dashboard. | ||
|
||
### Getting Ceph admin credentials | ||
|
||
Username: `admin` | ||
|
||
Password: | ||
|
||
``` bash | ||
kubectl -n rook-ceph get secret rook-ceph-dashboard-password -o jsonpath="{.data.password}" | base64 --decode && echo | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters