Files
kubernetes/test/integration/scheduler_perf/config/pod-affinity-ns-selector.yaml
Claudiu Belu 18936d4785 updates pause image references
The pause:3.6 image has been published.

Also updates older / incorrect references.
2021-08-29 21:50:05 -07:00

30 lines
596 B
YAML

apiVersion: v1
kind: Pod
metadata:
generateName: affinity-pod-
labels:
color: blue
spec:
affinity:
podAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchLabels:
color: blue
topologyKey: topology.kubernetes.io/zone
namespaceSelector:
matchLabels:
team: devops
containers:
- image: k8s.gcr.io/pause:3.6
name: pause
ports:
- containerPort: 80
resources:
limits:
cpu: 100m
memory: 500Mi
requests:
cpu: 100m
memory: 500Mi