From c342885caee66b5c3f3842c177ce688466a4eb8c Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Thu, 20 Apr 2023 02:48:18 +0300 Subject: [PATCH] :zap: Set the default storage limit to `200Mi` --- config/configStructs/tapConfig.go | 2 +- helm-chart/values.yaml | 2 +- manifests/08-persistent-volume.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/configStructs/tapConfig.go b/config/configStructs/tapConfig.go index 40a528ac4..38caa516b 100644 --- a/config/configStructs/tapConfig.go +++ b/config/configStructs/tapConfig.go @@ -81,7 +81,7 @@ type TapConfig struct { PodRegexStr string `yaml:"regex" default:".*"` Namespaces []string `yaml:"namespaces"` SelfNamespace string `yaml:"selfnamespace" default:"kubeshark"` - StorageLimit string `yaml:"storagelimit" default:"300Mi"` + StorageLimit string `yaml:"storagelimit" default:"200Mi"` DryRun bool `yaml:"dryrun" default:"false"` Pcap string `yaml:"pcap" default:""` Resources ResourcesConfig `yaml:"resources"` diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 2acb7b63e..6b3f8b731 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -18,7 +18,7 @@ tap: regex: .* namespaces: [] selfnamespace: kubeshark - storagelimit: 300Mi + storagelimit: 200Mi dryrun: false pcap: "" resources: diff --git a/manifests/08-persistent-volume.yaml b/manifests/08-persistent-volume.yaml index 15e1445c7..c3c803101 100644 --- a/manifests/08-persistent-volume.yaml +++ b/manifests/08-persistent-volume.yaml @@ -15,6 +15,6 @@ spec: - ReadWriteMany resources: requests: - storage: 300Mi + storage: 200Mi storageClassName: standard status: {}