6d0cd535d3
Change-Id: I9c770a08219d2eead5ece8e3462157359cd920cb Partially-Implements: blueprint ceph-improvements
29 lines
604 B
Django/Jinja
29 lines
604 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
ceph \
|
|
ceph-radosgw \
|
|
parted \
|
|
hdparm \
|
|
btrfs-progs \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
ceph \
|
|
radosgw \
|
|
parted \
|
|
hdparm \
|
|
btrfs-tools \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
RUN useradd --user-group ceph \
|
|
&& mkdir -p /home/ceph \
|
|
&& chown -R ceph: /home/ceph
|