ui: storage: Linux LIO/targetcli support

adding LIO option and dedicated "LIO target portal group" input field to the
"Add: ZFS via iSCSI" dialog

Signed-Off-By: Udo Rader <udo.rader@bestsolution.at>
This commit is contained in:
Udo Rader 2018-07-26 23:28:32 +02:00 committed by Thomas Lamprecht
parent 3f33951bb0
commit 27edbed532
2 changed files with 9 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Ext.define('PVE.form.iScsiProviderSelector', {
comboItems: [
['comstar', 'Comstar'],
[ 'istgt', 'istgt'],
[ 'iet', 'IET']
[ 'iet', 'IET'],
[ 'LIO', 'LIO']
]
});

View File

@ -88,6 +88,13 @@ Ext.define('PVE.storage.ZFSInputPanel', {
value: '',
fieldLabel: gettext('Host group'),
allowBlank: true
},
{
xtype: me.isCreate ? 'textfield' : 'displayfield',
name: 'lio_tpg',
value: '',
fieldLabel: gettext('LIO target portal group'),
allowBlank: true
}
];