首页 文章

输出:mount:未知文件系统类型'glusterfs'

提问于
浏览
1

FailedMount MountVolume.SetUp卷“kubernetes.io/glusterfs/f8c3bcce-42010a80007d-glusterfsmilogvol”(spec.Name:“glusterfsmilogvol”)pod“f8c3bcce-42010a80007d”(UID:“f8c3bcce - 42010a80007d”):glusterfs: mount失败:mount失败:退出状态32挂载参数:IPAddress:GlusterTestVol /var/lib/kubelet/pods/f8c3bcce-42010a80007d/volumes/kubernetes.io~glusterfs/glusterfstestlogvol glusterfs [log-level = ERROR log-file = / var /lib/kubelet/plugins/kubernetes.io/glusterfs/glusterfstestlogvol/pod-22ohg-glusterfs.log]输出:mount:未知文件系统类型'glusterfs'

1 回答

  • 1

    进一步分析显示我在Kubernetes 1.4上,其中gci作为节点的图像类型 . https://cloud.google.com/container-engine/docs/node-image-migration自Kubernetes 1.4以来,gci图像默认为GKE Container Cluster,并且它不支持GlusterFS FileSystem作为PV-Persistent Volume .

    因此,将图像类型从gci转换为container_vm

    gcloud container clusters upgrade --image-type=container_vm "test-cluster"

    另外,请注意, gci 尚不支持已弃用的 container-vm 支持的以下Kubernetes卷类型:

    NFS

    GlusterFS

    iSCSI的

相关问题