Merge pull request #2253 from php-coder/fix_command_in_secret_example
docs/user-guide/secrets: fix invalid syntax of Pod.spec.containers.commandreviewable/pr2389/r1^2
commit
4f31ff9aec
|
@ -763,7 +763,7 @@ make that key begin with a dot. For example, when the following secret is mount
|
|||
{
|
||||
"name": "dotfile-test-container",
|
||||
"image": "gcr.io/google_containers/busybox",
|
||||
"command": "ls -l /etc/secret-volume",
|
||||
"command": [ "ls", "-l", "/etc/secret-volume" ],
|
||||
"volumeMounts": [
|
||||
{
|
||||
"name": "secret-volume",
|
||||
|
|
Loading…
Reference in New Issue