Merge pull request #25924 from Alpenbelieve/master

Fix the score value in docs/concepts/scheduling-eviction/resource-bin-packing.md
pull/25965/head
Kubernetes Prow Robot 2021-01-05 08:25:59 -08:00 committed by GitHub
commit c7f5615cac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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
```

View File

@ -77,7 +77,7 @@ shape:
```yaml
shape:
- utilization: 0
score: 100
score: 10
- utilization: 100
score: 0
```

View File

@ -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}
```