Merge "kubernetes: disable for architectures other than x86-64"

This commit is contained in:
Jenkins 2017-04-10 09:44:36 +00:00 committed by Gerrit Code Review
commit d0b4896436

View File

@ -3,6 +3,13 @@ MAINTAINER {{ maintainer }}
ENV KUBERNETES_VERSION=v1.5.4
{% if base_arch != 'x86_64' %}
RUN echo 'Kubernetes images not yet available for {{ base_arch }}' \
&& /bin/false
{% endif %}
ENV KUBERNETES_DOWNLOAD_ROOT=https://storage.googleapis.com/kubernetes-release/release/${KUBERNETES_VERSION}/bin/linux/amd64
{% block kube_base_header %}{% endblock %}