File tree 1 file changed +5
-2
lines changed
jsonnet/kube-prometheus/components
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,12 @@ local defaults = {
35
35
// GC values,
36
36
// imageGCLowThresholdPercent: 80
37
37
// imageGCHighThresholdPercent: 85
38
+ // GC kicks in when imageGCHighThresholdPercent is hit and attempts to free upto imageGCLowThresholdPercent.
38
39
// See https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/ for more details.
39
- fsSpaceFillingUpWarningThreshold: 20 ,
40
- fsSpaceFillingUpCriticalThreshold: 15 ,
40
+ // Warn only after imageGCHighThresholdPercent is hit, but filesystem is not freed up for a prolonged duration.
41
+ fsSpaceFillingUpWarningThreshold: 15 ,
42
+ // Send critical alert only after (imageGCHighThresholdPercent + 5) is hit, but filesystem is not freed up for a prolonged duration.
43
+ fsSpaceFillingUpCriticalThreshold: 10 ,
41
44
diskDeviceSelector: 'device=~"mmcblk.p.+|nvme.+|rbd.+|sd.+|vd.+|xvd.+|dm-.+|dasd.+"' ,
42
45
runbookURLPattern: 'https://runbooks.prometheus-operator.dev/runbooks/node/%s' ,
43
46
},
You can’t perform that action at this time.
0 commit comments