Skip to content

Commit

Permalink
fix(zfspv): fixing mounting issue with xfs
Browse files Browse the repository at this point in the history
We changed the ubuntu docker image to 20.04 in #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>
  • Loading branch information
pawanpraka1 authored and kmova committed Jul 9, 2020
1 parent a4bdaec commit ebec25f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion buildscripts/zfs-driver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions changelogs/unreleased/179-pawanpraka1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fixing xfs mounting issue on centos with ubuntu 20.04 image

0 comments on commit ebec25f

Please sign in to comment.