How to include script and run it into kubernetes yaml?
问题 It is how to run simple batch in kubernetes yaml (helloworld.yaml): ... image: "ubuntu:14.04" command: ["/bin/echo", "hello", "world"] ... In Kubernetes i can deploy that like this: $ kubectl create -f helloworld.yaml Suppose i have a batch script like this (script.sh): #!/bin/bash echo "Please wait...."; sleep 5 Is there way to include the script.sh into kubectl create -f so it can run the script. Suppose now helloworld.yaml edited like this: ... image: "ubuntu:14.04" command: ["/bin/bash",