如何在 KubeFlow 中创建和访问持久卷?
我们在 GCP 上创建了 KubeFlow 集群,并通过它部署了 ML 模型。现在我们要创建一个持久卷并将该卷映射到主机中的文件夹。 作为第一步,我必须创建一个 pv,因此我在 GCP 实例的 Jupyter 笔记本中尝试了这行代码。
vop = dsl.VolumeOp(
name="create-pvc",
resource_name="my-pvc",
modes=dsl.VOLUME_MODE_RWO,
size="1Gi"
)
运行成功。但我不确定该卷是否已创建。另外,如何检查卷是否存在。
We have created a KubeFlow cluster on GCP and deployed a ML model through it. Now we want to create a persistent volume and map that volume to a folder in out host machine.
As a first step I have to create a pv so, I have tried this line of code in Jupyter notebook of my GCP instance.
vop = dsl.VolumeOp(
name="create-pvc",
resource_name="my-pvc",
modes=dsl.VOLUME_MODE_RWO,
size="1Gi"
)
which is running successfully. But I am not sure if the volume is been created or not. Also, how to check if the volume is existing or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
.add_pvolumes({'/mnt': vop.volume})
到您的 ContainerOpUse
.add_pvolumes({'/mnt': vop.volume})
to your ContainerOp