diff --git a/content/en/docs/concepts/policy/resource-quotas.md b/content/en/docs/concepts/policy/resource-quotas.md index e3be95b50c..40c813e00c 100644 --- a/content/en/docs/concepts/policy/resource-quotas.md +++ b/content/en/docs/concepts/policy/resource-quotas.md @@ -551,10 +551,10 @@ plugins: kind: Configuration limitedResources: - resource: pods - matchScopes: - - operator : In - scopeName: PriorityClass - values: ["cluster-services"] + matchScopes: + - scopeName: PriorityClass + operator: In + values: ["cluster-services"] ``` Now, "cluster-services" pods will be allowed in only those namespaces where a quota object with a matching `scopeSelector` is present. @@ -562,8 +562,8 @@ For example: ```yaml scopeSelector: matchExpressions: - - operator : In - scopeName: PriorityClass + - scopeName: PriorityClass + operator: In values: ["cluster-services"] ```