...
1apiVersion: v1
2kind: Pod
3metadata:
4 generateName: affinity-pod-
5 labels:
6 color: blue
7spec:
8 affinity:
9 podAffinity:
10 requiredDuringSchedulingIgnoredDuringExecution:
11 - labelSelector:
12 matchLabels:
13 color: blue
14 topologyKey: topology.kubernetes.io/zone
15 namespaceSelector:
16 matchLabels:
17 team: devops
18 containers:
19 - image: registry.k8s.io/pause:3.9
20 name: pause
21 ports:
22 - containerPort: 80
23 resources:
24 limits:
25 cpu: 100m
26 memory: 500Mi
27 requests:
28 cpu: 100m
29 memory: 500Mi
View as plain text