5cd30d4914
Closes-bug: #1616387 Change-Id: Id97f88b9baa3d48d33ce120962450a374282d044
36 lines
831 B
Django/Jinja
36 lines
831 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block cinder_api_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
|
|
{% set cinder_api_packages = [
|
|
'python-keystone'
|
|
] %}
|
|
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
|
|
{% set cinder_api_packages = [
|
|
'cinder-api'
|
|
] %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(cinder_api_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_cinder_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_cinder_extend_start
|
|
|
|
{% block cinder_api_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER cinder
|