
Update dependencies and the test images to use pause 3.5. We also provide a changelog entry for the new container image version. Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
28 lines
571 B
YAML
28 lines
571 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
|
|
namespaces: ["sched-test", "sched-setup"]
|
|
containers:
|
|
- image: k8s.gcr.io/pause:3.5
|
|
name: pause
|
|
ports:
|
|
- containerPort: 80
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 500Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 500Mi
|