Re: [pve-devel] AMD EPYC

2017-11-03 Thread Waschbüsch IT-Services GmbH
Hi Martin, The system is up and running now. Is IP Adress and user/pw for ssh and proxmox UI enough? You could also have access to the IPMI based console of the box (if you promise not to break anything) ;-) Martin > Am 09.10.2017 um 10:59 schrieb Martin Maurer : > > Hi, > > yes, sounds inte

[pve-devel] [PATCH qemu-server] include format for efidisk

2017-11-03 Thread Dominik Csapak
if the efidisk is in 'raw' format, qemu will prevent writes on block zero if the format is not explicitely given Signed-off-by: Dominik Csapak --- PVE/QemuServer.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 896089f..e7af970

[pve-devel] [PATCH manager] add %USED calculation for pre luminous clusters

2017-11-03 Thread Alwin Antreich
Signed-off-by: Alwin Antreich --- PVE/API2/Ceph.pm | 12 1 file changed, 12 insertions(+) diff --git a/PVE/API2/Ceph.pm b/PVE/API2/Ceph.pm index efea3059..a0260fe2 100644 --- a/PVE/API2/Ceph.pm +++ b/PVE/API2/Ceph.pm @@ -1522,6 +1522,18 @@ __PACKAGE__->register_method ({

[pve-devel] [PATCH manager v4 1/8] add status to node stats

2017-11-03 Thread Dominik Csapak
by default it is unknown, if it is a standalone node its online else it is either 'online' or 'offline' depending on the corosync status Signed-off-by: Dominik Csapak --- PVE/API2Tools.pm | 7 +++ 1 file changed, 7 insertions(+) diff --git a/PVE/API2Tools.pm b/PVE/API2Tools.pm index 9bd4e49

[pve-devel] [PATCH manager v4 4/8] add a new status column in the resourcestore

2017-11-03 Thread Dominik Csapak
Signed-off-by: Dominik Csapak --- www/manager6/data/ResourceStore.js | 7 +++ 1 file changed, 7 insertions(+) diff --git a/www/manager6/data/ResourceStore.js b/www/manager6/data/ResourceStore.js index d17cffc0..ccf085e3 100644 --- a/www/manager6/data/ResourceStore.js +++ b/www/manager6/data

[pve-devel] [PATCH manager v4 0/8] improve tree icons

2017-11-03 Thread Dominik Csapak
this series aims to give better feedback with the tree icons to the user especially in regard to corosync online/offline and rrdstats changes since v3: * add info if storage is (near)full * if we have information, the status is now 'available' instead of '' * new css classes for (neaf)full stor

[pve-devel] [PATCH manager v4 2/8] include a 'status' field for storages

2017-11-03 Thread Dominik Csapak
by default it is unknown, if the storage is >= 60% full, it is 'nearfull', if it is >= 90% full, it is 'full' if we have any other information, it is 'available' we can use this information for the tree Signed-off-by: Dominik Csapak --- changes since v3: * return either 'full', 'nearfull', 'av

[pve-devel] [PATCH manager v4 8/8] remove unecessary semicolons

2017-11-03 Thread Dominik Csapak
Signed-off-by: Dominik Csapak --- new in v4 PVE/API2Tools.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PVE/API2Tools.pm b/PVE/API2Tools.pm index 67f36723..f1df2384 100644 --- a/PVE/API2Tools.pm +++ b/PVE/API2Tools.pm @@ -109,7 +109,7 @@ sub extract_vm_stats { };

[pve-devel] [PATCH manager v4 7/8] whitespace cleanup

2017-11-03 Thread Dominik Csapak
Signed-off-by: Dominik Csapak --- www/manager6/tree/ResourceTree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/tree/ResourceTree.js b/www/manager6/tree/ResourceTree.js index f6422beb..a4eb18ff 100644 --- a/www/manager6/tree/ResourceTree.js +++ b/www/manager6

[pve-devel] [PATCH manager v4 5/8] add new tree and grid classes for the 'unknown' status

2017-11-03 Thread Dominik Csapak
this displays a '?' similar to the check/cross, to show something is wrong, but we do not know if its offline also cleanup the classes a bit, so we do not have to have so many different ones Signed-off-by: Dominik Csapak --- changes since v3: * also add an icon for 'nearfull' and 'full' www/css

[pve-devel] [PATCH manager v4 3/8] add default 'unknown' status for vms and containers

2017-11-03 Thread Dominik Csapak
Signed-off-by: Dominik Csapak --- PVE/API2Tools.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/API2Tools.pm b/PVE/API2Tools.pm index 7e0fdf47..67f36723 100644 --- a/PVE/API2Tools.pm +++ b/PVE/API2Tools.pm @@ -68,6 +68,7 @@ sub extract_vm_stats { vmid => $vmid + 0, nod

[pve-devel] [PATCH manager v4 6/8] improve tree/grid icons

2017-11-03 Thread Dominik Csapak
we improve the icons in the tree and the resource grid by differentiating between cluster online/offline status and no rrd data when we have no rrd data from a node/storage, instead of showing a red x (which is scary) even if the node is reachable by corosync (which confused quite a bit of people,