Skip to content

Commit

Permalink
Updated SDS resources
Browse files Browse the repository at this point in the history
Reduced CPU for OSD by 100m and decreased memory by 1Gi

Signed-off-by: Rohan Gupta <rohgupta@redhat.com>
  • Loading branch information
rohan47 authored and nb-ohad committed Feb 6, 2023
1 parent 74e2cbf commit baba52e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ var resourceRequirements = map[string]corev1.ResourceRequirements{
},
"sds": {
Limits: corev1.ResourceList{
"cpu": resource.MustParse("1750m"),
"memory": resource.MustParse("7Gi"),
"cpu": resource.MustParse("1650m"),
"memory": resource.MustParse("6Gi"),
},
Requests: corev1.ResourceList{
"cpu": resource.MustParse("1750m"),
"memory": resource.MustParse("7Gi"),
"cpu": resource.MustParse("1650m"),
"memory": resource.MustParse("6Gi"),
},
},
"prometheus": {
Expand Down

0 comments on commit baba52e

Please sign in to comment.