[pve-devel] applied-series: [PATCH v2 vncterm 1/2] libvncserver: update sources to 0.9.13

2020-07-15 Thread Thomas Lamprecht
On 14.07.20 13:28, Fabian Grünbichler wrote: > Signed-off-by: Fabian Grünbichler > --- > LibVNCServer-0.9.11.tar.gz | Bin 1413739 -> 0 bytes > LibVNCServer-0.9.13.tar.gz | Bin 0 -> 567491 bytes > 2 files changed, 0 insertions(+), 0 deletions(-) > delete mode 100644 LibVNCServer-0.9.11.tar.gz >

[pve-devel] [PATCH v2 pve-network 00/10] sdn : add subnets management

2020-07-15 Thread Alexandre Derumier
This patch series add basic subnets managements. Subnets will be use for multiple things: - defined gateway ip on vnets - enable snat on a subnet - add cloudnit|dhcp default network configs (gateway, static routes, nameservers,searchdomain,) - add ipam management. (ip registrations to extern

[pve-devel] [PATCH v2 pve-network 06/10] vnets: subnets: use cidr

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/Network/SDN/SubnetPlugin.pm | 3 ++- PVE/Network/SDN/VnetPlugin.pm | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/PVE/Network/SDN/SubnetPlugin.pm b/PVE/Network/SDN/SubnetPlugin.pm index 1b790a6..c555314 100644 --- a/PVE/Network/

[pve-devel] [PATCH v2 pve-network 07/10] subnet: fix on_delete_hook

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/Network/SDN/SubnetPlugin.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PVE/Network/SDN/SubnetPlugin.pm b/PVE/Network/SDN/SubnetPlugin.pm index c555314..ea47684 100644 --- a/PVE/Network/SDN/SubnetPlugin.pm +++ b/PVE/Network/S

[pve-devel] [PATCH v2 pve-network 02/10] vnets: add subnets

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/Network/SDN/VnetPlugin.pm | 22 ++ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/PVE/Network/SDN/VnetPlugin.pm b/PVE/Network/SDN/VnetPlugin.pm index 384358c..47ca50b 100644 --- a/PVE/Network/SDN/VnetPlugin.pm +++ b/PV

[pve-devel] [PATCH v2 pve-network 03/10] add subnets verifications hooks

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/API2/Network/SDN/Subnets.pm | 5 - PVE/API2/Network/SDN/Vnets.pm | 9 +++-- PVE/Network/SDN/SubnetPlugin.pm | 15 +++ PVE/Network/SDN/VnetPlugin.pm | 8 +--- 4 files changed, 31 insertions(+), 6 deletions(-) diff --git a/PV

[pve-devel] [PATCH v2 pve-network 09/10] api2: increase version on apply/reload only

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/API2/Network/SDN.pm | 3 +++ PVE/API2/Network/SDN/Controllers.pm | 6 -- PVE/API2/Network/SDN/Subnets.pm | 3 --- PVE/API2/Network/SDN/Vnets.pm | 3 --- PVE/API2/Network/SDN/Zones.pm | 6 -- 5 files changed, 3 insertion

[pve-devel] [PATCH v2 pve-network 08/10] api2: subnet create: convert cidr to subnetid

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/API2/Network/SDN/Subnets.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PVE/API2/Network/SDN/Subnets.pm b/PVE/API2/Network/SDN/Subnets.pm index 3ef1d11..d18cf90 100644 --- a/PVE/API2/Network/SDN/Subnets.pm +++ b/PVE/API2/Network

[pve-devel] [PATCH v2 pve-network 05/10] zone: add vnet_update_hook

2020-07-15 Thread Alexandre Derumier
move verify_tag code in this hook add mac address generation for simple && evpn plugin Signed-off-by: Alexandre Derumier --- PVE/API2/Network/SDN/Vnets.pm | 4 ++-- PVE/Network/SDN/Zones/EvpnPlugin.pm | 19 +++ PVE/Network/SDN/Zones/Plugin.pm | 5 +++-- PVE/Netw

[pve-devel] [PATCH v2 pve-network 01/10] add subnet plugin

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/API2/Network/SDN.pm | 7 + PVE/API2/Network/SDN/Makefile | 2 +- PVE/API2/Network/SDN/Subnets.pm | 219 PVE/Network/SDN/Makefile| 2 +- PVE/Network/SDN/SubnetPlugin.pm | 115 + PVE/N

[pve-devel] [PATCH v2 pve-network 10/10] add ipams plugins

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/API2/Network/SDN.pm| 7 + PVE/API2/Network/SDN/Ipams.pm | 241 + PVE/API2/Network/SDN/Makefile | 2 +- PVE/API2/Network/SDN/Subnets.pm| 47 - PVE/Network/SDN/Ipams.pm

[pve-devel] [PATCH v2 pve-network 04/10] zones: simple|evpn: add gateway ip from subnets to vnet

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- PVE/Network/SDN/Zones.pm | 4 +++- PVE/Network/SDN/Zones/EvpnPlugin.pm | 11 --- PVE/Network/SDN/Zones/Plugin.pm | 2 +- PVE/Network/SDN/Zones/QinQPlugin.pm | 2 +- PVE/Network/SDN/Zones/SimplePlugin.pm | 11 --- PVE/

[pve-devel] [PATCH v2 pve-manager 2/3] add sdn subnets

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- www/manager6/Makefile | 2 + www/manager6/dc/Config.js | 8 +++ www/manager6/sdn/SubnetEdit.js | 95 + www/manager6/sdn/SubnetView.js | 107 + 4 files changed, 212 insertions(+) c

[pve-devel] [PATCH v2 pve-manager 1/3] sdn: vnetedit: add subnets && remove ip/mac

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- www/manager6/sdn/VnetEdit.js | 29 +++-- www/manager6/sdn/VnetView.js | 18 +++--- 2 files changed, 6 insertions(+), 41 deletions(-) diff --git a/www/manager6/sdn/VnetEdit.js b/www/manager6/sdn/VnetEdit.js index aa40b41f..

[pve-devel] [PATCH v2 pve-cluster 1/2] add sdn/subnets.cfg

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- data/PVE/Cluster.pm | 1 + data/src/status.c | 1 + 2 files changed, 2 insertions(+) diff --git a/data/PVE/Cluster.pm b/data/PVE/Cluster.pm index 210ea85..42f5f9f 100644 --- a/data/PVE/Cluster.pm +++ b/data/PVE/Cluster.pm @@ -69,6 +69,7 @@ my $observed = {

[pve-devel] [PATCH v2 pve-cluster 0/2] sdn : add subnets management

2020-07-15 Thread Alexandre Derumier
Following pve-network Changelogv2: - add sdn/ipams.cfg Alexandre Derumier (2): add sdn/subnets.cfg add sdn/ipams.cfg data/PVE/Cluster.pm | 2 ++ data/src/status.c | 2 ++ 2 files changed, 4 insertions(+) -- 2.20.1 ___ pve-devel mailing list

[pve-devel] [PATCH v2 pve-cluster 2/2] add sdn/ipams.cfg

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- data/PVE/Cluster.pm | 1 + data/src/status.c | 1 + 2 files changed, 2 insertions(+) diff --git a/data/PVE/Cluster.pm b/data/PVE/Cluster.pm index 42f5f9f..434bff8 100644 --- a/data/PVE/Cluster.pm +++ b/data/PVE/Cluster.pm @@ -70,6 +70,7 @@ my $observed = {

[pve-devel] [PATCH v2 pve-manager 0/3] sdn : add subnets management

2020-07-15 Thread Alexandre Derumier
Following pve-network Changelogv2: - add ipams gui Alexandre Derumier (3): sdn: vnetedit: add subnets && remove ip/mac add sdn subnets add sdn ipams www/manager6/Makefile | 7 ++ www/manager6/Utils.js | 25 + www/manager6/dc/Config.js |

[pve-devel] [PATCH v2 pve-manager 3/3] add sdn ipams

2020-07-15 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier --- www/manager6/Makefile | 5 + www/manager6/Utils.js | 25 + www/manager6/dc/Config.js | 8 ++ www/manager6/form/SDNIpamSelector.js | 52 ++ www/manager6/sdn/IpamView.js | 131 +

Re: [pve-devel] [PATCH pve-network 0/9] sdn : add subnets management

2020-07-15 Thread Alexandre DERUMIER
>>great! I'll see if I can look at this soon - if something has priority or >>if it stops you from continuing just ping me, I can try to give it some >>priority then, thanks! thanks thomas, nothing blocking for now, as I'm still working on the foundations in pve-network. Maybe later I'll try

[pve-devel] [PATCH pve-docs 1/3] Fix typos and wording

2020-07-15 Thread Dylan Whyte
Update some lines to fix spelling and grammatical errors Signed-off-by: Dylan Whyte --- certificate-management.adoc | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/certificate-management.adoc b/certificate-management.adoc index ce9081d..00633a1 100644 --- a/certificat

[pve-devel] [PATCH pve-docs 2/3] ha-manager: fix typos and grammatical errors; improve wording

2020-07-15 Thread Dylan Whyte
This patch improves the English throughout the "High Availability" documentation. It mostly consists of small typo and grammar fixes, but also contains rewording of some sections for the sake of readability. Signed-off-by: Dylan Whyte --- ha-manager.adoc | 215 ---

[pve-devel] [PATCH pve-docs 3/3] README: fix grammatical error

2020-07-15 Thread Dylan Whyte
Fixes a grammatical error on line 143 of the README adoc Signed-off-by: Dylan Whyte --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 754ca1e..2f84ddf 100644 --- a/README.adoc +++ b/README.adoc @@ -143,7 +143,7 @@ Bulleted lists s

Re: [pve-devel] [PATCH pve-docs 2/3] ha-manager: fix typos and grammatical errors; improve wording

2020-07-15 Thread Oguz Bektas
hi, thanks for the patch! some comments inline other than that lgtm On Wed, Jul 15, 2020 at 04:28:10PM +0200, Dylan Whyte wrote: > This patch improves the English throughout the "High Availability" > documentation. > It mostly consists of small typo and grammar fixes, but also contains > rew

Re: [pve-devel] [PATCH pve-docs 3/3] README: fix grammatical error

2020-07-15 Thread Oguz Bektas
lgtm :) On Wed, Jul 15, 2020 at 04:29:33PM +0200, Dylan Whyte wrote: > Fixes a grammatical error on line 143 of the README adoc > > Signed-off-by: Dylan Whyte > --- > README.adoc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/README.adoc b/README.adoc > index 754ca1e

Re: [pve-devel] [PATCH pve-docs 1/3] Fix typos and wording

2020-07-15 Thread Oguz Bektas
lgtm On Wed, Jul 15, 2020 at 04:26:06PM +0200, Dylan Whyte wrote: > Update some lines to fix spelling and grammatical errors > > Signed-off-by: Dylan Whyte > --- > certificate-management.adoc | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/certificate-managemen

Re: [pve-devel] [PATCH pve-docs 2/3] ha-manager: fix typos and grammatical errors; improve wording

2020-07-15 Thread Thomas Lamprecht
On 15.07.20 17:07, Oguz Bektas wrote: >> +Last but not least, you can also manually move resources to other nodes, >> before > better without comma s/nodes,/nodes/ would that be wrong then, the comma is OK here, AFAICT. ___ pve-devel mailing list pve-

Re: [pve-devel] [PATCH pve-docs 1/3] Fix typos and wording

2020-07-15 Thread Thomas Lamprecht
On 15.07.20 16:26, Dylan Whyte wrote: > Update some lines to fix spelling and grammatical errors > > Signed-off-by: Dylan Whyte > --- > certificate-management.adoc | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/certificate-management.adoc b/certificate-manageme

[pve-devel] applied: [PATCH pve-docs 3/3] README: fix grammatical error

2020-07-15 Thread Thomas Lamprecht
On 15.07.20 16:29, Dylan Whyte wrote: > Fixes a grammatical error on line 143 of the README adoc > > Signed-off-by: Dylan Whyte > --- > README.adoc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > applied, thanks! ___ pve-devel mailing l

[pve-devel] applied: [PATCH pve-docs 1/3] Fix typos and wording

2020-07-15 Thread Thomas Lamprecht
On 15.07.20 16:26, Dylan Whyte wrote: > Update some lines to fix spelling and grammatical errors > > Signed-off-by: Dylan Whyte > --- > certificate-management.adoc | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > applied, thanks! ___

[pve-devel] Regression in ifupdown2 with templates ?

2020-07-15 Thread Daniel Berteaud
Hi there. I'm running a 5 nodes PVE6 cluster, and I'm using ifupdown2 templating features to create vxlan overlays between my nodes (setup this before the SDN feature went live). Here's a snippet of my /etc/network/interfaces : %for i in range(1, 6): %for v in range(0, 21): auto vxlan${i*10