1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/test/more/spread_pods_across_topology.yaml

32 lines
711 B
YAML
Raw Normal View History

---
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
name: spread-pods
spec:
admission: true
background: true
rules:
- match:
any:
- resources:
kinds:
- Deployment
selector:
matchLabels:
distributed: required
mutate:
patchStrategicMerge:
spec:
template:
spec:
+(topologySpreadConstraints):
- labelSelector:
matchLabels:
distributed: required
maxSkew: 1
topologyKey: zone
whenUnsatisfiable: DoNotSchedule
name: spread-pods-across-nodes
validationFailureAction: Audit