Fixes upper case letters in kubectl examples

This commit is contained in:
feihujiang
2015-09-02 17:56:29 +08:00
parent 9c4802420b
commit 0427711c42
18 changed files with 60 additions and 60 deletions

View File

@@ -33,13 +33,13 @@ import (
)
const (
attach_example = `# get output from running pod 123456-7890, using the first container by default
attach_example = `# Get output from running pod 123456-7890, using the first container by default
$ kubectl attach 123456-7890
# get output from ruby-container from pod 123456-7890
# Get output from ruby-container from pod 123456-7890
$ kubectl attach 123456-7890 -c ruby-container date
# switch to raw terminal mode, sends stdin to 'bash' in ruby-container from pod 123456-780
# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container from pod 123456-780
# and sends stdout/stderr from 'bash' back to the client
$ kubectl attach 123456-7890 -c ruby-container -i -t`
)