kubernetes: how to see this debian container?

Fast question. Nerdctl report this container running

nerdctl --namespace k8s.io image ls|grep -i debian
debian                                     13122025    2d9f95f25185    8 minutes ago    linux/amd64    160.4MB    66.63MB
debian                                     latest      0d01188e8dd0    3 days ago       linux/amd64    133.9MB    49.29MB

My question is..how to see it using standard kubernetes tool?

This command return nothing

 kubectl get pods --all-namespaces -o=custom-columns=NameSpace:.metadata.namespace,NAME:.metadata.name,CONTAINERS:.spec.containers[*].name|grep -i debi

I have start the container using this command

nerdctl --namespace k8s.io container start debian

Read more here: Source link