From 1e34d5f14c65f2dc878f60d0c03d072ecc68996f Mon Sep 17 00:00:00 2001 From: Frank Yang Date: Fri, 30 Jun 2023 10:52:55 -0500 Subject: [PATCH] [YUNIKORN-1850] Remove unused field UID (#627) Closes: #627 Signed-off-by: Craig Condit --- test/e2e/framework/helpers/k8s/pod_conf.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/e2e/framework/helpers/k8s/pod_conf.go b/test/e2e/framework/helpers/k8s/pod_conf.go index dcc428156..dc3042b74 100644 --- a/test/e2e/framework/helpers/k8s/pod_conf.go +++ b/test/e2e/framework/helpers/k8s/pod_conf.go @@ -25,7 +25,6 @@ import ( v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/apimachinery/pkg/types" "github.com/apache/yunikorn-k8shim/pkg/common/constants" "github.com/apache/yunikorn-k8shim/test/e2e/framework/configmanager" @@ -41,7 +40,6 @@ type SleepPodConfig struct { Mem int64 RequiredNode string Optedout bool - UID types.UID Labels map[string]string }