From 977ba345ad77f6cfc6a92255870720ca1fd52d14 Mon Sep 17 00:00:00 2001 From: Nick Adam Date: Mon, 19 Jan 2026 00:38:23 +0100 Subject: [PATCH] fix kube client side error --- apps/argocd-config/argocd-ha-patch-rbac.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/argocd-config/argocd-ha-patch-rbac.yaml b/apps/argocd-config/argocd-ha-patch-rbac.yaml index 1f81f75..a1f42c8 100644 --- a/apps/argocd-config/argocd-ha-patch-rbac.yaml +++ b/apps/argocd-config/argocd-ha-patch-rbac.yaml @@ -9,10 +9,10 @@ metadata: rules: - apiGroups: ["apps"] resources: ["deployments"] - verbs: ["get", "patch", "update"] + verbs: ["get", "list", "watch", "patch", "update"] # list/watch für rollout status - apiGroups: ["apps"] resources: ["deployments/status"] - verbs: ["get"] + verbs: ["get", "list", "watch"] # list/watch für rollout status --- apiVersion: v1