What is the difference between `kubectl delete pod <name>` and `kubectl delete pod <name> --force --grace-period=0`?
-
A
There is no difference; both remove the Pod immediately
-
B
The second command bypasses the graceful termination period and forcefully removes the Pod
-
C
The second command only removes the Pod from etcd but leaves the container running
-
D
The first command removes only the Pod spec; the second removes all associated resources