Skip to content
Snippets Groups Projects
Commit c790fb6c authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Port openvswitch to docker_templates"

parents 71918cca 615b7a27
No related branches found
No related tags found
No related merge requests found
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
MAINTAINER Kolla Project (https://launchpad.net/kolla)
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
RUN yum install -y openvswitch \
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
MAINTAINER Kolla Project (https://launchpad.net/kolla)
# TODO (rbergero): When ovs support is added for ubuntu/debian, this
# conditional should be removed.
{% if base_distro in ['ubuntu', 'debian'] %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
COPY start.sh /
COPY config-external.sh /opt/kolla/
CMD ["/start.sh"]
../../../docker/common/openvswitch/ovs-db-server/config-external.sh
\ No newline at end of file
../../../docker/common/openvswitch/ovs-db-server/start.sh
\ No newline at end of file
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
MAINTAINER Kolla Project (https://launchpad.net/kolla)
# TODO (rbergero): When ovs support is added for ubuntu/debian, this
# conditional should be removed.
{% if base_distro in ['ubuntu', 'debian'] %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
COPY start.sh /
COPY ovs_ensure_configured.sh config-external.sh /opt/kolla/
CMD ["/start.sh"]
../../../docker/common/openvswitch/ovs-vswitchd/config-external.sh
\ No newline at end of file
../../../docker/common/openvswitch/ovs-vswitchd/ovs_ensure_configured.sh
\ No newline at end of file
../../../docker/common/openvswitch/ovs-vswitchd/start.sh
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment