type podCondition … // waitForPodsCondition waits for `podCount` number of pods to match a specific pod condition within a timeout duration. // If the timeout is hit, it returns the list of currently running pods. func waitForPodsCondition(ctx context.Context, f *framework.Framework, podCount int, timeout time.Duration, condition podCondition) (runningPods []*v1.Pod) { … } var _ …