[pve-devel] [PATCH manager 6/7] ui: cluster create: add recommendations for cluster networks

Aaron Lauterer a.lauterer at proxmox.com
Tue Apr 29 15:57:48 CEST 2025


adding a short list of recommendations regarding the cluster network
right where the cluster is created will hopefully reduce the amount of
clusters that don't follow best practices.

We also point the help button to the requirements a little bit earlier
in the docs than what it used to be.

Signed-off-by: Aaron Lauterer <a.lauterer at proxmox.com>
---
 www/manager6/dc/ClusterEdit.js | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/www/manager6/dc/ClusterEdit.js b/www/manager6/dc/ClusterEdit.js
index b56df713..399d2393 100644
--- a/www/manager6/dc/ClusterEdit.js
+++ b/www/manager6/dc/ClusterEdit.js
@@ -12,7 +12,7 @@ Ext.define('PVE.ClusterCreateWindow', {
     subject: gettext('Cluster'),
     showTaskViewer: true,
 
-    onlineHelp: 'pvecm_create_cluster',
+    onlineHelp: 'pvecm_cluster_requirements',
 
     items: {
 	xtype: 'inputpanel',
@@ -33,6 +33,19 @@ Ext.define('PVE.ClusterCreateWindow', {
 		    name: 'links',
 		},
 	    ],
+	},
+	{
+	    xtype: 'box',
+	    html: `<ul><li>
+		${gettext('Use a dedicated physical network for the first Corosync link.')}
+	    </li><li>
+		${gettext('Configuring multiple links is recommended for redundancy.')}
+	    </li><li>
+		${Ext.String.format(
+		    gettext('For more information, check the <a target="_blank" href="{0}">reference documentation</a>.'),
+		    Proxmox.Utils.get_help_link('pvecm_cluster_requirements'))}
+	    </li></ul>`,
+	    border: 0,
 	}],
     },
 });
-- 
2.39.5





More information about the pve-devel mailing list