fix kubectl describe static pod cann't get event messages

pull/564/head
gaorong 2019-02-16 09:51:21 +08:00
parent 40c91a0951
commit 5efbdb02bf
1 changed files with 3 additions and 0 deletions

View File

@ -642,6 +642,9 @@ func (d *PodDescriber) Describe(namespace, name string, describerSettings descri
klog.Errorf("Unable to construct reference to '%#v': %v", pod, err)
} else {
ref.Kind = ""
if _, isMirrorPod := pod.Annotations[corev1.MirrorPodAnnotationKey]; isMirrorPod {
ref.UID = types.UID(pod.Annotations[corev1.MirrorPodAnnotationKey])
}
events, _ = d.Core().Events(namespace).Search(scheme.Scheme, ref)
}
}