Kubernetes - 无法在 Azure 文件共享上安装 Windows 路径(Linux 安装正常)

Kubernetes - cannot have Windows path mounted on Azure File Share (Linux mounting works properly )

首先我成功挂载了我在 Pod 上的 Linux 路径。 我使用了 azure 文件共享,安装的文件夹出现在文件共享上。

    volumeMounts:
      - name: ads-filesharevolume
        mountPath: /opt/front/arena/host
  volumes:
  - name: ads-filesharevolume
    azureFile:
      secretName: fa-fileshare-secret
      shareName: faselectaksshare
      readOnly: false

现在在文件共享上我添加了一个子文件夹“windows”用于挂载,在日志中它提到它正在正确挂载但我没有挂载任何东西(文件夹和文件不会出现在挂载的共享上,例如Linux)

就是这种情况
   args: [ "-license_file", "C:/Host/dat/license.dat",
           "-key_file", "C:/Host/dat/license.key"]
    volumeMounts:
      - name: ads-win-filesharevolume
        mountPath: "C:\host"
  volumes:
  - name: ads-win-filesharevolume
    azureFile:
      secretName: fa-fileshare-secret
      shareName: faselectaksshare\windows
      readOnly: false

对于 mountPath,我尝试了:C:\hostC:/host 以及 /c/host 同样对于 shareName 我最初尝试使用 faselectaksshare/windows 但它引发了异常。

在 Pod describe 中,我可以看到一切正常,但我预期的 C:/host 文件夹没有出现在我的 windows 子文件夹中的 Azure 文件共享路径中。对于所有其他情况,我也收到类似的输出。

 Mounts:
      /var/run/secrets/kubernetes.io/serviceaccount from default-token-nx49r (ro)
      C:/host from ads-win-filesharevolume (rw)
Conditions:
  Type              Status
  Initialized       True
  Ready             False
  ContainersReady   False
  PodScheduled      True
Volumes:
  ads-win-filesharevolume:
    Type:        AzureFile (an Azure File Service mount on the host and bind mount to the pod)
    SecretName:  fa-fileshare-secret
    ShareName:   faselectaksshare\windows
    ReadOnly:    false

请帮忙!谢谢

更新: 我也用 subPath 尝试过这种方法,但我没有安装任何文件夹。我也没有在日志或 describe pod 命令中收到任何错误

volumeMounts:
  - name: ads-filesharevolume
    mountPath: /host
    subPath: windows
  volumes:
  - name: ads-filesharevolume
    azureFile:
      secretName: fa-fileshare-secret
      shareName: faselectaksshare
      readOnly: false

kubelet 应该将 Azure 文件共享装载到容器中

它使用https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/mount-utils/mount_windows.go and https://github.com/kubernetes/kubernetes/blob/master/pkg/volume/azure_file/azure_file.go

它使用 SMB 映射,然后使用 mklink 将 Azure 文件共享装载到容器中

请在 Windows 节点中启动 kubelet,其中 Pod 是 运行 并且应该使用 --v 4 标志安装 Azure 文件共享,以便我们在 kubelet 日志中看到调试消息当它尝试将 Azure 文件共享装载到容器中时。然后请提供 kubelet 日志中的消息。您应该会看到来自 https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/mount-utils/mount_windows.go

的以下消息
klog.V(3).Infof("mounting source (%q), target (%q), with options (%q)", source, target, sanitizedOptionsForLogging)

klog.V(4).Infof("mount options(%q) source:%q, target:%q, fstype:%q, begin to mount",
        sanitizedOptionsForLogging, source, target, fstype)

            klog.Warningf("SMB Mapping(%s) returned with error(%v), output(%s)", source, err, string(output))

klog.V(2).Infof("SMB Mapping(%s) already exists while it's not valid, return error: %v, now begin to remove and remount", source, err)

klog.V(2).Infof("SMB Mapping(%s) already exists and is still valid, skip error(%v)", source, err)

klog.Errorf("mklink failed: %v, source(%q) target(%q) output: %q", err, mklinkSource, target, string(output))

klog.V(2).Infof("mklink source(%q) on target(%q) successfully, output: %q", mklinkSource, target, string(output))

同时 Windows 和 Linux 个容器 运行:

为 Linux 安装:

    volumeMounts:
    - name: azure
      mountPath: /mnt/azure
volumes:
  - name: azure
    azureFile:
        shareName: aksshare/linux
        secretName: azure-secret

为 Windows 安装:

    volumeMounts:
    - name: azure
        mountPath: "C:\fileshare"
volumes:
- name: azure
  azureFile:
  shareName: aksshare\windows
  secretName: azure-secret

并且文件共享的每个子文件夹中存在的文件不影响其他文件。

根据以下线程,wsl2 尚不支持 hostPath 卷。

线程来源:https://github.com/docker/for-win/issues/5325 看这条评论:https://github.com/docker/for-win/issues/5325#issuecomment-570683131

尝试更改此行

 # For "C://host"
 mountPath: /run/desktop/mnt/host/c/host