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

Merge "Install plugins in neutron-server if available"

parents b121d3cf acb13dc5
No related branches found
No related tags found
No related merge requests found
FROM {{ namespace }}/{{ image_prefix }}neutron-base:{{ tag }} FROM {{ namespace }}/{{ image_prefix }}neutron-base:{{ tag }}
MAINTAINER {{ maintainer }} MAINTAINER {{ maintainer }}
ADD plugins-archive /
COPY extend_start.sh /usr/local/bin/kolla_extend_start COPY extend_start.sh /usr/local/bin/kolla_extend_start
RUN chmod 755 /usr/local/bin/kolla_extend_start RUN chmod 755 /usr/local/bin/kolla_extend_start \
&& if [[ "$(ls /plugins)" ]]; then \
pip --no-cache-dir install -c requirements/upper-constraints.txt /plugins/*; \
fi
{{ include_footer }} {{ include_footer }}
...@@ -126,6 +126,17 @@ location = http://tarballs.openstack.org/murano/murano-master.tar.gz ...@@ -126,6 +126,17 @@ location = http://tarballs.openstack.org/murano/murano-master.tar.gz
type = url type = url
location = http://tarballs.openstack.org/neutron/neutron-master.tar.gz location = http://tarballs.openstack.org/neutron/neutron-master.tar.gz
# The following two blocks show how plugins can be installed into supported
# images. Note, configuration will need to be provided via Ansible.
#
#[neutron-server-plugin-networking-arista]
#type = url
#location = http://tarballs.openstack.org/networking-arista/networking-arista-master.tar.gz
#[neutron-server-plugin-networking-brocade]
#type = url
#location = http://tarballs.openstack.org/networking-brocade/networking-brocade-master.tar.gz
[nova-base] [nova-base]
type = url type = url
location = http://tarballs.openstack.org/nova/nova-master.tar.gz location = http://tarballs.openstack.org/nova/nova-master.tar.gz
......
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