mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
b6545bcec1
Gluster will be deprecated in the upcoming qemu version thus we need to replace the network protocol by something which will stay supported so that we can keep the tests around. Convert all cases referencing 'gluster' to 'nbd'. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
64 lines
1.1 KiB
JSON
64 lines
1.1 KiB
JSON
{
|
|
"node-name": "node-a-f",
|
|
"read-only": false,
|
|
"driver": "qcow",
|
|
"file": "node-a-s",
|
|
"backing": "node-b-f"
|
|
}
|
|
{
|
|
"driver": "file",
|
|
"filename": "/var/lib/libvirt/images/a",
|
|
"aio": "io_uring",
|
|
"node-name": "node-a-s",
|
|
"auto-read-only": true,
|
|
"discard": "unmap"
|
|
}
|
|
{
|
|
"node-name": "node-b-f",
|
|
"read-only": true,
|
|
"driver": "qed",
|
|
"file": "node-b-s",
|
|
"backing": "node-c-f"
|
|
}
|
|
{
|
|
"driver": "file",
|
|
"filename": "/var/lib/libvirt/images/b",
|
|
"aio": "io_uring",
|
|
"node-name": "node-b-s",
|
|
"auto-read-only": true,
|
|
"discard": "unmap"
|
|
}
|
|
{
|
|
"node-name": "node-c-f",
|
|
"read-only": true,
|
|
"driver": "vmdk",
|
|
"file": "node-c-s",
|
|
"backing": "node-d-f"
|
|
}
|
|
{
|
|
"driver": "nbd",
|
|
"server": {
|
|
"type": "inet",
|
|
"host": "test.org",
|
|
"port": "10809"
|
|
},
|
|
"export": "images/c",
|
|
"node-name": "node-c-s",
|
|
"auto-read-only": true,
|
|
"discard": "unmap"
|
|
}
|
|
{
|
|
"node-name": "node-d-f",
|
|
"read-only": true,
|
|
"driver": "raw",
|
|
"file": "node-d-s"
|
|
}
|
|
{
|
|
"driver": "file",
|
|
"filename": "/var/lib/libvirt/images/d",
|
|
"aio": "io_uring",
|
|
"node-name": "node-d-s",
|
|
"auto-read-only": true,
|
|
"discard": "unmap"
|
|
}
|