From 50555feb00f56fcf6c9a992a96d7d5479e4c33ac Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Tue, 19 Dec 2023 17:51:20 +0100 Subject: [PATCH] Add ceph dashboard (#257) Signed-off-by: Christian Berendt --- docs/guides/configuration-guide/ceph.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/guides/configuration-guide/ceph.md b/docs/guides/configuration-guide/ceph.md index 91ced7adcb..2c21c85fce 100644 --- a/docs/guides/configuration-guide/ceph.md +++ b/docs/guides/configuration-guide/ceph.md @@ -230,3 +230,25 @@ OSISM has the two playbooks `ceph-configure-lvm-devices` and `ceph-create-lvm-de ``` $ osism apply ceph-osds ``` + +## Dashboard + +Password for the admin user of the Ceph dashboard is set via `ceph_dashboard_password`. + +```yaml title="environments/ceph/secrets.yml" +ceph_dashboard_password: password +``` + +User name of the admin user, port and listen IP address can be set via additional parameters. + +```yaml title="environments/ceph/configuration.yml" +ceph_dashboard_addr: 0.0.0.0 +ceph_dashboard_port: 7000 +ceph_dashboard_username: admin +``` + +The Ceph dashboard is bootstrapped with the `ceph-bootstrap-dashboard` play. + +``` +$ osism apply ceph-bootstrap-dashboard +```