mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-23 07:55:10 +00:00
pve6to7: dont guard noout check on Ceph version
we don't have a mandatory Ceph major version upgrade this time around, so this check does not make sense. instead, we want noout until the full cluster is upgraded. let's use the simple approach and just flip the switch to "turn off noout if all of Ceph is a single version" in the PVE 7.x branch. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
a2e5da3fdf
commit
6d451a4bc3
@ -450,9 +450,7 @@ sub check_ceph {
|
||||
log_warn("unable to determine overall Ceph daemon versions!");
|
||||
} elsif (keys %$overall_versions == 1) {
|
||||
log_pass("single running overall version detected for all Ceph daemon types.");
|
||||
if ((keys %$overall_versions)[0] =~ /^ceph version 15\./) {
|
||||
$noout_wanted = 0;
|
||||
}
|
||||
$noout_wanted = 0; # off post-upgrade, on pre-upgrade
|
||||
} else {
|
||||
log_warn("overall version mismatch detected, check 'ceph versions' output for details!");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user