kubectl attach to a running container code example
Example 1: kubectl exec ls -lah
kubectl exec <pod_name> -- ls -la /
Example 2: kubectl run pod
kubectl run <pod-name> --image=<image> --restart=Never
kubectl exec <pod_name> -- ls -la /
kubectl run <pod-name> --image=<image> --restart=Never