From e1c919bddb76c31fe195755fb55fde740035b287 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Mon, 4 May 2020 12:52:30 +0530 Subject: [PATCH] revert back the ceph base image to 14.2 as we are facing the xfs format issue ie ` wrong fs type, bad option, bad superblock on /dev/rbdx, missing codepage or helper program, or other error` as the xfsprogs version has changed in ceph:v15 base image. due to this cephcsi is not working in older kernel versions updates #966 Signed-off-by: Madhu Rajanna --- deploy/cephcsi/image/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/cephcsi/image/Dockerfile b/deploy/cephcsi/image/Dockerfile index 03b2adf12..dd41a7217 100644 --- a/deploy/cephcsi/image/Dockerfile +++ b/deploy/cephcsi/image/Dockerfile @@ -1,6 +1,6 @@ ARG SRC_DIR="/go/src/github.com/ceph/ceph-csi/" ARG GO_ARCH -ARG BASE_IMAGE=ceph/ceph:v15 +ARG BASE_IMAGE=ceph/ceph:v14.2 FROM ${BASE_IMAGE} as builder @@ -17,7 +17,7 @@ ARG GOROOT=/usr/local/go RUN mkdir -p ${GOROOT} && \ curl https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-${GO_ARCH}.tar.gz | tar xzf - -C ${GOROOT} --strip-components=1 -RUN dnf install libcephfs-devel librados-devel librbd-devel /usr/bin/cc make -y +RUN yum install libcephfs-devel librados-devel librbd-devel /usr/bin/cc make -y ENV GOROOT=${GOROOT} \ GOPATH=/go \