ceph/qa/workunits/test_telemetry_pacific.sh
Laura Flores 968607a243 qa/workunits: interpret with bash instead of sh
Signed-off-by: Laura Flores <lflores@redhat.com>
2022-10-08 06:50:25 +00:00

24 lines
569 B
Bash
Executable File

#!/bin/bash -ex
# Set up ident details for cluster
ceph config set mgr mgr/telemetry/contact 'ceph-org'
ceph config set mgr mgr/telemetry/description 'upgrade test cluster'
ceph config set mgr mgr/telemetry/channel_ident true
# Opt-in
ceph telemetry on --license sharing-1-0
# Check last_opt_revision
LAST_OPT_REVISION=$(ceph config get mgr mgr/telemetry/last_opt_revision)
if [ $LAST_OPT_REVISION -ne 3 ]; then
echo "last_opt_revision is incorrect."
exit 1
fi
# Check reports
ceph telemetry show
ceph telemetry show-device
ceph telemetry show-all
echo OK