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:
committed by
Fabian Grünbichler
parent
7eb216bb07
commit
bd7b72a04d
@ -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
|
||||
|
Reference in New Issue
Block a user