[pve-devel] [PATCH v2 2/3] ui: CephInstallWizard: add option and hint for offline repository

Aaron Lauterer a.lauterer at proxmox.com
Mon Jul 14 10:38:37 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>
Tested-by: Christoph Heiss <c.heiss at proxmox.com>
---

Notes:
    changes since
    v1:
    * rebased to new indentation
    
    RFC:
    
    * renamed option from 'offline' to 'manual' and therefore adapted the
      dropdown name and explanation text.

 www/manager6/ceph/CephInstallWizard.js | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/www/manager6/ceph/CephInstallWizard.js b/www/manager6/ceph/CephInstallWizard.js
index 5dcc589e..d88d6c8c 100644
--- a/www/manager6/ceph/CephInstallWizard.js
+++ b/www/manager6/ceph/CephInstallWizard.js
@@ -177,6 +177,10 @@ Ext.define('PVE.ceph.CephInstallWizard', {
                         : gettext(
                               'The no-subscription repository is not the best choice for production setups.',
                           );
+                } else if (repo === 'manual') {
+                    return gettext(
+                        'The manual 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!',
@@ -347,6 +351,7 @@ Ext.define('PVE.ceph.CephInstallWizard', {
                                 ['enterprise', gettext('Enterprise (recommended)')],
                                 ['no-subscription', gettext('No-Subscription')],
                                 ['test', gettext('Test')],
+                                ['manual', gettext('Manual')],
                             ],
                             labelWidth: 150,
                             submitValue: false,
-- 
2.39.5





More information about the pve-devel mailing list