FIX: Issue #7750 - Hyperkube needs certificates

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.
This commit is contained in:
Luke Benson 2015-05-05 11:26:13 +10:00
parent 868df8679a
commit bba2f9184f

View File

@ -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