docs: Fix post selector example (#20969)

Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
This commit is contained in:
Erik Sjölund
2024-11-27 12:10:54 +01:00
committed by GitHub
parent 36d189c133
commit fc6105b2bd

View File

@@ -40,12 +40,12 @@ spec:
- cluster: engineering-prod
url: https://kubernetes.default.svc
env: prod
selector:
matchExpressions:
- key: env
operator: In
values:
- staging
selector:
matchExpressions:
- key: env
operator: In
values:
- staging
```
Valid `operators` include `In`, `NotIn`, `Exists`, and `DoesNotExist`. The `values` set must be non-empty in the case of `In` and `NotIn`.