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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user