7ca1e19e06
Make the changes needed to support Ubuntu Additionally, adjust the way supervisor is installed. Rather than installing via pip, install via a package. Change-Id: I1e7f538a180e4e35166d5afa8ba3f165b7e9f6d5 Partially-Implements: blueprint install-from-ubuntu Closes-Bug: #1487715
52 lines
1.5 KiB
Django/Jinja
52 lines
1.5 KiB
Django/Jinja
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net.kolla)
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux'] %}
|
|
|
|
RUN yum -y install openstack-neutron \
|
|
openstack-neutron-ml2 \
|
|
openvswitch \
|
|
&& yum clean all
|
|
|
|
# TODO (sdake): remove once RDO adds to the openstack-neutron package
|
|
RUN pip install oslo.versionedobjects
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN echo '{{ install_type}} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
{% if base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
iptables \
|
|
dnsmasq \
|
|
uuid-runtime \
|
|
ipset \
|
|
openvswitch-switch \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
ADD ./neutron.tar /
|
|
RUN ln -s /neutron-* /neutron
|
|
|
|
RUN cd /neutron \
|
|
&& useradd --user-group neutron \
|
|
&& pip install -r requirements.txt \
|
|
&& pip install --install-option="--install-scripts=/usr/bin" /neutron \
|
|
&& mkdir -p /etc/neutron /usr/share/neutron /var/log/neutron /home/neutron \
|
|
&& cp -r etc/* /etc/neutron/ \
|
|
&& cp -r etc/neutron/* /etc/neutron/ \
|
|
&& cp etc/api-paste.ini /usr/share/neutron \
|
|
&& mv /etc/neutron/neutron/ /etc/neutron/plugins/ \
|
|
&& chown -R neutron: /etc/neutron /var/log/neutron /home/neutron \
|
|
&& rm -rf /root/.cache
|
|
|
|
{% endif %}
|
|
|
|
COPY config-sudoers.sh /opt/kolla/
|