mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-20 02:11:09 +00:00
28 lines
569 B
YAML
28 lines
569 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-1", "sched-0"]
|
|
containers:
|
|
- image: registry.k8s.io/pause:3.9
|
|
name: pause
|
|
ports:
|
|
- containerPort: 80
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 500Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 500Mi
|