Set the default storage limit to 200Mi

This commit is contained in:
M. Mert Yildiran 2023-04-20 02:48:18 +03:00
parent 44adb397c1
commit c342885cae
No known key found for this signature in database
GPG Key ID: DA5D6DCBB758A461
3 changed files with 3 additions and 3 deletions

View File

@ -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"`

View File

@ -18,7 +18,7 @@ tap:
regex: .*
namespaces: []
selfnamespace: kubeshark
storagelimit: 300Mi
storagelimit: 200Mi
dryrun: false
pcap: ""
resources:

View File

@ -15,6 +15,6 @@ spec:
- ReadWriteMany
resources:
requests:
storage: 300Mi
storage: 200Mi
storageClassName: standard
status: {}