eec31fd149
This change exposes to the end-user the new ceph dashboard frontend which is fully integrated with grafana service. This review also adds all the info/classes to integrate the service with tls-everywhere framework, providing the cert request and generation that will be passed to ceph dashboard via ceph-ansible. Depends-On: https://review.opendev.org/#/c/704308 Change-Id: Id6d2e4b00355cd84baccc2b493f3205c2b32a44b
11 lines
197 B
Bash
11 lines
197 B
Bash
#!/bin/bash
|
|
|
|
# Get mgr systemd unit
|
|
mgr_unit=$(systemctl list-units | awk '/ceph-mgr/ {print $1}')
|
|
|
|
# Restart the mgr systemd unit
|
|
if [ -n "$mgr_unit" ]; then
|
|
systemctl restart "$mgr_unit"
|
|
fi
|
|
|