如何将多个参数传递给 shell 脚本到`kubectl exec`?
Posted
技术标签:
【中文标题】如何将多个参数传递给 shell 脚本到`kubectl exec`?【英文标题】:How do I pass multiple arguments to a shell script into `kubectl exec`? 【发布时间】:2021-01-09 04:19:34 【问题描述】:考虑以下 shell 脚本,其中 POD
设置为 K8 pod 的名称。
kubectl exec -it $POD -c messenger -- bash -c "echo '$@'"
当我使用一个参数运行这个脚本时,它运行良好。
hq6:bot hqin$ ./Test.sh x
x
当我使用两个参数运行它时,它会爆炸。
hq6:bot hqin$ ./Test.sh x y
y': -c: line 0: unexpected EOF while looking for matching `''
y': -c: line 1: syntax error: unexpected end of file
我怀疑参数的传递方式有问题。
我该如何解决这个问题,以便我的 shell 按字面意思扩展参数,然后作为文字传递给在 kubectl exec
中运行的 bash
?
请注意,删除单引号只会导致输出 x
。
另请注意,我需要bash -c
,因此我最终可以传入文件重定向:https://***.com/a/49189635/391161。
【问题讨论】:
【参考方案1】:我设法通过以下解决方案解决了这个问题:
kubectl exec -it $POD -c messenger -- bash -c "echo $*"
这似乎有额外的好处,我可以进行内部重定向。
./Test.sh x y '> /tmp/X'
【讨论】:
【参考方案2】:你会想要这样的东西:
kubectl exec POD -c CONTAINER -- sh -c 'echo "$@"' -- "$@"
使用这种语法,我们在容器中运行的命令是echo "$@"
。然后我们获取"$@"
的本地值并将其作为参数传递给远程shell,从而在远程shell 中设置$@
。
在我的本地系统上:
bash-5.0$ ./Test.sh hello
hello
bash-5.0$ ./Test.sh hello world
hello world
【讨论】:
以上是关于如何将多个参数传递给 shell 脚本到`kubectl exec`?的主要内容,如果未能解决你的问题,请参考以下文章
如何通过 docker run 将参数传递给 Shell 脚本