From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 4B5B67E53C for ; Wed, 10 Nov 2021 14:31:15 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 3E0701D02D for ; Wed, 10 Nov 2021 14:30:45 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 745641D022 for ; Wed, 10 Nov 2021 14:30:44 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 496ED44B68 for ; Wed, 10 Nov 2021 14:30:44 +0100 (CET) Date: Wed, 10 Nov 2021 14:30:37 +0100 From: Fabian =?iso-8859-1?q?Gr=FCnbichler?= To: Proxmox VE development discussion References: <20211025134755.169491-1-f.ebner@proxmox.com> In-Reply-To: <20211025134755.169491-1-f.ebner@proxmox.com> MIME-Version: 1.0 User-Agent: astroid/0.15.0 (https://github.com/astroidmail/astroid) Message-Id: <1636550998.8ggr8bmjss.astroid@nora.none> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SPAM-LEVEL: Spam detection results: 0 AWL 0.285 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [proxmox.com, zfs.pm, disks.pm, lvmplugin.pm, lvm.pm, config.pm, directory.pm, diskmanage.pm, lvmthin.pm, lvmthinplugin.pm] Subject: [pve-devel] applied-series: [PATCH-SERIES storage/manager] disk-level storage removal for directory, LVM, LVM-thin, ZFS X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Nov 2021 13:31:15 -0000 with a reordering of patches (storage #3 before storage #2) and a slight=20 cosmetic fixup in the last patch. On October 25, 2021 3:47 pm, Fabian Ebner wrote: > So that disks can easily be repurposed when a storage is no longer > needed. >=20 >=20 > Dependency bump pve-manager -> pve-storage is needed. >=20 >=20 > pve-storage: >=20 > Fabian Ebner (6): > LVM: add lvm_destroy_volume_group > api: disks: add DELETE endpoint for directory, lvm, lvmthin, zfs > api: list thin pools: add volume group to properties > diskmanage: add helper for udev workaround > api: disks: delete: add flag for wiping disks > api: disks: delete: add flag for cleaning up storage config >=20 > PVE/API2/Disks.pm | 7 +-- > PVE/API2/Disks/Directory.pm | 96 +++++++++++++++++++++++++++++-- > PVE/API2/Disks/LVM.pm | 84 +++++++++++++++++++++++++-- > PVE/API2/Disks/LVMThin.pm | 98 ++++++++++++++++++++++++++++++-- > PVE/API2/Disks/ZFS.pm | 107 +++++++++++++++++++++++++++++++++-- > PVE/API2/Storage/Config.pm | 27 +++++++++ > PVE/Diskmanage.pm | 11 ++++ > PVE/Storage/LVMPlugin.pm | 11 ++++ > PVE/Storage/LvmThinPlugin.pm | 1 + > 9 files changed, 416 insertions(+), 26 deletions(-) >=20 >=20 > pve-manager: >=20 > Fabian Ebner (6): > ui: node: directory: use gettext for 'Directory' > ui: node: lvmthin: add volume group to columns > ui: utils: add task descriptions for disk removal > ui: node: add destroy menu for directory, lvm, lvmthin, zfs > ui: node: storage removal: add checkbox for cleaning up disks > ui: node: storage removal: add checkbox for cleaning up storage config >=20 > www/manager6/Makefile | 1 + > www/manager6/Utils.js | 3 + > www/manager6/node/Directory.js | 83 ++++++++++++++++++- > www/manager6/node/LVM.js | 82 +++++++++++++++++++ > www/manager6/node/LVMThin.js | 97 +++++++++++++++++++++++ > www/manager6/node/ZFS.js | 80 ++++++++++++++++++- > www/manager6/window/SafeDestroyStorage.js | 39 +++++++++ > 7 files changed, 382 insertions(+), 3 deletions(-) > create mode 100644 www/manager6/window/SafeDestroyStorage.js >=20 > --=20 > 2.30.2 >=20 >=20 >=20 > _______________________________________________ > pve-devel mailing list > pve-devel@lists.proxmox.com > https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel >=20 >=20 >=20