From 0b93f62fc4ad0578d9317ad647df3915f9b723b5 Mon Sep 17 00:00:00 2001 From: mcz Date: Sat, 4 Apr 2026 12:16:31 +0200 Subject: [PATCH] Fix AppUninstallRequest proto fields to match agent usage The agent calls getName() and getNamespace() on AppUninstallRequest but the proto only defined a 'chart' field. Updated to 'name' and 'namespace' to match the Helm uninstall API used in AppUninstallService. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/main/proto/app.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/proto/app.proto b/src/main/proto/app.proto index 6fe7f95..5cf12a8 100644 --- a/src/main/proto/app.proto +++ b/src/main/proto/app.proto @@ -20,7 +20,8 @@ message AppInstallResponse { } message AppUninstallRequest { - string chart = 1; + string name = 1; + string namespace = 2; } message AppUninstallResponse {