From eb62ac4363b10c1ff76adeca63d1c6690ac7c0ca Mon Sep 17 00:00:00 2001 From: Mike Danese Date: Thu, 5 Jan 2017 13:42:26 -0800 Subject: [PATCH] add netlink and libxtables to kube-proxy image --- WORKSPACE | 10 ++++++++++ build/BUILD | 2 ++ 2 files changed, 12 insertions(+) diff --git a/WORKSPACE b/WORKSPACE index 1a1e69a57a1..cfe48c3cc77 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -31,6 +31,16 @@ debs = ( "7747388a97ba71fede302d70361c81d486770a2024185514c18b5d8eab6aaf4e", "http://ftp.us.debian.org/debian/pool/main/i/iptables/iptables_1.4.21-2+b1_amd64.deb", ), + ( + "libnetlink_deb", + "5d486022cd9e047e9afbb1617cf4519c0decfc3d2c1fad7e7fe5604943dbbf37", + "http://ftp.us.debian.org/debian/pool/main/libn/libnfnetlink/libnfnetlink0_1.0.1-3_amd64.deb", + ), + ( + "libxtables_deb", + "6783f316af4cbf3ada8b9a2b7bb5f53a87c0c2575c1903ce371fdbd45d3626c6", + "http://ftp.us.debian.org/debian/pool/main/i/iptables/libxtables10_1.4.21-2+b1_amd64.deb", + ), ( "iproute2_deb", "3ce9cb1d03a2a1359cbdd4f863b15d0c906096bf713e8eb688149da2f4e350bc", diff --git a/build/BUILD b/build/BUILD index befe459058a..35cb4392dab 100644 --- a/build/BUILD +++ b/build/BUILD @@ -29,6 +29,8 @@ docker_build( debs = [ "@iptables_deb//file", "@iproute2_deb//file", + "@libnetlink_deb//file", + "@libxtables_deb//file", ], )