Hi All,
when i am creating a pod its status is showing ContainerCreating only..
I used below command to run a pod
[root@master ~]# kubectl run test --image=nginx
pod/test created
below are the status..
[root@master ~]# kubectl get po
NAME READY STATUS RESTARTS AGE
test 0/1 ContainerCreating 0 5m34s
test23 0/1 ContainerCreating 0 7s
[root@master ~]#
below are the error
[root@master ~]# kubectl logs test -f
Error from server (BadRequest): container "test" in pod "test" is waiting to start: ContainerCreating
[root@master ~]#