
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.
11 lines
274 B
Docker
11 lines
274 B
Docker
FROM google/debian:wheezy
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -yy -q install iptables ca-certificates
|
|
COPY hyperkube /hyperkube
|
|
RUN chmod a+rx /hyperkube
|
|
|
|
|
|
COPY master-multi.json /etc/kubernetes/manifests-multi/master.json
|
|
COPY master.json /etc/kubernetes/manifests/master.json
|