From 85d3007117078bc465102c93e2c85e98fb3f08bc Mon Sep 17 00:00:00 2001 From: John Mazzitelli Date: Sat, 31 Aug 2024 10:31:35 -0400 Subject: [PATCH] fix typo - "matchExpressions" - must be plural (#813) * fix typo - "matchExpressions" - must be plural * typo - meant to say cluster, not namespace --- content/en/docs/Configuration/namespace-management.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/docs/Configuration/namespace-management.md b/content/en/docs/Configuration/namespace-management.md index 8227be7b..ac9e7d69 100644 --- a/content/en/docs/Configuration/namespace-management.md +++ b/content/en/docs/Configuration/namespace-management.md @@ -46,7 +46,7 @@ spec: cluster_wide_access: false discovery_selectors: default: - - matchExpression: + - matchExpressions: - key: my-mesh operator: Exists ``` @@ -116,9 +116,9 @@ spec: deployment: cluster_wide_access: false discovery_selectors: - # define accessible namespaces on the local namespace + # define accessible namespaces on the local cluster default: - - matchExpression: + - matchExpressions: - key: my-mesh operator: Exists overrides: @@ -126,7 +126,7 @@ spec: my-remote-cluster: - matchLabels: org: production - - matchExpression: + - matchExpressions: - key: region operator: In values: ["east"]