mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-16 12:06:26 +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?
|
||||
}
|
||||
|
||||
my $supported_ceph_versions = ['quincy'];
|
||||
my $supported_ceph_versions = ['quincy', 'reef'];
|
||||
my $default_ceph_version = 'quincy';
|
||||
|
||||
__PACKAGE__->register_method ({
|
||||
@ -171,7 +171,9 @@ __PACKAGE__->register_method ({
|
||||
}
|
||||
|
||||
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";
|
||||
} else {
|
||||
die "unsupported ceph version: $cephver";
|
||||
|
Loading…
Reference in New Issue
Block a user