[pve-devel] applied: [PATCH widget-toolkit] Add hebrew to list of languages

2019-09-03 Thread Thomas Lamprecht
On 23.08.19 11:30, Dominic Jäger wrote: > Signed-off-by: Dominic Jäger > --- > Tested on PVE and PMG. > > Utils.js | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/Utils.js b/Utils.js > index 9b62bf6..533272d 100644 > --- a/Utils.js > +++ b/Utils.js > @@ -76,7 +76,8 @@

Re: [pve-devel] [PATCH v2 storage 1/2] fix #2216: Allow .img files in 'iso' type storages

2019-09-03 Thread Thomas Lamprecht
On 22.08.19 14:39, Stefan Reiter wrote: > To maintain full (backwards) compatibility, leave the type name as > 'iso' - this makes this patch work without changing every consumer of > storage APIs. > > Note that currently these files can only be attached as a CDROM/DVD > drive, so USB-only images c

[pve-devel] applied: [PATCH v2 manager 2/2] Show supported file types in upload file selector

2019-09-03 Thread Thomas Lamprecht
On 22.08.19 14:39, Stefan Reiter wrote: > By default, all file types are shown, but the user now has the option of > filtering only by supported types in the file selector dialog. > > Signed-off-by: Stefan Reiter > Acked-by: Dominik Csapak > --- > > I found it weird too, but also couldn't find

Re: [pve-devel] applied: [PATCH v2 manager 2/2] Show supported file types in upload file selector

2019-09-03 Thread Stefan Reiter
On 9/3/19 9:53 AM, Thomas Lamprecht wrote: On 22.08.19 14:39, Stefan Reiter wrote: By default, all file types are shown, but the user now has the option of filtering only by supported types in the file selector dialog. Signed-off-by: Stefan Reiter Acked-by: Dominik Csapak --- I found it weir

[pve-devel] [PATCH ifupdown2] add patch to add arp-accept option

2019-09-03 Thread Alexandre Derumier
needed for bgp-evpn upstream pull request: https://github.com/CumulusNetworks/ifupdown2/pull/121 Signed-off-by: Alexandre Derumier --- .../pve/0009-add-arp-accept-option.patch | 55 +++ debian/patches/series | 1 + 2 files changed, 56 insertions(+)

[pve-devel] [PATCH storage v2] Fix #2346: rbd storage shows wrong %-usage

2019-09-03 Thread Alwin Antreich
The patch uses the value from the field 'stored' if it is available. In Ceph 14.2.2 the storage calculation changed to a per pool basis. This introduced an additional field 'stored' that holds the amount of data that has been written to the pool. While the field 'used' now has the data after repli

Re: [pve-devel] applied: [PATCH v2 manager 2/2] Show supported file types in upload file selector

2019-09-03 Thread Thomas Lamprecht
On 03.09.19 10:06, Stefan Reiter wrote: > On 9/3/19 9:53 AM, Thomas Lamprecht wrote: >> On 22.08.19 14:39, Stefan Reiter wrote: >>> By default, all file types are shown, but the user now has the option of >>> filtering only by supported types in the file selector dialog. >>> >>> Signed-off-by: Stef

[pve-devel] applied: [PATCH storage v2] Fix #2346: rbd storage shows wrong %-usage

2019-09-03 Thread Thomas Lamprecht
On 03.09.19 10:13, Alwin Antreich wrote: > The patch uses the value from the field 'stored' if it is available. > > In Ceph 14.2.2 the storage calculation changed to a per pool basis. This > introduced an additional field 'stored' that holds the amount of data > that has been written to the pool.

Re: [pve-devel] applied-series: [PATCH v2 pve-network 00/13] pve-network improvements

2019-09-03 Thread Alexandre DERUMIER
Hi, >>I updated the mirror to current master, and pushed out the frr-7.1 frr-7.0.1 >>and frr-6.0.3 tags, so ideally we'd update it to 7.1 if you say that's >>working >>good for this. I have found a bug in 7.1 tag release, It's currently fixed in the stable/7.1 branch https://github.com/FRRou

[pve-devel] applied-series: [PATCH pve-manager 0/5] sdn apis endpoint

2019-09-03 Thread Thomas Lamprecht
On 21.08.19 05:22, Alexandre Derumier wrote: > Based on my last pve-manager series from June. > > changelog: > add new api to retrieve status of transportzone && vnets on local node applied, thanks! Should be soon in a bumped package. > > Alexandre Derumier (5): > api2 : cluster: add sdn api

Re: [pve-devel] applied-series: [PATCH v2 pve-network 00/13] pve-network improvements

2019-09-03 Thread Thomas Lamprecht
On 03.09.19 10:42, Alexandre DERUMIER wrote: >>> I updated the mirror to current master, and pushed out the frr-7.1 >>> frr-7.0.1 >>> and frr-6.0.3 tags, so ideally we'd update it to 7.1 if you say that's >>> working >>> good for this. > > I have found a bug in 7.1 tag release, > It's current

[pve-devel] [PATCH pve-network 2/2] vxlan: add ip-forward|ip6-forward|arp-accept for routing

2019-09-03 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/Network/SDN/VxlanPlugin.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PVE/Network/SDN/VxlanPlugin.pm b/PVE/Network/SDN/VxlanPlugin.pm index ec1729c..733412e 100644 --- a/PVE/Network/SDN/VxlanPlugin.pm +++ b/PVE/Network/SDN/VxlanPlugin.pm @@ -1

[pve-devel] [PATCH pve-network 1/2] vxlan: add gateway-nodes option

2019-09-03 Thread Alexandre Derumier
Allow to define 1 or more gateway node, to route the traffic to the outside world import vrf is bugged in frr 7.1 works fine with current stable/7.1 branch https://github.com/FRRouting/frr/issues/4905 Signed-off-by: Alexandre Derumier --- PVE/Network/SDN/VxlanPlugin.pm | 56

[pve-devel] [PATCH pve-network 0/2] vxlan bgp-evpn : add gateway-nodes options

2019-09-03 Thread Alexandre Derumier
Add a gateway-nodes options to define exit nodes to outside work also add sysctl forwarding option to network interfaces Alexandre Derumier (2): vxlan: add gateway-nodes option vxlan: add ip-forward|ip6-forward|arp-accept for routing PVE/Network/SDN/VxlanPlugin.pm | 59 ++

[pve-devel] [PATCH manager v2] Close #2262: Add noVNC scale setting

2019-09-03 Thread Dominic Jäger
Add a setting to choose the scale mode of the noVNC pop-up as well as the embedded console in the content panel to "My Settings". Having both set to local scaling was the most important use-case for the users. One setting for both places is the simplest solution making this possible. The new secti

[pve-devel] [PATCH common] add postinst hook to fix /etc/aliases whitespace error

2019-09-03 Thread Thomas Lamprecht
This was wrongly shipped by our ISO since quite a bit (AFAICT, at least 4.x), so fix it up in a versioned postinst snippet. Do so by usind sed with the following pattern: # sed -E -i -e 's/^www:(\w)/www: \1/' /etc/aliases proposed by Musee Ullah[0]. It even catches a bit more than exactly our mis

[pve-devel] applied-series: [PATCH pve-network 0/2] vxlan bgp-evpn : add gateway-nodes options

2019-09-03 Thread Thomas Lamprecht
On 03.09.19 11:14, Alexandre Derumier wrote: > Add a gateway-nodes options to define exit nodes to outside work > also add sysctl forwarding option to network interfaces applied series, thanks! > > Alexandre Derumier (2): > vxlan: add gateway-nodes option > vxlan: add ip-forward|ip6-forward|

Re: [pve-devel] [PATCH qemu-server 1/1] Add support for up to 10 PCI(e) devices

2019-09-03 Thread Dominik Csapak
this breaks live migration of vms with q35 (without passthrough) we should be able to add those rootports on demand (if a 'hostpciX' exists, for X >= 4) via qemu commandline i do not really want to extend the default setup to include that many root ports (should do no harm really, but is

[pve-devel] [PATCH pve-network] don't regenerate frr config if no router is defined

2019-09-03 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/Network/SDN.pm | 2 ++ test/generateconfig.pl | 8 +--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/PVE/Network/SDN.pm b/PVE/Network/SDN.pm index 1e89d97..1d84a32 100644 --- a/PVE/Network/SDN.pm +++ b/PVE/Network/SDN.pm @@ -195,

[pve-devel] [PATCH pve-manager] api2: network reload: add frr config generation and reload

2019-09-03 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/API2/Network.pm | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/PVE/API2/Network.pm b/PVE/API2/Network.pm index 07c3e6d3..d50a808d 100644 --- a/PVE/API2/Network.pm +++ b/PVE/API2/Network.pm @@ -561,8 +561,10 @@ __PACKAGE__->regi

Re: [pve-devel] [PATCH qemu-server] fix #1934: add qemu fw_cfg variables via 'tags'

2019-09-03 Thread Dominik Csapak
On 9/2/19 2:14 PM, Fabian Grünbichler wrote: On August 23, 2019 2:03 pm, Dominik Csapak wrote: this add the 'tags' property to vms, which has the format: why 'tags'? seems rather generic for what it does ;) because the request in the bugreport was a more general one (users wanted to simply s

Re: [pve-devel] [PATCH qemu-server] fix #1934: add qemu fw_cfg variables via 'tags'

2019-09-03 Thread Dominik Csapak
On 9/2/19 2:27 PM, Thomas Lamprecht wrote: On 9/2/19 2:14 PM, Fabian Grünbichler wrote: On August 23, 2019 2:03 pm, Dominik Csapak wrote: this add the 'tags' property to vms, which has the format: why 'tags'? seems rather generic for what it does ;) Second, tags is a NAK from me. Maybe just