Merge pull request #44539 from haripriya9647/values

Improve an expression from 'value's to 'values' for taint-and-toleration
pull/44623/head
Kubernetes Prow Robot 2024-01-04 00:12:38 +01:00 committed by GitHub
commit a5e512e0e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -71,7 +71,7 @@ The default value for `operator` is `Equal`.
A toleration "matches" a taint if the keys are the same and the effects are the same, and:
* the `operator` is `Exists` (in which case no `value` should be specified), or
* the `operator` is `Equal` and the `value`s are equal.
* the `operator` is `Equal` and the values should be equal.
{{< note >}}