func handlePodEvent(obj any, status string, f func(*coreV1.Pod)) {
    switch obj.(type) {
    case *coreV1.Pod:
        if f != nil {
            log.Debug().Msgf("Pod %s %s", obj.(*coreV1.Pod).Name, status)