From 3ed5c7a8d761727d87c6f4c5ea02a1e93a74706b Mon Sep 17 00:00:00 2001 From: Minhan Xia Date: Wed, 24 Aug 2016 10:57:33 -0700 Subject: [PATCH] add ebtables into images --- build/debian-iptables/Dockerfile | 1 + build/debian-iptables/Makefile | 2 +- cluster/images/hyperkube/Dockerfile | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build/debian-iptables/Dockerfile b/build/debian-iptables/Dockerfile index 7c1c4d88640..d6e33b1eb83 100644 --- a/build/debian-iptables/Dockerfile +++ b/build/debian-iptables/Dockerfile @@ -22,5 +22,6 @@ CROSS_BUILD_COPY qemu-ARCH-static /usr/bin/ # cleanup has no effect. RUN DEBIAN_FRONTEND=noninteractive apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y iptables \ + && DEBIAN_FRONTEND=noninteractive apt-get install -y ebtables \ && DEBIAN_FRONTEND=noninteractive apt-get install -y conntrack \ && rm -rf /var/lib/apt/lists/* diff --git a/build/debian-iptables/Makefile b/build/debian-iptables/Makefile index 8be9b5b00b6..9dd5b1b0dc8 100644 --- a/build/debian-iptables/Makefile +++ b/build/debian-iptables/Makefile @@ -16,7 +16,7 @@ REGISTRY?="gcr.io/google_containers" IMAGE=debian-iptables -TAG=v3 +TAG=v4 ARCH?=amd64 TEMP_DIR:=$(shell mktemp -d) diff --git a/cluster/images/hyperkube/Dockerfile b/cluster/images/hyperkube/Dockerfile index 1281b18d79e..ef7bec009d2 100644 --- a/cluster/images/hyperkube/Dockerfile +++ b/cluster/images/hyperkube/Dockerfile @@ -21,6 +21,7 @@ CROSS_BUILD_COPY qemu-ARCH-static /usr/bin/ RUN DEBIAN_FRONTEND=noninteractive apt-get update -y \ && DEBIAN_FRONTEND=noninteractive apt-get -yy -q install \ iptables \ + ebtables \ ethtool \ ca-certificates \ conntrack \