f96458fcbf
This patchset contains customization of Dockerfiles of openvswitch containers Change-Id: I9404fbee8552d5218ac57abf8a01bf259db729f5 Partially-implements: blueprint third-party-plugin-support
18 lines
683 B
Django/Jinja
18 lines
683 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set openvswitch_base_packages = ['openvswitch'] %}
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set openvswitch_base_packages = ['openvswitch-switch'] %}
|
|
|
|
{% endif %}
|
|
RUN {{ macros.install_packages(openvswitch_base_packages | customizable("packages")) }}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN touch /usr/local/bin/kolla_openvswitch_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_openvswitch_extend_start
|