无法删除已挂载Azure文件共享中K8s容器内的文件

时间:2020-11-02 09:21:34

标签: linux azure kubernetes azure-storage-blobs azure-kubernetes

删除容器内的文件时出现问题。 这是我通过kubectl执行的命令:

const randomUser = await db.collection('user').aggregate([ { $sample: { size: 1 } } ]).toArray();
console.log(randomUser); 
await client.close();

我不明白是什么问题?

此目录/ usr / bin / myprogram / logs是Azure文件共享的卷安装。 此AzureFileShare用于多个部署\荚,因此PV为ReadWriteMany 这是我Yaml配置的一部分

kubectl exec mypod-7ddbbb6c87-cwl76 -- ls -lat /usr/bin/myprogram/logs
-rwxrwxrwx 1 1000 1000   186446 Oct 22 12:59 mylogfile.log

kubectl exec mypod-7ddbbb6c87-cwl76 -- find /usr/bin/myprogram/logs -type f -mtime +14 -delete
find: cannot delete '/usr/bin/myprogram/logs/mylogfile.log': No such file or directory

1 个答案:

答案 0 :(得分:0)

所有方面对我来说都很好,如以下屏幕截图所示:

enter image description here

但是我之前遇到过同样的问题。您可以尝试执行以下命令:

kubectl exec mypod-7ddbbb6c87-cwl76 -- bash -c "find /usr/bin/myprogram/logs -type f -mtime +14 -delete"