What is the difference between the below three declarations in a Pod YAML file:
- containers:
- name: busybox
image: busybox
args:
-sleep
-"1000"
containers:
- name: busybox
image: busybox
command: ["/bin/sh", "-c", "sleep 1000"]
- name: busybox
containers:
- name: busybox
image: busybox
args:
-/bin/sh
--c
-sleep 1000
Also, would 1, 2 and 3 above produce same result?
I edited further. This is really getting confusing. It appears that below two will produce the same result. If so, not sure what is the purpose of each:
command:
- sleep
- "5000"
args:
- sleep
- "5000"
For first case:
For second case:
So in first case busybox default entry point will execute the given argument. And in second case busybox default entry point is ignored and "/bin/sh" command will execute the given arguments.
Ref: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#notes