fix: allow autoscaling config to have zero min replicas

This commit is contained in:
Jose Diaz-Gonzalez
2024-11-15 23:11:54 -05:00
parent fcb590d227
commit 50f8099ebb

View File

@@ -146,7 +146,7 @@ type ProcessAutoscaling struct {
MaxReplicas int `yaml:"max_replicas,omitempty"`
// MinReplicas is the minimum number of replicas to scale to
MinReplicas int `yaml:"min_replicas,omitempty"`
MinReplicas int `yaml:"min_replicas"`
// PollingIntervalSeconds is the number of seconds between polling for new metrics
PollingIntervalSeconds int `yaml:"polling_interval_seconds,omitempty"`