mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-17 20:02:46 +00:00
pveceph: support installing Ceph 18.2 Reef
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
b4b39b55f8
commit
12c8efb59e
@ -114,7 +114,7 @@ my sub has_valid_subscription {
|
|||||||
return $info->{status} && $info->{status} eq 'active'; # age check?
|
return $info->{status} && $info->{status} eq 'active'; # age check?
|
||||||
}
|
}
|
||||||
|
|
||||||
my $supported_ceph_versions = ['quincy'];
|
my $supported_ceph_versions = ['quincy', 'reef'];
|
||||||
my $default_ceph_version = 'quincy';
|
my $default_ceph_version = 'quincy';
|
||||||
|
|
||||||
__PACKAGE__->register_method ({
|
__PACKAGE__->register_method ({
|
||||||
@ -171,7 +171,9 @@ __PACKAGE__->register_method ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
my $repolist;
|
my $repolist;
|
||||||
if ($cephver eq 'quincy') {
|
if ($cephver eq 'reef') {
|
||||||
|
$repolist = "deb ${cdn}/debian/ceph-reef bookworm $repo\n";
|
||||||
|
} elsif ($cephver eq 'quincy') {
|
||||||
$repolist = "deb ${cdn}/debian/ceph-quincy bookworm $repo\n";
|
$repolist = "deb ${cdn}/debian/ceph-quincy bookworm $repo\n";
|
||||||
} else {
|
} else {
|
||||||
die "unsupported ceph version: $cephver";
|
die "unsupported ceph version: $cephver";
|
||||||
|
Loading…
Reference in New Issue
Block a user