Skip to content
Snippets Groups Projects
Commit 8306864e authored by Kirill Shileev's avatar Kirill Shileev
Browse files

Customizations for Glance

This patchset contains customization of Dockerfile of Glance
containers

Also removed mkdir /etc/ceph as obsolete.

Change-Id: I3ba6e0d2dca1ecf72cf9f1b00e05e6955611c361
Partially-implements: blueprint third-party-plugin-support
parent 8f90e62b
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,8 @@ MAINTAINER {{ maintainer }}
COPY extend_start.sh /usr/local/bin/kolla_glance_extend_start
RUN chmod 755 /usr/local/bin/kolla_glance_extend_start
{% block glance_api_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }}
USER glance
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% import "macros.j2" as macros with context %}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
openstack-glance \
python-rbd \
python-rados \
&& yum clean all \
&& mkdir -p /etc/ceph/
{% set glance_base_packages = [
'openstack-glance',
'python-rbd',
'python-rados'
] %}
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install --no-install-recommends \
glance \
python-rbd \
python-rados \
&& apt-get clean \
&& mkdir -p /etc/ceph/
{% set glance_base_packages = [
'glance',
'python-rbd',
'python-rados'
] %}
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
python-rbd \
python-rados \
&& yum clean all \
&& mkdir -p /etc/ceph/
RUN {{ macros.install_packages(glance_base_packages | customizable("packages")) }}
{% elif base_distro in ['ubuntu', 'debian'] %}
{% elif install_type == 'source' %}
{% set glance_base_packages = [
'python-rbd',
'python-rados'
] %}
RUN apt-get -y install --no-install-recommends \
python-rbd \
python-rados \
&& apt-get clean \
&& mkdir -p /etc/ceph/
{% endif %}
RUN {{ macros.install_packages(glance_base_packages | customizable("packages")) }}
ADD glance-base-archive /glance-base-source
RUN ln -s glance-base-source/* glance \
......@@ -58,3 +46,7 @@ RUN usermod -a -G kolla glance \
&& chmod 440 /etc/sudoers.d/kolla_glance_sudoers \
&& touch /usr/local/bin/kolla_glance_extend_start \
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_glance_extend_start
{% block glance_base_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }}
FROM {{ namespace }}/{{ image_prefix }}glance-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% block glance_registry_footer %}{% endblock %}
{% block footer %}{% endblock %}
{{ include_footer }}
USER glance
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