- Home
- All questions
- Question 865
CKA study material · question 865 of 1000
A debug copy adds an Ubuntu container beside a distroless application container, but the new container cannot see the application's processes. Which flag was missed?
Show the answer
Answer: C. --share-processes
--share-processes shares the process namespace across the Pod's containers, which is what lets a tools container inspect a distroless one.
Source: Debug Running Pods (Kubernetes) — Debugging using a copy of the Pod › Copying a Pod while adding a new container