Niko Kovacevic пре 8 месеци
родитељ
комит
23b0853b80
1 измењених фајлова са 4 додато и 0 уклоњено
  1. 4 0
      core/pkg/model/kubemodel/resourcequota.go

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

@@ -16,6 +16,10 @@ type ResourceQuota struct {
 }
 
 type ResourceQuotaSpec struct {
+	Hard ResourceQuotaSpecHard
+}
+
+type ResourceQuotaSpecHard struct {
 	Requests []ResourceQuantity
 	Limits   []ResourceQuantity
 }