]> git.proxmox.com Git - pve-storage.git/commitdiff
mark PBS storages as shared
authorFabian Ebner <f.ebner@proxmox.com>
Wed, 27 Jan 2021 12:57:36 +0000 (13:57 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 28 Jan 2021 15:43:20 +0000 (16:43 +0100)
Like this, the property will get added when parsing the storage configuration
and PBS storages will correctly show up as shared storages in API results.

AFAICT the only affected PBS operation is free_image via vdisk_free, which will
now be protected by a cluster-wide lock, and that shouldn't hurt.

Another issue this fixes, which is the reason this patch exists, was reported
in the forum[0]. The free space from PBS storages was counted once for each node
that had access to the storage.

[0]: https://forum.proxmox.com/threads/pve-6-3-the-storage-size-was-displayed-incorrectly.83136/

Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
PVE/Storage/Plugin.pm

index 57c58a9de470c371eb87cc65be78323201e2654f..d2d818437bf2ceaef051fad938cf92f64f920352 100644 (file)
@@ -37,7 +37,9 @@ our @SHARED_STORAGE = (
     'iscsidirect',
     'glusterfs',
     'zfs',
-    'drbd');
+    'drbd',
+    'pbs',
+);
 
 our $MAX_VOLUMES_PER_GUEST = 1024;