You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It checks that "pod start time" + "readiness delay" > "last ready condition transition" to include pod into calculations.
If ready state transition happened faster than readiness delay, pod will stay in ignored state forever.
More probably it should be: condition.LastTransitionTime.Time.Add(delayOfInitialReadinessStatus).After(time.Now())
At the moment readinessDelaySeconds for resource metrics can't be used. Work around is to set it to 1.
The text was updated successfully, but these errors were encountered:
There is an issue in pod readiness condition:
watermarkpodautoscaler/controllers/datadoghq/replica_calculator.go
Line 605 in c524600
It checks that "pod start time" + "readiness delay" > "last ready condition transition" to include pod into calculations.
If ready state transition happened faster than readiness delay, pod will stay in ignored state forever.
More probably it should be:
condition.LastTransitionTime.Time.Add(delayOfInitialReadinessStatus).After(time.Now())
At the moment
readinessDelaySeconds
for resource metrics can't be used. Work around is to set it to 1.The text was updated successfully, but these errors were encountered: