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 9687877F98 for ; Mon, 25 Oct 2021 16:01:43 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 5E44623FC8 for ; Mon, 25 Oct 2021 16:01:43 +0200 (CEST) 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 51D5123EF5 for ; Mon, 25 Oct 2021 16:01:41 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id E533246863 for ; Mon, 25 Oct 2021 16:01:40 +0200 (CEST) From: Dominik Csapak To: pve-devel@lists.proxmox.com Date: Mon, 25 Oct 2021 16:01:26 +0200 Message-Id: <20211025140139.2015470-1-d.csapak@proxmox.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.277 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 Subject: [pve-devel] [PATCH storage/manager/docs v2] fix #3616: support multiple ceph filesystems 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: Mon, 25 Oct 2021 14:01:43 -0000 this series support for multiple cephfs. no single patch fixes the bug, so it's in no commit subject... (feel free to change the commit subject when applying if you find one patch most appropriate?) a user already can create multiple cephfs via 'pveceph' (or manually with the ceph tools), but the ui does not support it properly storage patch can be applied independently, it only adds a new parameter that does nothing if not set. changes from v1: * moved 'destroyfs' from api to cli only * removed 'destroy cephfs' from the gui * added docs patch to document the exact steps on how to remove a cephfs * added 'disable' check on remove-storages * change 'is mds active' check to check for specific fs_name pve-storage: Dominik Csapak (1): cephfs: add support for multiple ceph filesystems PVE/Storage/CephFSPlugin.pm | 8 ++++++++ 1 file changed, 8 insertions(+) pve-manager: Dominik Csapak (11): api: ceph-mds: get mds state when multple ceph filesystems exist ui: ceph: catch missing version for service list api: cephfs: refactor {ls,create}_fs api: cephfs: more checks on fs create api: cephfs: add fs_name to 'is mds active' check ui: ceph/ServiceList: refactor controller out ui: ceph/fs: show fs for active mds api: cephfs: add 'fs-name' for cephfs storage ui: storage/cephfs: make ceph fs selectable ui: ceph/fs: allow creating multiple cephfs pveceph: add 'fs destroy' command PVE/API2/Ceph/FS.pm | 31 ++- PVE/CLI/pveceph.pm | 120 +++++++++++ PVE/Ceph/Services.pm | 33 +-- PVE/Ceph/Tools.pm | 51 +++++ www/manager6/Makefile | 1 + www/manager6/Utils.js | 1 + www/manager6/ceph/FS.js | 24 +-- www/manager6/ceph/ServiceList.js | 313 +++++++++++++++------------- www/manager6/form/CephFSSelector.js | 42 ++++ www/manager6/storage/CephFSEdit.js | 25 +++ 10 files changed, 449 insertions(+), 192 deletions(-) create mode 100644 www/manager6/form/CephFSSelector.js pve-docs: Dominik Csapak (1): pveceph: improve documentation for destroying cephfs pveceph.adoc | 49 +++++++++++++++++++++++++++++++++++++------------ 1 file changed, 37 insertions(+), 12 deletions(-) -- 2.30.2