From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id A6464C1D0 for ; Thu, 14 Sep 2023 12:04:23 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 8C9E636F0C for ; Thu, 14 Sep 2023 12:03:53 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Thu, 14 Sep 2023 12:03:53 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id C980A472A2 for ; Thu, 14 Sep 2023 12:03:52 +0200 (CEST) From: Leo Nunner To: pve-devel@lists.proxmox.com Date: Thu, 14 Sep 2023 12:03:37 +0200 Message-Id: <20230914100341.122329-1-l.nunner@proxmox.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.140 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment POISEN_SPAM_PILL_3 0.1 random spam to be learned in bayes SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH WIP widget-toolkit/cluster/manager] Cluster-wide hosts config X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Sep 2023 10:04:23 -0000 This series introduces the ability to sync entries to the /etc/hosts file on all nodes in a cluster. The cluster-wide configuration is stored in /etc/pve/hosts. Synchronization is triggered manually. Information on the corresponding endpoints and functionality can be found in the corresponding commits. This series is still WIP, and probably needs some changes here and there. Especially the syncing mechanism is still a bit rough, and I didn't get around to testing it thoroughly. Most of it is derived from the SDN synchronization code, and might need some more adaptions. We might also want to change the paths of the API endpoints, since /cluster/hosts could be a bit confusing. proxmox-widget-toolkit: Leo Nunner (1): introduce abstractions for /etc/hosts view src/Makefile | 1 + src/node/HostsView.js | 329 ++++++++++++++++++++++++++++-------- src/panel/HostsEditPanel.js | 137 +++++++++++++++ 3 files changed, 401 insertions(+), 66 deletions(-) create mode 100644 src/panel/HostsEditPanel.js pve-cluster: Leo Nunner (1): hosts: add /etc/pve/hosts to watched files src/PVE/Cluster.pm | 1 + src/pmxcfs/status.c | 1 + 2 files changed, 2 insertions(+) pve-manager: Leo Nunner (2): api: endpoints for cluster-wide hosts config gui: configure cluster-wide hosts through gui PVE/API2/Cluster.pm | 6 + PVE/API2/Cluster/Hosts.pm | 208 ++++++++++++++++++++++++++++++ PVE/API2/Cluster/Makefile | 3 +- PVE/API2/Nodes.pm | 39 ++++++ PVE/Hosts.pm | 152 ++++++++++++++++++++++ PVE/Makefile | 1 + www/manager6/Makefile | 1 + www/manager6/dc/Config.js | 6 + www/manager6/dc/Hosts.js | 257 ++++++++++++++++++++++++++++++++++++++ 9 files changed, 672 insertions(+), 1 deletion(-) create mode 100644 PVE/API2/Cluster/Hosts.pm create mode 100644 PVE/Hosts.pm create mode 100644 www/manager6/dc/Hosts.js -- 2.39.2