mirror of https://github.com/docker/docs.git
Update release-notes.md
This commit is contained in:
parent
583e7dd36b
commit
6311dfd7ec
|
|
@ -208,7 +208,7 @@ In order to optimize user experience and security, support for Internet Explorer
|
|||
{{[fs_types]...
|
||||
ext4 = {features = has_journal,extent,huge_file,flex_bg,metadata_csum,64bit,dir_nlink,extra_isizeinode_size = 256}}}
|
||||
```
|
||||
"metadata_csum" for ext4 is great. However, SLES12 and SLES15 call this an "experimental feature" and doesnt allow mounting of such blocks. The kubelet's mke2fs util looks up /etc/mke2fs.conf and formats the block volume with the checksum feature. Then the kubelet tries to mount the volume. But the kernel refuses to mount such a volume and errors with exit 32.
|
||||
"metadata_csum" for ext4 is great. However, SLES12 and SLES15 call this an "experimental feature" and doesn't allow mounting of such blocks. The kubelet's mke2fs util looks up /etc/mke2fs.conf and formats the block volume with the checksum feature. Then the kubelet tries to mount the volume. But the kernel refuses to mount such a volume and errors with exit 32.
|
||||
|
||||
Resolution:
|
||||
On SLES12 and SLES15 hosts, use `sed` to remove the `metadata_csum` feature from the ucp-kubelet container:`sed -i 's/metadata_csum,//g' /etc/mke2fs.conf`
|
||||
|
|
|
|||
Loading…
Reference in New Issue