In content/en/docs/how-tos/affinities.md, the prose description of affinity operators says:
NotExists: the cluster must not have the label key.
The valid operator name from metav1.LabelSelectorRequirement (which ClusterSelectorTerm.LabelSelector uses) is DoesNotExist, not NotExists. The YAML example on line 174 of the same file correctly uses operator: DoesNotExist, so the prose contradicts the code example and the upstream Kubernetes API.
Update the prose to use DoesNotExist consistently.
In
content/en/docs/how-tos/affinities.md, the prose description of affinity operators says:The valid operator name from
metav1.LabelSelectorRequirement(whichClusterSelectorTerm.LabelSelectoruses) isDoesNotExist, notNotExists. The YAML example on line 174 of the same file correctly usesoperator: DoesNotExist, so the prose contradicts the code example and the upstream Kubernetes API.Update the prose to use
DoesNotExistconsistently.