Skip to content

Commit

Permalink
fix: Bump memory limit for directory size exporter (kyma-project#1586)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakesh-garimella authored Nov 4, 2024
1 parent 710062a commit 9e12dc6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/resources/fluentbit/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@ func MakeDaemonSet(name types.NamespacedName, checksum string, dsConfig DaemonSe
},
}

// Set resource requests/limits for directory-size exporter
resourcesExporter := corev1.ResourceRequirements{
Requests: map[corev1.ResourceName]resource.Quantity{
corev1.ResourceCPU: resource.MustParse("1m"),
corev1.ResourceMemory: resource.MustParse("5Mi"),
},
Limits: map[corev1.ResourceName]resource.Quantity{
corev1.ResourceCPU: resource.MustParse("10m"),
corev1.ResourceMemory: resource.MustParse("20Mi"),
corev1.ResourceMemory: resource.MustParse("50Mi"),
},
}

Expand Down

0 comments on commit 9e12dc6

Please sign in to comment.