9688f95f58
Change-Id: I5dbb030943abfa7eccc424859b694a508358c123 Partially-implements: blueprint third-party-plugin-support Co-Authored-By: Michal (inc0) Jastrzebski <inc007@gmail.com> Co-Authored-By: Paul Bourke <paul.bourke@oracle.com>
30 lines
863 B
Django/Jinja
30 lines
863 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}neutron-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_distro in ['ubuntu', 'debian'] %}
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% set neutron_metadata_agent_packages = [
|
|
'neutron-metadata-agent'
|
|
] %}
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(neutron_metadata_agent_packages | customizable("packages")) }}
|
|
|
|
COPY neutron_sudoers /etc/sudoers.d/neutron_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_neutron_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_neutron_extend_start \
|
|
&& chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/neutron_sudoers \
|
|
&& usermod -a -G kolla neutron
|
|
|
|
{% block neutron_metadata_agent_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER neutron
|