Fixing DNS resolution with latest busybox

Version `1.28.4` of busybox does the `nslookup` correctly as described in the tutorial, the `latest` does not. So it needs to be set explicitely. Fixes https://github.com/kelseyhightower/kubernetes-the-hard-way/issues/356. Also see https://github.com/docker-library/busybox/issues/48.
pull/384/head
Jonas Hecht 2018-09-04 14:50:29 +02:00 committed by GitHub
parent b974042d95
commit f8f267e81d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ kube-dns-3097350089-gq015 3/3 Running 0 20s
Create a `busybox` deployment:
```
kubectl run busybox --image=busybox --command -- sleep 3600
kubectl run busybox --image=busybox:1.28.4 --command -- sleep 3600
```
List the pod created by the `busybox` deployment: