Dans ce document officiel, il peut exécuter la commande dans un fichier de configuration yaml:
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}\""]
Si je veux exécuter plus d'une commande, comment faire?
command
car il remplace le DockerfileEntrypoint
;)