我正在尝试以下命令
kubectl exec -it sss-pod-four echo "hi" >> /mnt/sss/testnew.txt
但这会引发错误
-bash: /mnt/sss/testnew.txt: No such file or directory
什么是实现这一目标的最佳方法
最佳答案
找到了一个类似的问题here,下面的命令现在可以正常工作
kubectl exec -it sss-pod-four -- bash -c "echo hi > /mnt/sss/testnew.txt"
关于kubernetes - Kubectl exec命令将内容写入Pod中的文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49189406/