From 9d1d924691641fb981eae98797b8f6eb35f7bc0a Mon Sep 17 00:00:00 2001 From: Arhell Date: Wed, 12 Apr 2023 00:45:27 +0300 Subject: [PATCH] [ja] Fix mismatch in Labels and Selectors concept page --- .../ja/docs/concepts/overview/working-with-objects/labels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ja/docs/concepts/overview/working-with-objects/labels.md b/content/ja/docs/concepts/overview/working-with-objects/labels.md index fbe8432b453..0af7384a6ad 100644 --- a/content/ja/docs/concepts/overview/working-with-objects/labels.md +++ b/content/ja/docs/concepts/overview/working-with-objects/labels.md @@ -192,7 +192,7 @@ kubectl get pods -l 'environment in (production),tier in (frontend)' kubectl get pods -l 'environment in (production, qa)' ``` -もしくは、_exists_ オペレーターを介して、否定マッチングによる制限もできます。 +もしくは、_notin_ オペレーターを介して、否定マッチングによる制限もできます。 ```shell kubectl get pods -l 'environment,environment notin (frontend)'