3486d5bda3
In ubuntu, the tar binary path is /bin/tar instead of /usr/bin/tar. Change to use tar directly for all os. TrivialFix Change-Id: I12562d3ac186acab651ffae715e5c7788cd98b7e
31 lines
1.0 KiB
Django/Jinja
31 lines
1.0 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}magnum-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set magnum_conductor_packages = [
|
|
'openstack-magnum-conductor',
|
|
'tar'
|
|
] %}
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set magnum_conductor_packages = ['magnum-conductor'] %}
|
|
{% endif %}
|
|
RUN {{ macros.install_packages(magnum_conductor_packages | customizable("packages")) }}
|
|
|
|
# Install kubectl binary (ugh)
|
|
RUN cd /tmp \
|
|
&& curl -L https://github.com/GoogleCloudPlatform/kubernetes/releases/download/v0.15.0/kubernetes.tar.gz -o /tmp/kubernetes.tar.gz \
|
|
&& tar -xzvf /tmp/kubernetes.tar.gz \
|
|
&& cp -a /tmp/kubernetes/platforms/linux/amd64/kubectl /usr/bin/kubectl \
|
|
&& rm -rf /tmp/kubernetes
|
|
|
|
{% endif %}
|
|
|
|
{% block magnum_conductor_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER magnum
|