Trong tài liệu chính thức này, nó có thể chạy lệnh trong tệp cấu hình 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}\""]
Nếu tôi muốn chạy nhiều hơn một lệnh thì phải làm thế nào?
command
vì nó sẽ ghi đè của DockerfileEntrypoint
;)