From ca3eefb13f457541398e14515151f7868dc1dd9d Mon Sep 17 00:00:00 2001 From: Harikrishnan Mekkattu Pisharam Somarajan <39669915+hmspisharody@users.noreply.github.com> Date: Wed, 1 Feb 2023 17:54:11 +0530 Subject: [PATCH] Update labels.md negative matching 'notin' to match the example --- .../en/docs/concepts/overview/working-with-objects/labels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/overview/working-with-objects/labels.md b/content/en/docs/concepts/overview/working-with-objects/labels.md index 477ce6f2f5..d57e47ab4a 100644 --- a/content/en/docs/concepts/overview/working-with-objects/labels.md +++ b/content/en/docs/concepts/overview/working-with-objects/labels.md @@ -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)'