我有这样的文件树:
- /根
- /child1
- file1
- file2
- /child2
- file3
- /child1
我正在尝试使用以下文件树为pod(到k8s作业)创建卷挂载:
- /共享
- file1
- file2
- file3
有很多文件,所以我不想把它们复制到临时文件
是否可以使用Pod配置或我是否需要在主机上创建临时符号链接?
看起来你的pod只需要访问/shared。
在主机上创建符号链接可能有效,但您需要访问kubernetes运行的主机。
另一种方法是在你的pod中添加一个initcontainer,并将/root和/shared挂载到该容器中,并使用initcontainer创建符号链接。