mirror of https://github.com/k3s-io/k3s
Fix command exec -- COMMAND can not contain spaces, update help information
parent
20fa30e4b5
commit
6d44c8417d
|
@ -47,7 +47,15 @@ var (
|
|||
|
||||
# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container from pod 123456-7890
|
||||
# and sends stdout/stderr from 'bash' back to the client
|
||||
kubectl exec 123456-7890 -c ruby-container -i -t -- bash -il`))
|
||||
kubectl exec 123456-7890 -c ruby-container -i -t -- bash -il
|
||||
|
||||
# List contents of /usr from the first container of pod 123456-7890 and sort by modification time.
|
||||
# If the command you want to execute in the pod has any flags in common (e.g. -i),
|
||||
# you must use two dashes (--) to separate your command's flags/arguments.
|
||||
# Also note, do not surround your command and its flags/arguments with quotes
|
||||
# unless that is how you would execute it normally (i.e., do ls -t /usr, not "ls -t /usr").
|
||||
kubectl exec 123456-7890 -i -t -- ls -t /usr
|
||||
`))
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
Loading…
Reference in New Issue