What is the difference in below three declarations for passing command/arguments:
containers:
name: busybox
image: busybox
args:
-sleep
-"1000"containers:
name: busybox
image: busybox
command: ["/bin/sh", "-c", "sleep 1000"]containers:
name: busybox
image: busybox
args:
-sleep
-"1000"
A. Would these produce same result?
B. What is the preference or usage for each?
The YAML list definition are only a matter of taste, it's just a YAML syntax. This two examples are equivalent:
And this syntax works for both args and command. Beside that args and command are slight different, as the documentation says:
Imagine a container like mysql, if you look it's Dockerfile you'll notice this:
The entrypoint call a script that prepare everything the database needs, when finish, this script calls
exec "$@"
and the shell variable$@
are everything defined in cmd.So, on Kubernetes, if you want to pass arguments to mysqld you do something like:
This still executes the entrypoint but now, the value of
$@
ismysqld --skip-grant-tables
.