运行kubectl explain pod.spec.containers显示:

   volumeDevices    <[]Object>
     volumeDevices is the list of block devices to be used by the container.
     This is a beta feature.

   volumeMounts <[]Object>
     Pod volumes to mount into the container's filesystem. Cannot be updated.

这两个容器属性之间有关系吗?

请注意,kubectl version显示:

最佳答案

“volumeDevices”是1.13中新的Beta功能的一部分,该功能允许Pod访问原始块卷而不是已装入的文件系统卷。这对于某些高级应用程序(例如数据库,可能具有自己的文件系统格式)很有用。

您可以找到官方文档here,尽管它似乎尚未针对1.13更新。

关于kubernetes - 带有k8s v1.13的 “volumeDevices”和 “volumeMounts”有什么区别,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53774009/

10-15 22:15