Merge pull request #21211 from briandealwis/patch-1

Reword toleration special-cases note
pull/21214/head^2
Kubernetes Prow Robot 2020-05-26 14:58:41 -07:00 committed by GitHub
commit 685e54df99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 13 deletions

View File

@ -77,21 +77,10 @@ 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
An empty `key` with operator `Exists` matches all keys, values and effects which means this
will tolerate everything.
```yaml
tolerations:
- operator: "Exists"
```
* An empty `effect` matches all effects with key `key`.
```yaml
tolerations:
- key: "key"
operator: "Exists"
```
An empty `effect` matches all effects with key `key`.
{{< /note >}}