gpt4 book ai didi

Kubernetes - 将多个命令传递到容器

转载 作者:行者123 更新时间:2023-12-01 18:22:46 34 4
gpt4 key购买 nike

我想在 kubernetes 配置文件的 command 标记中向 Docker 容器发送多个入口点命令。

apiVersion: v1
kind: Pod
metadata:
name: hello-world
spec: # specification of the pod’s contents
restartPolicy: Never
containers:
- name: hello
image: "ubuntu:14.04"
command: ["command1 arg1 arg2 && command2 arg3 && command3 arg 4"]

但是好像不行啊。在命令标签中发送多个命令的正确格式是什么?

最佳答案

容器中只能有一个入口点...如果您想运行多个这样的命令,请将 bash 作为入口点,并将所有其他命令作为 bash 运行的参数:

命令:["/bin/bash","-c","touch/foo && echo 'here' && ls/"]

关于Kubernetes - 将多个命令传递到容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33979501/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com