From cf9c36f7cdafc497461069b1813bf46726a9883e Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 12 Aug 2024 13:57:06 +0000 Subject: [PATCH] ceph-volume: switch over to new disk sorting behavior by default The automatic disk sorting behavior is deprecated. The new behavior should be the default since Ceph Pacific but it got pushed back multiple times. Fixes: https://tracker.ceph.com/issues/67497 Signed-off-by: Guillaume Abrioux (cherry picked from commit be725040bdff367c29262becdea269416b326b8f) --- src/ceph-volume/ceph_volume/devices/lvm/batch.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ceph-volume/ceph_volume/devices/lvm/batch.py b/src/ceph-volume/ceph_volume/devices/lvm/batch.py index 42f4313566189..c1549d8414be5 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/batch.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/batch.py @@ -224,7 +224,6 @@ class Batch(object): action='store_true', help=('deploy multi-device OSDs if rotational and non-rotational drives ' 'are passed in DEVICES'), - default=True ) parser.add_argument( '--no-auto', @@ -383,7 +382,6 @@ class Batch(object): ''' mlogger.warning('DEPRECATION NOTICE') mlogger.warning('You are using the legacy automatic disk sorting behavior') - mlogger.warning('The Pacific release will change the default to --no-auto') rotating = [] ssd = [] for d in self.args.devices: -- 2.39.5