add node data to instances
This commit is contained in:
parent
5121060671
commit
a10a8a4ddc
@ -14,8 +14,19 @@ async function init () {
|
||||
let instanceContainer = document.getElementById("instance-container")
|
||||
|
||||
for (let i = 0; i < nodes.data.length; i++) {
|
||||
let qemu = await request(`/nodes/${nodes.data[i].node}/qemu`, "GET");
|
||||
let lxc = await request(`/nodes/${nodes.data[i].node}/lxc`, "GET");
|
||||
let nodeName = nodes.data[i].node;
|
||||
let nodeStatus = nodes.data[i].status;
|
||||
|
||||
let qemu = await request(`/nodes/${nodeName}/qemu`, "GET");
|
||||
qemu.data.forEach((item) => {
|
||||
item.node.name = nodeName;
|
||||
item.node.status = nodeStatus;
|
||||
});
|
||||
let lxc = await request(`/nodes/${nodeName}/lxc`, "GET");
|
||||
lxc.data.forEach((item) => {
|
||||
item.node.name = nodeName;
|
||||
item.node.status = nodeStatus;
|
||||
});
|
||||
instances = instances.concat(qemu.data, lxc.data);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user