Complete the command to start a debug session on a pod named 'webapp'.
kubectl debug [1] --image=busyboxYou need to specify the pod with the prefix pod/ to debug it directly.
Complete the command to create a debug pod named 'debugger' based on pod 'api-server'.
kubectl debug api-server --[1]=debugger --image=busyboxThe --copy-to flag creates a new debug pod named 'debugger'.
Fix the error in the command to debug pod 'db' by adding an interactive shell.
kubectl debug pod/db --image=busybox [1]The -it flag makes the container interactive with a terminal shell.
Fill both blanks to create a debug pod named 'test-debug' from pod 'backend' with no restart.
kubectl debug pod/backend --[1]=test-debug --[2]=Never --image=busybox
Use --copy-to to name the debug pod and --restart=Never to prevent restarts.
Fill all three blanks to create a debug pod named 'debugger' based on pod 'cache' with image 'busybox' and interactive shell.
kubectl debug pod/cache --[1]=debugger --image=[2] [3]
Use --copy-to to name the debug pod, specify the image busybox, and -it for interactive shell.