diff --git a/library/ceph_volume.py b/library/ceph_volume.py index d5d91c2e42..370b901afd 100644 --- a/library/ceph_volume.py +++ b/library/ceph_volume.py @@ -430,7 +430,9 @@ def list_osd(module, container_image): cluster, mounts={'/var/lib/ceph': '/var/lib/ceph:ro'}) if data: - cmd.append(data) + # Use the full path to the OSD until the following bug is patched: + # https://tracker.ceph.com/issues/62320 + cmd.append('/dev/' + data) cmd.append('--format=json') return cmd