ceph: gui: add autoscale mode to pool create

Signed-off-by: Alwin Antreich <a.antreich@proxmox.com>
This commit is contained in:
Alwin Antreich 2020-10-19 12:39:34 +02:00 committed by Thomas Lamprecht
parent c423489a41
commit 384132c3ab

View File

@ -39,6 +39,19 @@ Ext.define('PVE.CephCreatePool', {
name: 'crush_rule',
allowBlank: false
},
{
xtype: 'proxmoxKVComboBox',
fieldLabel: 'PG Autoscale Mode', // do not localize
name: 'pg_autoscale_mode',
comboItems: [
['warn', 'warn'],
['on', 'on'],
['off', 'off'],
],
value: 'warn',
allowBlank: false,
autoSelect: false,
},
{
xtype: 'proxmoxintegerfield',
fieldLabel: 'pg_num',