Hub default limit set to 5GB (an arbitrary number)

This commit is contained in:
Alon Girmonsky
2024-10-17 10:16:57 -07:00
parent aa9fb41ee5
commit 5bbf1e7eb0

View File

@@ -47,7 +47,7 @@ const (
type ResourceLimitsHub struct { type ResourceLimitsHub struct {
CPU string `yaml:"cpu" json:"cpu" default:""` CPU string `yaml:"cpu" json:"cpu" default:""`
Memory string `yaml:"memory" json:"memory" default:"3Gi"` Memory string `yaml:"memory" json:"memory" default:"5Gi"`
} }
type ResourceLimitsWorker struct { type ResourceLimitsWorker struct {
@@ -56,7 +56,7 @@ type ResourceLimitsWorker struct {
} }
type ResourceRequests struct { type ResourceRequests struct {
CPU string `yaml:"cpu" json:"cpu" default:"50m"` CPU string `yaml:"cpu" json:"cpu" default:""`
Memory string `yaml:"memory" json:"memory" default:"50Mi"` Memory string `yaml:"memory" json:"memory" default:"50Mi"`
} }