Skip to content

Commit c7f5615

Browse files
authored
Merge pull request #25924 from Alpenbelieve/master
Fix the score value in docs/concepts/scheduling-eviction/resource-bin-packing.md
2 parents 34b84f9 + 7fbf549 commit c7f5615

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ requested the score value must be reversed as follows.
8282
```yaml
8383
shape:
8484
- utilization: 0
85-
score: 100
85+
score: 10
8686
- utilization: 100
8787
score: 0
8888
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ shape:
7777
```yaml
7878
shape:
7979
- utilization: 0
80-
score: 100
80+
score: 10
8181
- utilization: 100
8282
score: 0
8383
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ The above arguments give the node a score of 0 if utilization is 0% and 10 for u
109109
要启用最少请求(least requested)模式,必须按如下方式反转得分值。
110110

111111
```yaml
112-
{"utilization": 0, "score": 100},
112+
{"utilization": 0, "score": 10},
113113
{"utilization": 100, "score": 0}
114114
```
115115

0 commit comments

Comments
 (0)