Does kubernetes do concurrent unmounts for pods?

12/2/2016

I wanted to know,if a pod has more than one volume mounted to it then when we delete the pod , does kubernetes do a concurrent unmount of both the volumes ?.

-- Karthikeyan Vn
kubernetes

1 Answer

12/5/2016

When you delete a Pod, all volumes are unmounted.

As far as concurrency, I don't think this is done in parallel per-se, but I'm not sure why that would be important.

-- MrE
Source: StackOverflow