From 1cb068a2eb0e9794c4aa0bae2c344c2ec11c5612 Mon Sep 17 00:00:00 2001 From: Dan Quackenbush Date: Fri, 29 May 2020 10:31:18 -0400 Subject: [PATCH] :ok_hand: fix object type --- kubetest/objects/serviceaccount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubetest/objects/serviceaccount.py b/kubetest/objects/serviceaccount.py index ae217ac..878af71 100644 --- a/kubetest/objects/serviceaccount.py +++ b/kubetest/objects/serviceaccount.py @@ -19,7 +19,7 @@ class ServiceAccount(ApiObject): https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#serviceaccount-v1-core """ - obj_type = client.V1Namespace + obj_type = client.V1ServiceAccount api_clients = { 'preferred': client.CoreV1Api,