ceph/pool: change default replica to 3/2

size/min_size 2/1 is unsafe as it can result in split brains, so we
should not recommend it as default.

If the user really wants it he can still set it explicit.
This commit is contained in:
Thomas Lamprecht
2017-03-22 11:08:01 +01:00
committed by Fabian Grünbichler
parent 7eb216bb07
commit bd7b72a04d

View File

@ -16,7 +16,7 @@ Ext.define('PVE.CephCreatePool', {
xtype: 'pveIntegerField',
fieldLabel: gettext('Size'),
name: 'size',
value: 2,
value: 3,
minValue: 1,
maxValue: 3,
allowBlank: false
@ -25,7 +25,7 @@ Ext.define('PVE.CephCreatePool', {
xtype: 'pveIntegerField',
fieldLabel: gettext('Min. Size'),
name: 'min_size',
value: 1,
value: 2,
minValue: 1,
maxValue: 3,
allowBlank: false