mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
4b8b52e0de
Update CI merge job to build and push Arm64 image to quay.io/cephcsi/cephcsi:version-arm64. Add CI PR job running on Travis Arm64 nodes to make sure cephcsi compiles successfully on Arm64. No CI test job is availabe for Arm64 now due to below issues - k8s-csi sidecar images for Arm64 are not available - Travis Arm64 CI job runs inside unprivileged LXD which blocks launching minikube test environment Signed-off-by: Yibo Cai <yibo.cai@arm.com>
16 lines
517 B
Docker
16 lines
517 B
Docker
FROM ceph/ceph:v14.2
|
|
LABEL maintainers="Ceph-CSI Authors"
|
|
LABEL description="Ceph-CSI Plugin"
|
|
|
|
# To support cross building, do NOT RUN native binaries here.
|
|
# If we have to run native binaries, qemu-user-static must be installed on
|
|
# build host and mounted to container.
|
|
|
|
# Removing ceph-iscsi repo to workaround the repo issue while upgrading
|
|
#RUN rm -f /etc/yum.repos.d/ceph-iscsi.repo && yum -y update && yum clean all
|
|
ENV CSIBIN=/usr/local/bin/cephcsi
|
|
|
|
COPY cephcsi $CSIBIN
|
|
|
|
ENTRYPOINT ["/usr/local/bin/cephcsi"]
|