Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:
push:
branches:
- test/localtestbuild
- feature/tuning

jobs:
build:
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -459,3 +459,5 @@ require (
)

replace github.com/inspektor-gadget/inspektor-gadget => github.com/matthyx/inspektor-gadget v0.0.0-20260203101533-6ef87216d3dd

replace github.com/kubescape/storage => ../storage
3 changes: 3 additions & 0 deletions tests/chart/templates/storage/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ data:
{
"cleanupInterval": "{{ .Values.storage.cleanupInterval }}"
}
{{- if .Values.storage.collapseConfig }}
collapseConfig.json: {{ .Values.storage.collapseConfig | toJson }}
{{- end }}
12 changes: 12 additions & 0 deletions tests/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ storage:
tag: v0.0.156
pullPolicy: Always
cleanupInterval: "6h"
# collapseConfig: |
# {
# "openDynamicThreshold": 50,
# "endpointDynamicThreshold": 100,
# "collapseConfigs": [
# {"prefix": "/etc", "threshold": 100},
# {"prefix": "/etc/apache2", "threshold": 5},
# {"prefix": "/opt", "threshold": 5},
# {"prefix": "/var/run", "threshold": 3},
# {"prefix": "/app", "threshold": 1}
# ]
# }
labels:
app.kubernetes.io/name: "storage"
app.kubernetes.io/component: "apiserver"
Expand Down
Loading