Como definir vários comandos em um arquivo yaml com o Kubernetes?

Neste documento oficial, ele pode executar o comando em um arquivo de configuração yaml:

http://kubernetes.io/v1.1/docs/user-guide/configuring-containers.html

apiVersion: v1
kind: Pod
metadata:
  name: hello-world
spec:  # specification of the pod’s contents
  restartPolicy: Never
  containers:
  - name: hello
    image: "ubuntu:14.04"
    env:
    - name: MESSAGE
      value: "hello world"
    command: ["/bin/sh","-c"]
    args: ["/bin/echo \"${MESSAGE}\""]

Se eu quiser executar mais de um comando, como fazer?

questionAnswers(3)

yourAnswerToTheQuestion