Thanks for the information. By checking the pod details:
kubectl describe pod nginx-844664bf47-cv864
I found following error:
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Warning Failed 36m (x1127 over 4d2h) kubelet, 97e19e62-34e2-4aba-9fbe-3802041cd50d Error: ErrImagePull
Normal Pulling 31m (x1128 over 4d2h) kubelet, 97e19e62-34e2-4aba-9fbe-3802041cd50d Pulling image "nginx:1.13-alpine"
Normal BackOff 16m (x25459 over 4d2h) kubelet, 97e19e62-34e2-4aba-9fbe-3802041cd50d Back-off pulling image "nginx:1.13-alpine"
Warning Failed 6m17s (x25501 over 4d2h) kubelet, 97e19e62-34e2-4aba-9fbe-3802041cd50d Error: ImagePullBackOff
I bosh ssh onto one worker node and manually run "sudo docker pull nginx:1.13-alpine" and get error:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
While it seems dockerd is running on local:
worker/31f784ba-b3dc-48d1-94b0-bfa40a29045e:~$ sudo lsof -i -n -P | grep -i listen
bosh-agen 752 root 6u IPv4 22954 0t0 TCP 127.0.0.1:2825 (LISTEN)
sshd 789 root 3u IPv4 4209089 0t0 TCP *:22 (LISTEN)
bosh-dns- 9140 vcap 3u IPv4 29506 0t0 TCP *:8853 (LISTEN)
bosh-dns 9208 vcap 3u IPv4 29532 0t0 TCP 169.254.0.2:53 (LISTEN)
bosh-dns 9208 vcap 5u IPv4 29534 0t0 TCP 127.0.0.1:53080 (LISTEN)
bosh-dns 9208 vcap 6u IPv4 29536 0t0 TCP 169.254.0.2:53 (LISTEN)
rpcbind 10590 root 8u IPv4 33807 0t0 TCP *:111 (LISTEN)
monit 11493 root 4u IPv4 34075 0t0 TCP 127.0.0.1:2822 (LISTEN)
dockerd 11584 root 6u IPv4 34937 0t0 TCP 127.0.0.1:4243 (LISTEN)
kubelet 12165 root 9u IPv4 35919 0t0 TCP 127.0.0.1:32831 (LISTEN)
kubelet 12165 root 25u IPv4 36525 0t0 TCP 127.0.0.1:10248 (LISTEN)
kubelet 12165 root 27u IPv4 36530 0t0 TCP *:10250 (LISTEN)
kube-prox 12234 root 11u IPv4 35139 0t0 TCP 127.0.0.1:10249 (LISTEN)
kube-prox 12234 root 12u IPv4 36137 0t0 TCP *:32347 (LISTEN)
kube-prox 12234 root 13u IPv4 35146 0t0 TCP *:10256 (LISTEN)
kube-prox 12234 root 14u IPv4 3066632 0t0 TCP *:32005 (LISTEN)
Anything I did wrong here?