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 <pawan@mayadata.io>
This commit is contained in:
Pawan 2020-07-09 18:21:58 +05:30 committed by Pawan Prakash Sharma
parent a4bdaec3f2
commit 39d2ee2859
2 changed files with 2 additions and 1 deletions

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # 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 clean && rm -rf /var/lib/apt/lists/*
RUN apt-get update; exit 0 RUN apt-get update; exit 0
RUN apt-get -y install rsyslog libssl-dev xfsprogs ca-certificates RUN apt-get -y install rsyslog libssl-dev xfsprogs ca-certificates

View file

@ -0,0 +1 @@
fixing xfs mounting issue on centos with ubuntu 20.04 image