Commit 61f53cab authored by Alexandre Derumier's avatar Alexandre Derumier Committed by Dietmar Maurer

add rbd storage panel

Signed-off-by: 's avatarAlexandre Derumier <aderumier@odiso.com>
parent 9c297419
......@@ -121,6 +121,7 @@ JSSRC= \
storage/NFSEdit.js \
storage/IScsiEdit.js \
storage/LVMEdit.js \
storage/RBDEdit.js \
dc/Summary.js \
dc/OptionView.js \
dc/StorageView.js \
......
......@@ -40,6 +40,8 @@ Ext.define('PVE.dc.StorageView', {
editor = 'PVE.storage.LVMEdit';
} else if (type === 'iscsi') {
editor = 'PVE.storage.IScsiEdit';
} else if (type === 'rbd') {
editor = 'PVE.storage.RBDEdit';
} else {
return;
}
......@@ -128,7 +130,17 @@ Ext.define('PVE.dc.StorageView', {
win.on('destroy', reload);
win.show();
}
}
},
{
text: 'RBD',
iconCls: 'pve-itype-icon-node',
handler: function() {
var win = Ext.create('PVE.storage.RBDEdit', {});
win.on('destroy', reload);
win.show();
}
},
]
})
},
......@@ -203,4 +215,4 @@ Ext.define('PVE.dc.StorageView', {
idProperty: 'storage'
});
});
\ No newline at end of file
});
Ext.define('PVE.storage.RBDInputPanel', {
extend: 'PVE.panel.InputPanel',
onGetValues: function(values) {
var me = this;
if (me.create) {
values.type = 'rbd';
values.content = 'images';
} else {
delete values.storage;
}
values.disable = values.enable ? 0 : 1;
delete values.enable;
return values;
},
initComponent : function() {
var me = this;
me.column1 = [
{
xtype: me.create ? 'textfield' : 'displayfield',
name: 'storage',
height: 22, // hack: set same height as text fields
value: me.storageId || '',
fieldLabel: 'ID',
vtype: 'StorageId',
allowBlank: false
},
{
xtype: me.create ? 'textfield' : 'displayfield',
height: 22, // hack: set same height as text fields
name: 'pool',
value: 'rbd',
fieldLabel: gettext('Pool'),
allowBlank: false
},
{
xtype: me.create ? 'textfield' : 'displayfield',
height: 22, // hack: set same height as text fields
name: 'monhost',
value: 'X.X.X.X:6789;X.X.X.X:6789;X.X.X.X:6789',
fieldLabel: gettext('Monitor Host'),
allowBlank: false
},
{
xtype: me.create ? 'textfield' : 'displayfield',
height: 22, // hack: set same height as text fields
name: 'username',
value: 'admin',
fieldLabel: gettext('username'),
allowBlank: false
},
{
xtype: me.create ? 'textfield' : 'displayfield',
height: 22, // hack: set same height as text fields
name: 'authsupported',
value: 'cephx;none',
fieldLabel: gettext('authsupported'),
allowBlank: false
},
];
me.column2 = [
{
xtype: 'pvecheckbox',
name: 'enable',
checked: true,
uncheckedValue: 0,
fieldLabel: gettext('Enable')
},
];
if (me.create || me.storageId !== 'local') {
me.column2.unshift({
xtype: 'PVE.form.NodeSelector',
name: 'nodes',
fieldLabel: gettext('Nodes'),
emptyText: gettext('All') + ' (' +
gettext('No restrictions') +')',
multiSelect: true,
autoSelect: false
});
}
me.callParent();
}
});
Ext.define('PVE.storage.RBDEdit', {
extend: 'PVE.window.Edit',
initComponent : function() {
var me = this;
me.create = !me.storageId;
if (me.create) {
me.url = '/api2/extjs/storage';
me.method = 'POST';
} else {
me.url = '/api2/extjs/storage/' + me.storageId;
me.method = 'PUT';
}
var ipanel = Ext.create('PVE.storage.RBDInputPanel', {
create: me.create,
storageId: me.storageId
});
Ext.apply(me, {
subject: 'RBD Storage',
isAdd: true,
items: [ ipanel ]
});
me.callParent();
if (!me.create) {
me.load({
success: function(response, options) {
var values = response.result.data;
if (values.nodes) {
values.nodes = values.nodes.split(',');
}
values.enable = values.disable ? 0 : 1;
ipanel.setValues(values);
}
});
}
}
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment