mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-06 16:06:51 +00:00
27 lines
517 B
YAML
27 lines
517 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
generateName: spreading-pod-
|
|
labels:
|
|
color: blue
|
|
spec:
|
|
topologySpreadConstraints:
|
|
- maxSkew: 5
|
|
topologyKey: topology.kubernetes.io/zone
|
|
whenUnsatisfiable: ScheduleAnyway
|
|
labelSelector:
|
|
matchLabels:
|
|
color: blue
|
|
containers:
|
|
- image: k8s.gcr.io/pause:3.6
|
|
name: pause
|
|
ports:
|
|
- containerPort: 80
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 500Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 500Mi
|