diff --git a/internal/render/pod.go b/internal/render/pod.go index e78073528a..33ce957304 100644 --- a/internal/render/pod.go +++ b/internal/render/pod.go @@ -172,6 +172,9 @@ func (p Pod) diagnose(phase string, cr, ct int) error { if cr != ct || ct == 0 { return fmt.Errorf("container ready check failed: %d of %d", cr, ct) } + if phase == Terminating { + return fmt.Errorf("pod is terminating") + } return nil }