Open
Description
There is an issue in pod readiness condition:
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.
Metadata
Metadata
Assignees
Labels
No labels