Skip to content

Commit 70423c3

Browse files
authored
Merge pull request #36253 from tanmaniac/main
Fix field in ScoringStrategy for scheduler resource bin-packing
2 parents ff8b2b4 + 9b32889 commit 70423c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/concepts/scheduling-eviction/resource-bin-packing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ to improve the utilization of scarce resources in large clusters. It favors node
5454
configured function of the allocated resources. The behavior of the `RequestedToCapacityRatio` in
5555
the `NodeResourcesFit` score function can be controlled by the
5656
[scoringStrategy](/docs/reference/config-api/kube-scheduler-config.v1beta3/#kubescheduler-config-k8s-io-v1beta3-ScoringStrategy) field.
57-
Within the `scoringStrategy` field, you can configure two parameters: `requestedToCapacityRatioParam` and
58-
`resources`. The `shape` in `requestedToCapacityRatioParam`
57+
Within the `scoringStrategy` field, you can configure two parameters: `requestedToCapacityRatio` and
58+
`resources`. The `shape` in the `requestedToCapacityRatio`
5959
parameter allows the user to tune the function as least requested or most
6060
requested based on `utilization` and `score` values. The `resources` parameter
6161
consists of `name` of the resource to be considered during scoring and `weight`
@@ -77,7 +77,7 @@ profiles:
7777
weight: 3
7878
- name: intel.com/bar
7979
weight: 3
80-
requestedToCapacityRatioParam:
80+
requestedToCapacityRatio:
8181
shape:
8282
- utilization: 0
8383
score: 0

0 commit comments

Comments
 (0)