From bba2f9184f9f8fcc2e7cba1eca10241694f4d9fc Mon Sep 17 00:00:00 2001 From: Luke Benson Date: Tue, 5 May 2015 11:26:13 +1000 Subject: [PATCH] FIX: Issue #7750 - Hyperkube needs certificates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds ‘ca-certificates’ package to dockerfile for building base hyperkube image. This resolves controller-manager issue connecting to cloud provider (experienced with AWS) when running services through kyperkube.Tested with AWS and kube 0.16.1 binaries. --- cluster/images/hyperkube/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/images/hyperkube/Dockerfile b/cluster/images/hyperkube/Dockerfile index b0794a9f517..380da38ea1b 100644 --- a/cluster/images/hyperkube/Dockerfile +++ b/cluster/images/hyperkube/Dockerfile @@ -1,7 +1,7 @@ FROM google/debian:wheezy RUN apt-get update -RUN apt-get -yy -q install iptables +RUN apt-get -yy -q install iptables ca-certificates COPY hyperkube /hyperkube RUN chmod a+rx /hyperkube