Add ceph fs containers
This PS adds containers for cephfs support. Including the ceph-mds and fuse cephfs filesystem. Change-Id: Ie270d6bbe08b608cfdba1bc378e9624f7fb3e791
This commit is contained in:
parent
b08f2cc60e
commit
679a507f6e
@ -10,6 +10,7 @@ MAINTAINER {{ maintainer }}
|
||||
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
||||
{% set ceph_base_packages = [
|
||||
'ceph',
|
||||
'ceph-fuse',
|
||||
'ceph-radosgw',
|
||||
'parted',
|
||||
'hdparm',
|
||||
@ -20,6 +21,7 @@ MAINTAINER {{ maintainer }}
|
||||
{% elif base_distro in ['ubuntu', 'debian'] %}
|
||||
{% set ceph_base_packages = [
|
||||
'ceph',
|
||||
'ceph-fuse',
|
||||
'radosgw',
|
||||
'parted',
|
||||
'hdparm',
|
||||
|
7
docker/ceph/ceph-mds/Dockerfile.j2
Normal file
7
docker/ceph/ceph-mds/Dockerfile.j2
Normal file
@ -0,0 +1,7 @@
|
||||
FROM {{ namespace }}/{{ image_prefix }}ceph-base:{{ tag }}
|
||||
MAINTAINER {{ maintainer }}
|
||||
|
||||
{% block ceph_mds_header %}{% endblock %}
|
||||
|
||||
{% block ceph_mds_footer %}{% endblock %}
|
||||
{% block footer %}{% endblock %}
|
11
docker/ceph/cephfs-fuse/Dockerfile.j2
Normal file
11
docker/ceph/cephfs-fuse/Dockerfile.j2
Normal file
@ -0,0 +1,11 @@
|
||||
FROM {{ namespace }}/{{ image_prefix }}ceph-base:{{ tag }}
|
||||
MAINTAINER {{ maintainer }}
|
||||
|
||||
{% block cephfs_fuse_header %}{% endblock %}
|
||||
|
||||
{% block cephfs_fuse_footer %}{% endblock %}
|
||||
{% block footer %}{% endblock %}
|
||||
|
||||
# Clear any customisation by Kolla to entrypoint & command
|
||||
ENTRYPOINT ["/usr/bin/ceph-fuse"]
|
||||
CMD []
|
Loading…
Reference in New Issue
Block a user