0
它是如何運行kubernetes YAML簡單的批處理(helloworld.yaml):如何包含腳本並將其運行到kubernetes yaml?
...
image: "ubuntu:14.04"
command: ["/bin/echo", "hello", "world"]
...
在Kubernetes我可以部署這樣的:
$ kubectl create -f helloworld.yaml
假設我有這樣一個批處理腳本( script.sh):
#!/bin/bash
echo "Please wait....";
sleep 5
是否有辦法包括script.sh到kubectl create -f
,使其能夠運行該腳本。假設現在helloworld.yaml編輯是這樣的:
...
image: "ubuntu:14.04"
command: ["/bin/bash", "./script.sh"]
...