[pve-devel] [RFC manager 2/2] ui: CephInstallWizard: add option and hint for offline repository

Aaron Lauterer a.lauterer at proxmox.com
Wed Apr 23 15:28:25 CEST 2025


The new 'offline' repository option will not try to configure the Ceph
repositories during installation.

Signed-off-by: Aaron Lauterer <a.lauterer at proxmox.com>
---
 www/manager6/ceph/CephInstallWizard.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/www/manager6/ceph/CephInstallWizard.js b/www/manager6/ceph/CephInstallWizard.js
index ad7dac68..428ff5d8 100644
--- a/www/manager6/ceph/CephInstallWizard.js
+++ b/www/manager6/ceph/CephInstallWizard.js
@@ -173,6 +173,8 @@ Ext.define('PVE.ceph.CephInstallWizard', {
 		    return allSub
 		        ? gettext("Cluster has active subscriptions and would be eligible for using the enterprise repository.")
 		        : gettext("The no-subscription repository is not the best choice for production setups.");
+		} else if (repo === "offline") {
+		    return gettext("The offline repository option expects that the repository is already configured. For example, in combination with the Promox Offline Mirror.");
 		} else {
 		    return gettext('The test repository should only be used for test setups or after consulting the official Proxmox support!');
 		}
@@ -322,6 +324,7 @@ Ext.define('PVE.ceph.CephInstallWizard', {
 			    ['enterprise', gettext('Enterprise (recommended)')],
 			    ['no-subscription', gettext('No-Subscription')],
 			    ['test', gettext('Test')],
+			    ['offline', gettext('Offline (manual setup)')],
 			],
 			labelWidth: 150,
 			submitValue: false,
-- 
2.39.5





More information about the pve-devel mailing list