Merge pull request #2253 from php-coder/fix_command_in_secret_example

docs/user-guide/secrets: fix invalid syntax of Pod.spec.containers.command
This commit is contained in:
Andrew Chen
2017-01-31 10:16:07 -08:00
committed by GitHub
+1 -1
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",