mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-11 22:10:11 +01:00
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:
parent
a4bdaec3f2
commit
39d2ee2859
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
1
changelogs/unreleased/179-pawanpraka1
Normal file
1
changelogs/unreleased/179-pawanpraka1
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
fixing xfs mounting issue on centos with ubuntu 20.04 image
|
||||||
Loading…
Add table
Add a link
Reference in a new issue