From 9248f07af0afdf93f42dfa8db6ffe7ea3e3ff3f5 Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Sat, 2 Nov 2024 09:50:30 -0700 Subject: [PATCH] missing commit --- config/configStructs/tapConfig.go | 6 +++--- helm-chart/values.yaml | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/configStructs/tapConfig.go b/config/configStructs/tapConfig.go index 1040c2d02..877e0f5c9 100644 --- a/config/configStructs/tapConfig.go +++ b/config/configStructs/tapConfig.go @@ -46,17 +46,17 @@ const ( ) 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"` } 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"` } 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"` } diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 1c33ef446..3de0456a8 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -40,24 +40,24 @@ tap: resources: hub: limits: - cpu: "" + cpu: "0" memory: 5Gi requests: - cpu: "" + cpu: 50m memory: 50Mi sniffer: limits: - cpu: "" + cpu: "0" memory: 5Gi requests: - cpu: "" + cpu: 50m memory: 50Mi tracer: limits: - cpu: "" + cpu: "0" memory: 5Gi requests: - cpu: "" + cpu: 50m memory: 50Mi serviceMesh: true tls: true