Merge "Port openvswitch to docker_templates"
This commit is contained in:
commit
c790fb6c6a
14
docker_templates/openvswitch/ovs-base/Dockerfile.j2
Normal file
14
docker_templates/openvswitch/ovs-base/Dockerfile.j2
Normal file
@ -0,0 +1,14 @@
|
||||
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 %}
|
17
docker_templates/openvswitch/ovs-db-server/Dockerfile.j2
Normal file
17
docker_templates/openvswitch/ovs-db-server/Dockerfile.j2
Normal file
@ -0,0 +1,17 @@
|
||||
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"]
|
1
docker_templates/openvswitch/ovs-db-server/config-external.sh
Symbolic link
1
docker_templates/openvswitch/ovs-db-server/config-external.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../docker/common/openvswitch/ovs-db-server/config-external.sh
|
1
docker_templates/openvswitch/ovs-db-server/start.sh
Symbolic link
1
docker_templates/openvswitch/ovs-db-server/start.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../docker/common/openvswitch/ovs-db-server/start.sh
|
17
docker_templates/openvswitch/ovs-vswitchd/Dockerfile.j2
Normal file
17
docker_templates/openvswitch/ovs-vswitchd/Dockerfile.j2
Normal file
@ -0,0 +1,17 @@
|
||||
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"]
|
1
docker_templates/openvswitch/ovs-vswitchd/config-external.sh
Symbolic link
1
docker_templates/openvswitch/ovs-vswitchd/config-external.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../docker/common/openvswitch/ovs-vswitchd/config-external.sh
|
@ -0,0 +1 @@
|
||||
../../../docker/common/openvswitch/ovs-vswitchd/ovs_ensure_configured.sh
|
1
docker_templates/openvswitch/ovs-vswitchd/start.sh
Symbolic link
1
docker_templates/openvswitch/ovs-vswitchd/start.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../docker/common/openvswitch/ovs-vswitchd/start.sh
|
Loading…
Reference in New Issue
Block a user