]> git.proxmox.com Git - pve-manager-legacy.git/commitdiff
ceph/pool: allow bigger size and min_size values
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 22 Mar 2017 10:08:02 +0000 (11:08 +0100)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Mon, 3 Apr 2017 09:52:48 +0000 (11:52 +0200)
Some setups may want to use more replicas as three, while my proposed
maximal 7 replicas is also arbitrary it should cover all normal
usecases (i.e. 5 replicas) and a bit more, just to be sure.

www/manager6/ceph/Pool.js

index c69669c204b3e1dfe689ce75e4f9e54899bd1b61..df43be44945ad4db0cd6182637da3e7d58767afb 100644 (file)
@@ -18,7 +18,7 @@ Ext.define('PVE.CephCreatePool', {
            name: 'size',
            value: 3,
            minValue: 1,
-           maxValue: 3,
+           maxValue: 7,
            allowBlank: false
        },
        {
@@ -27,7 +27,7 @@ Ext.define('PVE.CephCreatePool', {
            name: 'min_size',
            value: 2,
            minValue: 1,
-           maxValue: 3,
+           maxValue: 7,
            allowBlank: false
        },
        {