mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-29 01:30:37 +00:00
🔨 Decrease the default storage limit back to 200Mi
This commit is contained in:
parent
773cf371f3
commit
b1a40df069
@ -111,7 +111,7 @@ type TapConfig struct {
|
|||||||
Namespaces []string `yaml:"namespaces" json:"namespaces" default:"[]"`
|
Namespaces []string `yaml:"namespaces" json:"namespaces" default:"[]"`
|
||||||
Release ReleaseConfig `yaml:"release" json:"release"`
|
Release ReleaseConfig `yaml:"release" json:"release"`
|
||||||
PersistentStorage bool `yaml:"persistentstorage" json:"persistentstorage" default:"false"`
|
PersistentStorage bool `yaml:"persistentstorage" json:"persistentstorage" default:"false"`
|
||||||
StorageLimit string `yaml:"storagelimit" json:"storagelimit" default:"500Mi"`
|
StorageLimit string `yaml:"storagelimit" json:"storagelimit" default:"200Mi"`
|
||||||
StorageClass string `yaml:"storageclass" json:"storageclass" default:"standard"`
|
StorageClass string `yaml:"storageclass" json:"storageclass" default:"standard"`
|
||||||
DryRun bool `yaml:"dryrun" json:"dryrun" default:"false"`
|
DryRun bool `yaml:"dryrun" json:"dryrun" default:"false"`
|
||||||
Pcap string `yaml:"pcap" json:"pcap" default:""`
|
Pcap string `yaml:"pcap" json:"pcap" default:""`
|
||||||
|
@ -88,7 +88,7 @@ Get your license from Kubeshark's [Admin Console](https://console.kubeshark.co/)
|
|||||||
|
|
||||||
## Increase the Worker's Storage Limit
|
## Increase the Worker's Storage Limit
|
||||||
|
|
||||||
For example, change from the default 500Mi to 1Gi:
|
For example, change from the default 200Mi to 1Gi:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
--set tap.storagelimit=1Gi
|
--set tap.storagelimit=1Gi
|
||||||
@ -121,7 +121,7 @@ helm install kubeshark kubeshark/kubeshark \
|
|||||||
| `tap.release.name` | Helm release name | `kubeshark` |
|
| `tap.release.name` | Helm release name | `kubeshark` |
|
||||||
| `tap.release.namespace` | Helm release namespace | `default` |
|
| `tap.release.namespace` | Helm release namespace | `default` |
|
||||||
| `tap.persistentstorage` | Use `persistentVolumeClaim` instead of `emptyDir` | `false` |
|
| `tap.persistentstorage` | Use `persistentVolumeClaim` instead of `emptyDir` | `false` |
|
||||||
| `tap.storagelimit` | Limit of either the `emptyDir` or `persistentVolumeClaim` | `500Mi` |
|
| `tap.storagelimit` | Limit of either the `emptyDir` or `persistentVolumeClaim` | `200Mi` |
|
||||||
| `tap.storageclass` | Storage class of the `PersistentVolumeClaim` | `standard` |
|
| `tap.storageclass` | Storage class of the `PersistentVolumeClaim` | `standard` |
|
||||||
| `tap.dryrun` | Preview of all pods matching the regex, without tapping them | `false` |
|
| `tap.dryrun` | Preview of all pods matching the regex, without tapping them | `false` |
|
||||||
| `tap.pcap` | | `""` |
|
| `tap.pcap` | | `""` |
|
||||||
|
@ -20,7 +20,7 @@ tap:
|
|||||||
name: kubeshark
|
name: kubeshark
|
||||||
namespace: default
|
namespace: default
|
||||||
persistentstorage: false
|
persistentstorage: false
|
||||||
storagelimit: 500Mi
|
storagelimit: 200Mi
|
||||||
storageclass: standard
|
storageclass: standard
|
||||||
dryrun: false
|
dryrun: false
|
||||||
pcap: ""
|
pcap: ""
|
||||||
|
@ -413,7 +413,7 @@ spec:
|
|||||||
name: sys
|
name: sys
|
||||||
- name: data
|
- name: data
|
||||||
emptyDir:
|
emptyDir:
|
||||||
sizeLimit: 500Mi
|
sizeLimit: 200Mi
|
||||||
---
|
---
|
||||||
# Source: kubeshark/templates/04-hub-deployment.yaml
|
# Source: kubeshark/templates/04-hub-deployment.yaml
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
|
Loading…
Reference in New Issue
Block a user