missing commit

This commit is contained in:
Alon Girmonsky 2024-11-02 09:50:30 -07:00
parent a1e05db4b0
commit 9248f07af0
2 changed files with 9 additions and 9 deletions

View File

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

View File

@ -40,24 +40,24 @@ tap:
resources: resources:
hub: hub:
limits: limits:
cpu: "" cpu: "0"
memory: 5Gi memory: 5Gi
requests: requests:
cpu: "" cpu: 50m
memory: 50Mi memory: 50Mi
sniffer: sniffer:
limits: limits:
cpu: "" cpu: "0"
memory: 5Gi memory: 5Gi
requests: requests:
cpu: "" cpu: 50m
memory: 50Mi memory: 50Mi
tracer: tracer:
limits: limits:
cpu: "" cpu: "0"
memory: 5Gi memory: 5Gi
requests: requests:
cpu: "" cpu: 50m
memory: 50Mi memory: 50Mi
serviceMesh: true serviceMesh: true
tls: true tls: true