Merge pull request #47930 from scheduler-tester/patch-2

Fix wrong info about empty toleration key (#47929)
This commit is contained in:
Kubernetes Prow Robot 2024-09-17 20:50:44 +01:00 committed by GitHub
commit bcaf5a0a8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -85,8 +85,7 @@ A toleration "matches" a taint if the keys are the same and the effects are the
There are two special cases:
An empty `key` with operator `Exists` matches all keys, values and effects which means this
will tolerate everything.
If the `key` is empty, then the `operator` must be `Exists`, which matches all keys and values. Note that the `effect` still needs to be matched at the same time.
An empty `effect` matches all effects with key `key1`.