Currently we are enabling repos irrespective of rpm/deb statement blocks and not failing in the method used if a repository is missing. Downside is - we might be producing one more layer, but it probably is a more logical approach. This is required for adding rpm support in repos.yaml that will also include failing on missing repositories. Change-Id: I5479c5c935760f00fe4cd307366f261deee3199f Signed-off-by: Michal Nasiadka <mnasiadka@gmail.com>
55 lines
1.8 KiB
Django/Jinja
55 lines
1.8 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block glance_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='glance') }}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
|
|
{{ macros.enable_extra_repos(['ceph', 'epel']) }}
|
|
|
|
{% set glance_base_packages = [
|
|
'python3-rados',
|
|
'python3-rbd'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set glance_base_packages = [
|
|
'python3-rados',
|
|
'python3-rbd'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(glance_base_packages | customizable("packages")) }}
|
|
|
|
ADD glance-base-archive /glance-base-source
|
|
|
|
{% set glance_base_pip_packages = [
|
|
'/glance',
|
|
'glance_store[cinder,vmware,swift,s3]'
|
|
] %}
|
|
|
|
# add missing rootwrap config present in glance_store repo
|
|
COPY etc/glance /etc/glance
|
|
COPY glance_sudoers /etc/sudoers.d/kolla_glance_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN ln -s glance-base-source/* glance \
|
|
&& {{ macros.install_pip(glance_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/glance \
|
|
&& cp -r /glance/etc/* /etc/glance/ \
|
|
&& cp /var/lib/kolla/venv/etc/pycadf/glance_api_audit_map.conf /etc/glance/ \
|
|
&& sed -i 's|^exec_dirs.*|exec_dirs=/var/lib/kolla/venv/bin,/sbin,/usr/sbin,/bin,/usr/bin,/usr/local/bin,/usr/local/sbin|g' /etc/glance/rootwrap.conf \
|
|
&& chmod 750 /etc/sudoers.d \
|
|
&& chmod 440 /etc/sudoers.d/kolla_glance_sudoers \
|
|
&& touch /usr/local/bin/kolla_glance_extend_start \
|
|
&& chmod 644 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_glance_extend_start
|
|
|
|
{{ macros.kolla_patch_sources() }}
|
|
|
|
{% block glance_base_footer %}{% endblock %}
|