From f8f267e81d88753f5d5e68a962c9ddb40a8294f7 Mon Sep 17 00:00:00 2001 From: Jonas Hecht Date: Tue, 4 Sep 2018 14:50:29 +0200 Subject: [PATCH] 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. --- docs/12-dns-addon.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/12-dns-addon.md b/docs/12-dns-addon.md index 5ce94da3a..72c258fa3 100644 --- a/docs/12-dns-addon.md +++ b/docs/12-dns-addon.md @@ -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: