Skip to content

Commit

Permalink
docs: adds docs for ceph
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaskuechler committed Dec 11, 2024
1 parent abdadd0 commit 0a916e5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/user-guide/rook-ceph.md
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
```
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,5 @@ nav:
- user-guide/monitoring.md
- user-guide/openstack-ironic.md
- user-guide/openstack-placement.md
- user-guide/rook-ceph.md
- Workflows: workflows/

0 comments on commit 0a916e5

Please sign in to comment.