在pod中运行shell脚本



我正试图编写一个单行命令来运行pod 中的shell脚本

为正在运行的容器获取外壳:

kubectl exec -it test-pod -c test-container -- /bin/bash

容器中的目录:

cd test/bin

bin中的脚本:

./backup.sh

如何在一个命令中编写所有这些?

尝试:

kubectl exec -it test-pod -c test-container -- sh /full/path/to/the/backup.sh

尝试:

kubectl exec -it test-pod -c test-container -- /bin/bash -c "/path/to/backup-script.sh"

相关内容

  • 没有找到相关文章

最新更新