Wait waits up to the given timeout for the specified resources to be ready.
(resources ResourceList, timeout time.Duration)
| 81 | type Waiter interface { |
| 82 | // Wait waits up to the given timeout for the specified resources to be ready. |
| 83 | Wait(resources ResourceList, timeout time.Duration) error |
| 84 | |
| 85 | // WaitWithJobs wait up to the given timeout for the specified resources to be ready, including jobs. |
| 86 | WaitWithJobs(resources ResourceList, timeout time.Duration) error |
no outgoing calls