From 6545df3c73ad3359b69daf99f5c73f6d0b57e77d Mon Sep 17 00:00:00 2001 From: devopstales <42894256+devopstales@users.noreply.github.com> Date: Tue, 5 Mar 2024 15:37:12 +0100 Subject: [PATCH] fix: Cluster Role Binding List --- src/kubedash/functions/k8s.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kubedash/functions/k8s.py b/src/kubedash/functions/k8s.py index 5700fa5a..4f344a23 100644 --- a/src/kubedash/functions/k8s.py +++ b/src/kubedash/functions/k8s.py @@ -2364,7 +2364,7 @@ def k8sClusterRoleBindingListGet(username_role, user_token): elif obj.kind == "ServiceAccount": CLUSTER_ROLE_BINDING_INFO["ServiceAccount"].append({obj.name: obj.namespace}) - CLUSTER_ROLE_BINDING_LIST.append(CLUSTER_ROLE_BINDING_INFO) + CLUSTER_ROLE_BINDING_LIST.append(CLUSTER_ROLE_BINDING_INFO) return CLUSTER_ROLE_BINDING_LIST except ApiException as error: if error.status != 404: