just code files

This commit is contained in:
Serguei Bezverkhi
2018-01-09 13:59:50 -05:00
parent 7b24313bd6
commit 27334ac60d
13 changed files with 1364 additions and 6 deletions

12
deploy/docker/Dockerfile Normal file
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"]