From 39d2ee2859f3156b9d3d94f8c9ba0e8ea3d22c7b Mon Sep 17 00:00:00 2001 From: Pawan Date: Thu, 9 Jul 2020 18:21:58 +0530 Subject: [PATCH] fix(zfspv): fixing mounting issue with xfs We changed the ubuntu docker image to 20.04 in https://github.com/openebs/zfs-localpv/pull/170, which has issues with formatting the zvol as xfs file system. The filesystem formatted with xfs is not able to mount with error : "missing codepage or helper program, or other error". Reverting back to ubuntu 19.10 to fix this issue. Signed-off-by: Pawan --- buildscripts/zfs-driver/Dockerfile | 2 +- changelogs/unreleased/179-pawanpraka1 | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelogs/unreleased/179-pawanpraka1 diff --git a/buildscripts/zfs-driver/Dockerfile b/buildscripts/zfs-driver/Dockerfile index f9b7524..10466c5 100644 --- a/buildscripts/zfs-driver/Dockerfile +++ b/buildscripts/zfs-driver/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ubuntu:20.04 +FROM ubuntu:19.10 RUN apt-get clean && rm -rf /var/lib/apt/lists/* RUN apt-get update; exit 0 RUN apt-get -y install rsyslog libssl-dev xfsprogs ca-certificates diff --git a/changelogs/unreleased/179-pawanpraka1 b/changelogs/unreleased/179-pawanpraka1 new file mode 100644 index 0000000..258869a --- /dev/null +++ b/changelogs/unreleased/179-pawanpraka1 @@ -0,0 +1 @@ +fixing xfs mounting issue on centos with ubuntu 20.04 image