我创建了一个持久卷,声明 (10Gi) 并安装在一个 pod 上。下面是 YAML 文件。 YAML 文件
我的意图是将一个大文件上传到持久卷
kuberctl cp [local file path] namespace/pod_name:/mount_path
我预计挂载路径应该是 10Gi(截至 PV)。相反,它是 4KB。因此我无法上传大文件。
以下是我尝试上传大文件时的错误:
tar: file_name: Wrote only 2560 of 10240 bytes
tar: Exiting with failure status due to previous errors
command terminated with exit code 2
我猜这是因为目录没有空间。知道我做错了什么吗?任何帮助,将不胜感激。