From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id AA2891FF13F for ; Thu, 07 May 2026 10:38:28 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 84AE3F6ED; Thu, 7 May 2026 10:38:28 +0200 (CEST) Message-ID: <7f937a28-55b7-4cae-b4b6-aabe9235458a@proxmox.com> Date: Thu, 7 May 2026 10:38:20 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Beta Subject: superseded: [PATCH 0/8] subscription: add central key pool registry with reissue support From: Thomas Lamprecht To: pdm-devel@lists.proxmox.com References: <20260507072436.2649563-1-t.lamprecht@proxmox.com> Content-Language: en-US In-Reply-To: <20260507072436.2649563-1-t.lamprecht@proxmox.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1778142992385 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.003 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 SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: ON6VPRDSVHY3HWQPDSFMMEUHS5QZOK2H X-Message-ID-Hash: ON6VPRDSVHY3HWQPDSFMMEUHS5QZOK2H X-MailFrom: t.lamprecht@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Datacenter Manager development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Am 07.05.26 um 09:23 schrieb Thomas Lamprecht: > Thomas Lamprecht (8): > api: subscription cache: ensure max_age=0 forces a fresh fetch > api types: subscription level: render full names > subscription: add key pool data model and config layer > subscription: add key pool and node status API endpoints > ui: add subscription registry with key pool and node status > cli: add subscription key pool management subcommands > docs: add subscription registry chapter > subscription: add Reissue Key action with pending-reissue queue > > cli/client/src/subscriptions.rs | 226 +++- > docs/index.rst | 1 + > docs/subscription-registry.rst | 64 + > lib/pdm-api-types/Cargo.toml | 4 + > lib/pdm-api-types/src/subscription.rs | 422 +++++- > lib/pdm-api-types/tests/test_import.rs | 310 +++++ > lib/pdm-client/src/lib.rs | 157 ++- > lib/pdm-config/src/lib.rs | 1 + > lib/pdm-config/src/subscriptions.rs | 102 ++ > server/src/api/mod.rs | 2 + > server/src/api/resources.rs | 13 +- > server/src/api/subscriptions/mod.rs | 1199 +++++++++++++++++ > server/src/context.rs | 7 + > ui/src/configuration/mod.rs | 2 + > ui/src/configuration/subscription_keys.rs | 458 +++++++ > ui/src/configuration/subscription_registry.rs | 791 +++++++++++ > ui/src/dashboard/subscriptions_list.rs | 18 +- > ui/src/main_menu.rs | 10 + > 18 files changed, 3751 insertions(+), 36 deletions(-) > create mode 100644 docs/subscription-registry.rst > create mode 100644 lib/pdm-api-types/tests/test_import.rs > create mode 100644 lib/pdm-config/src/subscriptions.rs > create mode 100644 server/src/api/subscriptions/mod.rs > create mode 100644 ui/src/configuration/subscription_keys.rs > create mode 100644 ui/src/configuration/subscription_registry.rs > Payed not enough attention here, so v2: https://lore.proxmox.com/pdm-devel/20260507082943.2749725-1-t.lamprecht@proxmox.com/