Kubernetes pod: “无操作许可” 尝试访问挂载的卷时

huangapple go评论83阅读模式
英文:

Kubernetes pod: "Operation not permitted" while trying to access a mounted volume

问题

我正在运行 Windows 10 上的 Docker Desktop 4.10,启用了 K8s。我通过 Helm 3.12 使用 helm chart 部署了以下 k8s 资源:

  1. apiVersion: v1
  2. kind: PersistentVolume
  3. metadata:
  4. name: fab-rabbitmq
  5. labels:
  6. type: mydata
  7. spec:
  8. capacity:
  9. storage: 2Gi
  10. accessModes:
  11. - ReadWriteOnce
  12. storageClassName: hostpath
  13. hostPath:
  14. path: /c/data
  15. ---
  16. apiVersion: v1
  17. kind: PersistentVolumeClaim
  18. metadata:
  19. name: pvc1
  20. spec:
  21. accessModes:
  22. - ReadWriteOnce
  23. volumeMode: Filesystem
  24. resources:
  25. requests:
  26. storage: 2Gi
  27. storageClassName: hostpath
  28. selector:
  29. matchLabels:
  30. type: "mydata"
  31. ---
  32. apiVersion: v1
  33. kind: Pod
  34. metadata:
  35. name: pod1
  36. spec:
  37. containers:
  38. - name: myfrontend
  39. image: nginx
  40. volumeMounts:
  41. - mountPath: "/mydata"
  42. name: vol1
  43. volumes:
  44. - name: vol1
  45. persistentVolumeClaim:
  46. claimName: pvc1

在部署图表后,Pod 正确运行,PVC 绑定到 PV。我还将 Windows 安全权限设置为 C:\data 上的 Everyone 具有完全控制权。

然而,当我访问 Pod 并尝试列出文件夹中的文件时,我收到以下错误:

  1. kubectl exec -it pod1 bash
  2. # ls -la mydata
  3. ls: reading directory 'mydata': Operation not permitted

我似乎找不到真正访问挂载文件夹的方法。

当我尝试使用 docker run -v /c/data:/mydata nginx 运行一个简单的容器并访问 /mydata 时,它可以工作。

你有什么想法,我做错了什么?

英文:

I am running Docker Desktop 4.10 on Windows 10, with K8s enabled. I have the following k8s resources deployed through a helm chart, using Helm 3.12:

  1. apiVersion: v1
  2. kind: PersistentVolume
  3. metadata:
  4. name: fab-rabbitmq
  5. labels:
  6. type: mydata
  7. spec:
  8. capacity:
  9. storage: 2Gi
  10. accessModes:
  11. - ReadWriteOnce
  12. storageClassName: hostpath
  13. hostPath:
  14. path: /c/data
  15. ---
  16. apiVersion: v1
  17. kind: PersistentVolumeClaim
  18. metadata:
  19. name: pvc1
  20. spec:
  21. accessModes:
  22. - ReadWriteOnce
  23. volumeMode: Filesystem
  24. resources:
  25. requests:
  26. storage: 2Gi
  27. storageClassName: hostpath
  28. selector:
  29. matchLabels:
  30. type: "mydata"
  31. ---
  32. apiVersion: v1
  33. kind: Pod
  34. metadata:
  35. name: pod1
  36. spec:
  37. containers:
  38. - name: myfrontend
  39. image: nginx
  40. volumeMounts:
  41. - mountPath: "/mydata"
  42. name: vol1
  43. volumes:
  44. - name: vol1
  45. persistentVolumeClaim:
  46. claimName: pvc1

After deploying the chart, the pod runs correctly, the PVC is bound to the PV. I also set Windows security permissions to Everyone-full control on C:\data.

However, when I access the pod and try to list the files in the folder, I get the following error:

  1. kubectl exec -it pod1 bash
  2. # ls -la mydata
  3. ls: reading directory 'mydata': Operation not permitted

I can't seem to find a way to really have access to the mounted folder.

When I try to run a simple container using docker run -v /c/data:/mydata nginx and access /mydata, it works.

Any ideas what I am doing wrong?

答案1

得分: 1

我在这里这里找到了解释。在Minikube中运行时,“主机路径”实际上不是物理主机上的路径,而是Minikube节点内的路径。这是因为Minikube实际上是所有Pod的主机(因此它们的节点)。所以基本上,正确执行这个操作的步骤如下:

  1. 通过运行 minimuke start --mount --mount-string=C:\myfolder:/folder/in/minikube 确保物理路径在Minikube内挂载。
  2. 在设置PV时,指定:hostPath.path: /folder/in/minikube:/folder/in/pod
英文:

I found the explanation here and here. When running in Minikube, the "host path" is not actually the path on the physical host but rather a path inside the Minikube node. That's because Minikube IS actually the host of all pods (hence their node). So basically, the steps to do this correctly are:

  1. Ensure the physical path is mounted inside Minikube by running minimuke start --mount --mount-string=C:\myfolder:/folder/in/minikube
  2. When setting up the PV, specify: hostPath.path: /folder/in/minikube:/folder/in/pod

huangapple
  • 本文由 发表于 2023年6月8日 00:43:40
  • 转载请务必保留本文链接:https://go.coder-hub.com/76425478.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定