304c69a91f
This patchset contains customization of Dockerfile of Ceph containers Change-Id: I20bc27f2c4c6025ea35c8b48c40aee9919553254 Partially-implements: blueprint third-party-plugin-support Signed-off-by: Eduardo Gonzalez <dabarren@gmail.com>
34 lines
911 B
Django/Jinja
34 lines
911 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
{% 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 %}
|
|
RUN {{ 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
|
|
|
|
RUN useradd --user-group ceph \
|
|
&& mkdir -p /home/ceph \
|
|
&& chown -R ceph: /home/ceph
|
|
|
|
{% block ceph_base_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|