mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-07 14:51:37 +00:00
ceph: gui: add device class select on OSD create
Signed-off-by: Alwin Antreich <a.antreich@proxmox.com>
This commit is contained in:
parent
d571f1f382
commit
c4f39f9a23
@ -77,6 +77,23 @@ Ext.define('PVE.CephCreateOsd', {
|
|||||||
name: 'encrypted',
|
name: 'encrypted',
|
||||||
fieldLabel: gettext('Encrypt OSD')
|
fieldLabel: gettext('Encrypt OSD')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxKVComboBox',
|
||||||
|
comboItems: [
|
||||||
|
['hdd', 'HDD'],
|
||||||
|
['ssd', 'SSD'],
|
||||||
|
['nvme', 'NVME'],
|
||||||
|
],
|
||||||
|
name: 'crush-device-class',
|
||||||
|
nodename: me.nodename,
|
||||||
|
fieldLabel: gettext('Device Class'),
|
||||||
|
value: '',
|
||||||
|
autoSelect: false,
|
||||||
|
allowBlank: true,
|
||||||
|
editable: true,
|
||||||
|
emptyText: 'auto detect',
|
||||||
|
deleteEmpty: me.isCreate ? false : true,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
advancedColumn2: [
|
advancedColumn2: [
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user