=== $ kubectl apply -f manifest.yaml === pod/grace90-pod created === $ kubectl -n istio-vt-t32 wait --for=condition=Ready pod/grace90-pod --timeout=60s === pod/grace90-pod condition met === $ T0=$(date +%s); kubectl -n istio-vt-t32 delete pod grace90-pod --wait=true; T1=$(date +%s); echo actual_delete_seconds=$((T1-T0)) === pod "grace90-pod" deleted from istio-vt-t32 namespace actual_delete_seconds=85 === supplementary: kubectl -n istio-vt-t32 get events --sort-by=.lastTimestamp (post-delete, for corroboration) === LAST SEEN TYPE REASON OBJECT MESSAGE 2m9s Normal Scheduled pod/grace90-pod Successfully assigned istio-vt-t32/grace90-pod to k8s-worker2 2m9s Normal Pulled pod/grace90-pod Container image "busybox:1.36" already present on machine 2m9s Normal Created pod/grace90-pod Created container sleeper 2m9s Normal Started pod/grace90-pod Started container sleeper 113s Normal Killing pod/grace90-pod Stopping container sleeper