valid-hpa-replicas
Rec
Enabled in recommended preset.Require HPA replicas to be valid.
Examples
✅ Correct manifest for this rule:
new HorizontalPodAutoscaler({
spec: {
minReplicas: 1,
maxReplicas: 10
}
});
❌ Incorrect manifest for this rule:
new HorizontalPodAutoscaler({
spec: {
minReplicas: 10,
maxReplicas: 1
}
});
new HorizontalPodAutoscaler({
spec: { maxReplicas: 0 }
});