diff --git a/content/en/docs/concepts/scheduling-eviction/resource-bin-packing.md b/content/en/docs/concepts/scheduling-eviction/resource-bin-packing.md index 0679e1fd8b..a327f1de24 100644 --- a/content/en/docs/concepts/scheduling-eviction/resource-bin-packing.md +++ b/content/en/docs/concepts/scheduling-eviction/resource-bin-packing.md @@ -82,7 +82,7 @@ requested the score value must be reversed as follows. ```yaml shape: - utilization: 0 - score: 100 + score: 10 - utilization: 100 score: 0 ``` diff --git a/content/ko/docs/concepts/scheduling-eviction/resource-bin-packing.md b/content/ko/docs/concepts/scheduling-eviction/resource-bin-packing.md index f8efb77d8f..124f009020 100644 --- a/content/ko/docs/concepts/scheduling-eviction/resource-bin-packing.md +++ b/content/ko/docs/concepts/scheduling-eviction/resource-bin-packing.md @@ -77,7 +77,7 @@ shape: ```yaml shape: - utilization: 0 - score: 100 + score: 10 - utilization: 100 score: 0 ``` diff --git a/content/zh/docs/concepts/scheduling-eviction/resource-bin-packing.md b/content/zh/docs/concepts/scheduling-eviction/resource-bin-packing.md index d9edf508ff..8d822069d9 100644 --- a/content/zh/docs/concepts/scheduling-eviction/resource-bin-packing.md +++ b/content/zh/docs/concepts/scheduling-eviction/resource-bin-packing.md @@ -109,7 +109,7 @@ The above arguments give the node a score of 0 if utilization is 0% and 10 for u 要启用最少请求(least requested)模式,必须按如下方式反转得分值。 ```yaml - {"utilization": 0, "score": 100}, + {"utilization": 0, "score": 10}, {"utilization": 100, "score": 0} ```