Where will this pod be positioned?
apiVersion: v1
kind: Pod
metadata:
name: nginx-anti-pod
labels:
app: nginx-anti-pod
spec:
affinity:
podAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app
operator: In
values:
- nginx-pod
topologyKey: kubernetes.io/zone
containers:
- name: nginx-container
image: nginx:latest
ports:
- containerPort: 80
this pod should be placed in the same zone of nginx-pod, right?