func waitForPod(client *kubeclient.Client, id string) wait.ConditionFunc { return func() (bool, error) { _, err := client.GetPod(id) return (err == nil), nil } }