瀏覽代碼

Remove ResourceQuota kind

Niko Kovacevic 10 月之前
父節點
當前提交
b688cb58bd
共有 1 個文件被更改,包括 0 次插入5 次删除
  1. 0 5
      core/pkg/model/kubemodel/resourcequota.go

+ 0 - 5
core/pkg/model/kubemodel/resourcequota.go

@@ -2,15 +2,10 @@ package kubemodel
 
 type ResourceQuotaKind string
 
-const (
-	ResourceQuotaKindCompute = "compute"
-)
-
 type ResourceQuota struct {
 	ID          string
 	NamespaceID string
 	Name        string
-	Kind        ResourceQuotaKind
 	Spec        *ResourceQuotaSpec
 	Status      *ResourceQuotaStatus
 }