Update labels.md

negative matching 'notin' to match the example
This commit is contained in:
Harikrishnan Mekkattu Pisharam Somarajan 2023-02-01 17:54:11 +05:30 committed by GitHub
parent 11bb15dbdd
commit ca3eefb13f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ For instance, they can implement the _OR_ operator on values:
kubectl get pods -l 'environment in (production, qa)'
```
or restricting negative matching via _exists_ operator:
or restricting negative matching via _notin_ operator:
```shell
kubectl get pods -l 'environment,environment notin (frontend)'