Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将一些文件复制到一个持久卷中,该卷稍后将安装在一个 pod 上。在示例中,我正在查看他们使用 NFS PV,这非常简单,因为我可以访问与 PV 关联的 NFS 文件系统,并且可以向其中添加文件。但是,当我使用 Openshift Container Storage 存储类(比如说 cephfs)时,我如何才能将文件实际添加到 PV(我要安装的操作员说必须将数据库 ODBC 驱动程序复制到 PV 并挂载)。
谢谢。
将 PV 挂载到不同的 pod 中,然后将其中的文件“oc cp”或“oc rsh ...”和 curl/wget/scp 从 pod 内部挂载到本地卷。
在现有的 pod 上,您还可以创建一个 sidecar 容器,例如,busybox 来挂载相同的 PV 并提供文件复制工具(如果它们不存在于主容器中)。