Dalam dokumen resmi ini, ini dapat menjalankan perintah di file konfigurasi 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}\""]
Jika saya ingin menjalankan lebih dari satu perintah, gimana caranya?
command
karena menimpa DockerfileEntrypoint
;)