我目前有一个运行脚本的作业。该脚本需要在主机文件系统上创建一个文件。
为此,我使用了一个hostPath卷:
volumeMounts:
- mountPath: /var/logs/test
name: joblogs
volumes:
- hostPath:
path: /root/test
type: DirectoryOrCreate
name: joblogs
我用过
chcon -Rt svirt_sandbox_file_t /root/test
允许在此目录上写入,但即使文件是在
中创建的的/ var /日志/测试
他们不在
/根/测试
在主持人身上。
编辑:pod本身在我正在讨论的节点上运行。