Jelajahi Sumber

Remove ResourceQuota kind

Niko Kovacevic 6 bulan lalu
induk
melakukan
b688cb58bd
1 mengubah file dengan 0 tambahan dan 5 penghapusan
  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
 }