🔨 Lower the resource limits

This commit is contained in:
M. Mert Yildiran 2023-09-28 20:39:57 +03:00
parent 6add6fb1ec
commit d0b621070c
No known key found for this signature in database
GPG Key ID: DA5D6DCBB758A461
2 changed files with 10 additions and 10 deletions

View File

@ -34,8 +34,8 @@ const (
)
type ResourceLimits struct {
CPU string `yaml:"cpu" json:"cpu" default:"500m"`
Memory string `yaml:"memory" json:"memory" default:"500Mi"`
CPU string `yaml:"cpu" json:"cpu" default:"250m"`
Memory string `yaml:"memory" json:"memory" default:"333Mi"`
}
type ResourceRequests struct {

View File

@ -27,29 +27,29 @@ tap:
resources:
sniffer:
limits:
cpu: 500m
memory: 500Mi
cpu: 250m
memory: 333Mi
requests:
cpu: 50m
memory: 50Mi
server:
limits:
cpu: 500m
memory: 500Mi
cpu: 250m
memory: 333Mi
requests:
cpu: 50m
memory: 50Mi
tracer:
limits:
cpu: 500m
memory: 500Mi
cpu: 250m
memory: 333Mi
requests:
cpu: 50m
memory: 50Mi
hub:
limits:
cpu: 500m
memory: 500Mi
cpu: 250m
memory: 333Mi
requests:
cpu: 50m
memory: 50Mi