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) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id C8FCA746CC for ; Mon, 19 Apr 2021 09:53:00 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id B629111B07 for ; Mon, 19 Apr 2021 09:52:30 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id D35E211AFD for ; Mon, 19 Apr 2021 09:52:26 +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 A35D542DD3 for ; Mon, 19 Apr 2021 09:52:26 +0200 (CEST) From: Aaron Lauterer To: pve-devel@lists.proxmox.com Date: Mon, 19 Apr 2021 09:52:25 +0200 Message-Id: <20210419075225.1901-1-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.010 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust 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 v2 manager] ui: RBDStorage: add field for RBD namespace 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, 19 Apr 2021 07:53:00 -0000 Makes it possible to configure the RBD namespace via the GUI. RBD namespaces must be configured manually. The most likely use case is when connecting to an external Ceph cluster as this makes it possible to separate client PVE clusters by namespace, not by pool. Signed-off-by: Aaron Lauterer --- changes from v1: code improvements / cleanup as suggested by thomas the warning can be removed once we have a check for the existence of the namespace in place [0] [0] https://lists.proxmox.com/pipermail/pve-devel/2021-April/047653.html www/manager6/storage/RBDEdit.js | 55 +++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 13 deletions(-) diff --git a/www/manager6/storage/RBDEdit.js b/www/manager6/storage/RBDEdit.js index be29dc8a..c55a05c0 100644 --- a/www/manager6/storage/RBDEdit.js +++ b/www/manager6/storage/RBDEdit.js @@ -5,6 +5,7 @@ Ext.define('PVE.storage.Ceph.Model', { data: { pveceph: true, pvecephPossible: true, + namespacePresent: false, }, }); @@ -26,10 +27,16 @@ Ext.define('PVE.storage.Ceph.Controller', { disable: 'resetField', enable: 'resetField', }, + 'textfield[name=namespace]': { + change: 'updateNamespaceHint', + }, }, resetField: function(field) { field.reset(); }, + updateNamespaceHint: function(field, newVal, oldVal) { + this.getViewModel().set('namespacePresent', newVal); + }, queryMonitors: function(field, newVal, oldVal) { // we get called with two signatures, the above one for a field // change event and the afterrender from the view, this check only @@ -88,6 +95,9 @@ Ext.define('PVE.storage.RBDInputPanel', { this.lookupReference('pvecephRef').setValue(false); this.lookupReference('pvecephRef').resetOriginalValue(); } + if (values.namespace) { + this.getViewModel().set('namespacePresent', true); + } this.callParent([values]); }, @@ -170,6 +180,14 @@ Ext.define('PVE.storage.RBDInputPanel', { fieldLabel: gettext('User name'), allowBlank: true, }, + { + xtype: 'pmxDisplayEditField', + editable: me.isCreate, + name: 'namespace', + value: '', + fieldLabel: gettext('Namespace'), + allowBlank: true, + }, ); me.column2 = [ @@ -190,20 +208,31 @@ Ext.define('PVE.storage.RBDInputPanel', { }, ]; - me.columnB = [{ - xtype: 'proxmoxcheckbox', - name: 'pveceph', - reference: 'pvecephRef', - bind: { - disabled: '{!pvecephPossible}', - value: '{pveceph}', + me.columnB = [ + { + xtype: 'proxmoxcheckbox', + name: 'pveceph', + reference: 'pvecephRef', + bind: { + disabled: '{!pvecephPossible}', + value: '{pveceph}', + }, + checked: true, + uncheckedValue: 0, + submitValue: false, + hidden: !me.isCreate, + boxLabel: gettext('Use Proxmox VE managed hyper-converged ceph pool'), }, - checked: true, - uncheckedValue: 0, - submitValue: false, - hidden: !me.isCreate, - boxLabel: gettext('Use Proxmox VE managed hyper-converged ceph pool'), - }]; + { + xtype: 'displayfield', + name: 'namespace-hint', + userCls: 'pmx-hint', + value: gettext('RBD namespaces must be created manually!'), + bind: { + hidden: '{!namespacePresent}', + }, + }, + ]; me.callParent(); }, -- 2.20.1