change CPU limit to no limit

Change memory limit to 3Gi
This commit is contained in:
Alon Girmonsky
2024-10-16 11:01:25 -07:00
parent 674a554767
commit 816f614ebb
2 changed files with 10 additions and 10 deletions

View File

@@ -46,13 +46,13 @@ const (
)
type ResourceLimitsHub struct {
CPU string `yaml:"cpu" json:"cpu" default:"1000m"`
Memory string `yaml:"memory" json:"memory" default:"1500Mi"`
CPU string `yaml:"cpu" json:"cpu" default:""`
Memory string `yaml:"memory" json:"memory" default:"3Gi"`
}
type ResourceLimitsWorker struct {
CPU string `yaml:"cpu" json:"cpu" default:"1200m"`
Memory string `yaml:"memory" json:"memory" default:"2000Mi"`
CPU string `yaml:"cpu" json:"cpu" default:""`
Memory string `yaml:"memory" json:"memory" default:"3Gi"`
}
type ResourceRequests struct {