[pve-devel] [PATCH V6 pve-manager 2/2] cleanup: "var" to "let", fix some indentation in related files

2022-09-30 Thread Stefan Hrdlicka
Signed-off-by: Stefan Hrdlicka --- www/manager6/storage/Base.js| 10 +- www/manager6/storage/IScsiEdit.js | 6 +++--- www/manager6/storage/LVMEdit.js | 14 +++--- www/manager6/storage/LvmThinEdit.js | 18 +- www/manager6/storage/ZFSPoolEdit.js | 23

[pve-devel] [PATCH V6 pve-manager 1/2] fix #2822: add iscsi, lvm, lvmthin & zfs storage for all cluster nodes

2022-09-30 Thread Stefan Hrdlicka
This adds a dropdown box for iSCSI, LVM, LVMThin & ZFS storage options where a cluster node needs to be chosen. As default the current node is selected. It restricts the the storage to be only availabe on the selected node. Signed-off-by: Stefan Hrdlicka --- www/manager6/Makefile

[pve-devel] [PATCH V6 pve-manager 0/2] fix #2822: add iscsi, lvm, lvmthin & zfs

2022-09-30 Thread Stefan Hrdlicka
V1 -> V2: # pve-storage * removed because patch is not needed # pve-manager (1/3) * remove storage controller from V1 * added custom ComboBox with API URL & setNodeName function * added scan node selection for iSCSI * scan node selection field no longer send to server ## (optional) pve-manager

[pve-devel] [PATCH qemu] d/rules: add revision to package version

2022-09-30 Thread Fiona Ebner
This version string can be queried with $BINARY --version as well as the query-version QMP command. Useful for qemu-server to be able to report the running QEMU version exactly. Could also be used to version guard against features as an alternative to the query-proxmox-support QMP command.

Re: [pve-devel] [PATCH v6 qemu-server 2/6] mtunnel: add API endpoints

2022-09-30 Thread Stefan Hanreich
On 9/28/22 14:50, Fabian Grünbichler wrote: the following two endpoints are used for migration on the remote side POST /nodes/NODE/qemu/VMID/mtunnel which creates and locks an empty VM config, and spawns the main qmtunnel worker which binds to a VM-specific UNIX socket. this worker handles

Re: [pve-devel] [PATCH qemu-server 1/2] fix #4201: delete cloud-init disk on rollback

2022-09-30 Thread Mira Limbeck
On 9/30/22 10:21, Fiona Ebner wrote: Am 29.09.22 um 15:36 schrieb Mira Limbeck: If the config doesn't contain the cloud-init disk anymore after the rollback, we have to clean it up since otherwise no further disk can be attached unless the one still existing on the storage is deleted.

Re: [pve-devel] [PATCH qemu-server 2/2] reuse existing cloud-init disks

2022-09-30 Thread Fiona Ebner
Am 29.09.22 um 15:36 schrieb Mira Limbeck: > When a disk exists but is not referenced in the config, it will be > reused instead of dying during the attempt to allocate the disk. > > Signed-off-by: Mira Limbeck > --- > This patch is not required to fix the rollback code, but might be nice > to

Re: [pve-devel] [PATCH qemu-server 1/2] fix #4201: delete cloud-init disk on rollback

2022-09-30 Thread Fiona Ebner
Am 29.09.22 um 15:36 schrieb Mira Limbeck: > If the config doesn't contain the cloud-init disk anymore after the > rollback, we have to clean it up since otherwise no further disk can be > attached unless the one still existing on the storage is deleted. > > Signed-off-by: Mira Limbeck > --- >