5b45d47369
This patchset contains customization of Dockerfile of magnum containers Change-Id: I0655cab1f1fc12bc109a49a20874170b5a99125e Partially-implements: blueprint third-party-plugin-support Signed-off-by: Eduardo Gonzalez <dabarren@gmail.com>
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 \
|
|
&& /usr/bin/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
|