Merge pull request #2253 from php-coder/fix_command_in_secret_example

docs/user-guide/secrets: fix invalid syntax of Pod.spec.containers.command
reviewable/pr2389/r1^2
Andrew Chen 2017-01-31 10:16:07 -08:00 committed by GitHub
commit 4f31ff9aec
1 changed files with 1 additions and 1 deletions

View File

@ -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",