[pve-devel] applied: [PATCH qemu-server 1/1] allow virtio-scsi + iothread controller hot-unplug

2018-02-22 Thread Thomas Lamprecht
applied, as the fix was backported to v2.9.1 (virtio-scsi: Unset hotplug handler when unrealize) On 2/21/18 11:28 AM, Alexandre Derumier wrote: > --- > PVE/QemuServer.pm | 4 > 1 file changed, 4 deletions(-) > > diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm > index 53da454..fb36584

[pve-devel] applied: [PATCH manager v2] tree: prepare for ExtJS 6.2.0

2018-02-22 Thread Dominik Csapak
applied and added to the commit message: we fired the refresh to late for the store, i moved it up to fire directly after we resume events on the store, i.e. when our store update window is closed again. So it happens before applying the state and expanding the rootnode. and a link to

[pve-devel] applied: [PATCH qemu-server] control: depend on newest pve-qemu-kvm

2018-02-22 Thread Thomas Lamprecht
applied fixed up version, as this was forgotten and we had a qemu bump since then. Depends now on 2.9.1-9 On 2/16/18 3:23 PM, Thomas Lamprecht wrote: > The NBD drive mirror workaround requires this, also the new -IBRS > machine types are only available in the newer qemu versions > >

[pve-devel] applied: [PATCH widget-toolkit] skip config property for cbind mixin

2018-02-22 Thread Thomas Lamprecht
applied On 2/20/18 9:48 AM, Dominik Csapak wrote: > if we use a component with cbind in a static declaration, > we do not want to traverse the 'config' property, as this can lead > to properties of base classes which produce errors on copying > > Signed-off-by: Dominik Csapak

[pve-devel] [PATCH manager v2 5/5] ui: declarative LXC Create

2018-02-22 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- www/manager6/lxc/CreateWizard.js | 582 +++ 1 file changed, 285 insertions(+), 297 deletions(-) diff --git a/www/manager6/lxc/CreateWizard.js b/www/manager6/lxc/CreateWizard.js index

[pve-devel] [PATCH manager v2 3/5] ui: lxc/Network: set empty datachache by default when in wizard

2018-02-22 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- www/manager6/lxc/CreateWizard.js | 1 - www/manager6/lxc/Network.js | 11 ++- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/www/manager6/lxc/CreateWizard.js b/www/manager6/lxc/CreateWizard.js index

[pve-devel] [PATCH manager v2 1/5] ui: move loadSSHKeyFromFile from lxc/Create to Utils

2018-02-22 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- www/manager6/Utils.js| 19 +++ www/manager6/lxc/CreateWizard.js | 25 ++--- 2 files changed, 25 insertions(+), 19 deletions(-) diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js

[pve-devel] [PATCH manager v2 2/5] ui: FileSelector: add setNodename to allow data binding

2018-02-22 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- www/manager6/form/FileSelector.js | 4 1 file changed, 4 insertions(+) diff --git a/www/manager6/form/FileSelector.js b/www/manager6/form/FileSelector.js index 9afbf821..3dc50720 100644 --- a/www/manager6/form/FileSelector.js

[pve-devel] [PATCH manager v2 0/5] make lxc Create Wizard declarative

2018-02-22 Thread Thomas Lamprecht
Thanks for the previous Review Dominik! This is v2, mainly splitted up and fixed the s/uo/up/ typo. The password vtype is orthogonal to this change and can be done later one, needs to be in another patch anyway so do the change to declarative now rather to spare me another test cycle. :) cheers,

[pve-devel] [PATCH manager v2 4/5] ui: MPEdit: add setUnprivileged to allow data binding

2018-02-22 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- www/manager6/lxc/MPEdit.js | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/www/manager6/lxc/MPEdit.js b/www/manager6/lxc/MPEdit.js index 827869e8..079b8ddc 100644 --- a/www/manager6/lxc/MPEdit.js +++

[pve-devel] [PATCH manager v2 2/3] add icons to summaries and improve spacing

2018-02-22 Thread Dominik Csapak
also add a helper css class to use the png icons like fontawesome icons and add the ha state to template summary Signed-off-by: Dominik Csapak --- changes from v1: * do not add ha info to templates in this patch www/css/ext6-pve.css | 7 +++

Re: [pve-devel] [PATCH manager] show guest-agent provided ip address in qemu summary

2018-02-22 Thread Thomas Lamprecht
On 2/20/18 1:38 PM, Dominik Csapak wrote: > this adds a new component 'AgentIPView' which > uses the qemu-agent api call to tries to get the ip information for > the guests > > only for vms at the moment, since for containers you already > set it on their network tab > > Signed-off-by: Dominik

[pve-devel] [PATCH manager v2 3/3] add ha info to the template summary

2018-02-22 Thread Dominik Csapak
Signed-off-by: Dominik Csapak --- new in v2 www/manager6/panel/TemplateStatusView.js | 8 1 file changed, 8 insertions(+) diff --git a/www/manager6/panel/TemplateStatusView.js b/www/manager6/panel/TemplateStatusView.js index c665af0f..6f456099 100644 ---

[pve-devel] [PATCH manager v2 1/3] add optional icon to InfoWidget

2018-02-22 Thread Dominik Csapak
Signed-off-by: Dominik Csapak --- www/manager6/panel/InfoWidget.js | 17 +++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/www/manager6/panel/InfoWidget.js b/www/manager6/panel/InfoWidget.js index fe1f87d3..829ee112 100644 ---

[pve-devel] applied: [PATCH manager v2 1/3] add optional icon to InfoWidget

2018-02-22 Thread Thomas Lamprecht
applied On 2/22/18 2:32 PM, Dominik Csapak wrote: > Signed-off-by: Dominik Csapak > --- > www/manager6/panel/InfoWidget.js | 17 +++-- > 1 file changed, 15 insertions(+), 2 deletions(-) > > diff --git a/www/manager6/panel/InfoWidget.js >

[pve-devel] applied: [PATCH qemu-server] Fix typo

2018-02-22 Thread Thomas Lamprecht
thanks applied, changed commit message title to: migrate: task log: fix typo On 2/21/18 9:59 AM, Herman van Rink wrote: > From: Herman van Rink > > Signed-off-by: Herman van Rink > --- > PVE/QemuMigrate.pm | 2 +- > 1 file changed, 1 insertion(+), 1

Re: [pve-devel] [PATCH manager 2/7] let cluster dashboard use full browser width

2018-02-22 Thread Thomas Lamprecht
On 2/20/18 1:41 PM, Dominik Csapak wrote: > use one/two column layout instead of hardcoding width for the panels > also optimize padding values I'll get a slight visual glitch in the Cluster Dashboard with this: https://i.imgur.com/mQXY4mY.png > > Signed-off-by: Dominik Csapak

Re: [pve-devel] [PATCH manager] ui: declarative LXC Create

2018-02-22 Thread Dominik Csapak
general nitpick: i would like to have more commits from this (e.g. the move of loadSSHKeyFrom to Utils, the dataCache check move, etc.) further comments inline On 02/21/2018 04:45 PM, Thomas Lamprecht wrote: add setNodename method to FileSelector and a setUnprivileged to MPEdit, this allows

Re: [pve-devel] ZFS alternatives

2018-02-22 Thread Alexander Schmid
ext4 on mdraid would be really nice alternative proven to work for decades now and small footprint Yes! EXT4 for are very stable, but leak something advanced tools such as compression, dedup and RAID... Well AFAIK, the ext4 doesn't has this features... Perhaps am I wrong? mdadm will do

Re: [pve-devel] ZFS alternatives

2018-02-22 Thread Dietmar Maurer
> I have here a bounce of friends complain about ZFS, which is a memory eater > - and killer! > So, I wonder if Proxmox consider others alternatives, like BRTFS or > whatever. Yes, but there are still concerns about btrfs stability ... And btrfs is really slow in some scenarios (dpkg).

Re: [pve-devel] ZFS alternatives

2018-02-22 Thread Alexander Schmid
ext4 on mdraid would be really nice alternative proven to work for decades now and small footprint Am 22.02.2018 um 17:55 schrieb Dietmar Maurer: I have here a bounce of friends complain about ZFS, which is a memory eater - and killer! So, I wonder if Proxmox consider others alternatives,

[pve-devel] [PATCH v2 qemu-server] restore: implement rate limiting

2018-02-22 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller --- Changes (addressed comments from dominik): * bwlimit is now an integer, now sure if this is really better, but sub-kB/s accuracy seems rather useless here * handle undef when going through storage limits PVE/API2/Qemu.pm | 11

[pve-devel] applied: [PATCH docs 1/2] export and respect SOURCE_DATE_EPOCH

2018-02-22 Thread Wolfgang Bumiller
applied both patches On Tue, Feb 20, 2018 at 11:10:24AM +0100, Fabian Grünbichler wrote: > to improve reproducibility of pve-docs, pve-doc-generator and > pve-doc-mediawiki builds, as well as man pages generated by > pve-doc-generator when called via dpkg-buildpackage. > > timestamps embedded in

[pve-devel] ZFS alternatives

2018-02-22 Thread Gilberto Nunes
Hi I have here a bounce of friends complain about ZFS, which is a memory eater - and killer! So, I wonder if Proxmox consider others alternatives, like BRTFS or whatever. Best --- Gilberto Nunes Ferreira (47) 3025-5907 (47) 99676-7530 - Whatsapp / Telegram Skype: gilberto.nunes36

Re: [pve-devel] ZFS alternatives

2018-02-22 Thread Gilberto Nunes
>> Yes, but there are still concerns about btrfs stability There's a lot of world-wide company, such as Facebook, Synology and Rockstor, that are using BTRFS as default FS. I don't why is no stable right now. >> ext4 on mdraid would be really nice alternative >> proven to work for decades now

[pve-devel] applied: [PATCH v3 qemu-server 1/1] migrate cache-size : power of 2

2018-02-22 Thread Wolfgang Bumiller
applied, thanks On Tue, Feb 13, 2018 at 08:51:15AM +0100, Alexandre Derumier wrote: > qemu 2.11 need a power of 2 cache size. > > " > Parameter 'xbzrle_cache_size' expects is invalid, > it should be bigger than target page size and a power of two > " > > roundup to near power of 2 value > --- >

[pve-devel] applied: [PATCH manager v2 0/5] make lxc Create Wizard declarative

2018-02-22 Thread Dominik Csapak
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] Fwd: qm changes

2018-02-22 Thread Nicholas Schembri
Before I start, I love proxmox. This is a great product, and I use it everyday. I have some bash scripts that need to be converted into api calls. I'm hoping that someone would help me get started. I'm happy to do the work. qm is missing some features: qm migrate --online