73a39db326
Docker will change the name volume folder permission to image already set. /var/log/kolla is not created and well configured in image. This patch set creates and configures proper permission /var/log/kolla in base image. This patch set also fixed the ceph image by adding ceph user to kolla group. TrivialFix Change-Id: Ib5ef0187e90de2699b3cda31e819b4babb07e0af
34 lines
891 B
Django/Jinja
34 lines
891 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block ceph_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set ceph_base_packages = [
|
|
'ceph',
|
|
'ceph-radosgw',
|
|
'parted',
|
|
'hdparm',
|
|
'btrfs-progs'
|
|
] %}
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set ceph_base_packages = [
|
|
'ceph',
|
|
'radosgw',
|
|
'parted',
|
|
'hdparm',
|
|
'btrfs-tools'
|
|
] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(ceph_base_packages | customizable("packages")) }}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start \
|
|
&& usermod -a -G kolla ceph
|
|
|
|
{% block ceph_base_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|