WIP cephfs CSI plugin

This commit is contained in:
gman
2018-03-05 12:59:47 +01:00
parent c4d775953b
commit 1c1b0eab1e
30 changed files with 1117 additions and 9 deletions

View File

@ -0,0 +1,12 @@
FROM centos:7
LABEL maintainers="Kubernetes Authors"
LABEL description="RBD CSI Plugin"
ENV CEPH_VERSION "luminous"
RUN yum install -y centos-release-ceph && \
yum install -y ceph-common e2fsprogs && \
yum clean all
COPY rbdplugin /rbdplugin
RUN chmod +x /rbdplugin
ENTRYPOINT ["/rbdplugin"]