From bfafd085cb5b556c69183266842df83a902252c5 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Thu, 26 Jul 2018 20:52:31 -0400 Subject: [PATCH] Add dnsmasq to test/images/dnsutils We currently use k8s.gcr.io/k8s-dns-dnsmasq:1.14.5 in the dns_common.go file. Looking deeper, all we need is "/usr/sbin/dnsmasq" from that image. So just enhance the dnsutils image and throw dnsmasq into it. This makes it easier as the dockerfiles/sidecars etc in kubernetes/dns is not really needed. Note that a previous attempt to add manifests to that repo fell through in PR 30 in that repo (since we were moving to coredns). Change-Id: Ia6569b968994348d3b3bd741905300cf47b5808c --- test/images/dnsutils/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/images/dnsutils/Dockerfile b/test/images/dnsutils/Dockerfile index d041c62703f..5286aacd946 100644 --- a/test/images/dnsutils/Dockerfile +++ b/test/images/dnsutils/Dockerfile @@ -16,4 +16,4 @@ FROM BASEIMAGE CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/ -RUN apk add --no-cache bind-tools +RUN apk add --no-cache bind-tools dnsmasq