fix indents
This commit is contained in:
parent
c808f2eefa
commit
8b819a343a
|
@ -60,12 +60,12 @@ FS Specific Options:
|
|||
rather to wait for additional output.
|
||||
|
||||
-tail
|
||||
Show the files contents with offsets relative to the end of the file. If no
|
||||
offset is given, -n is defaulted to 10.
|
||||
Show the files contents with offsets relative to the end of the file. If no
|
||||
offset is given, -n is defaulted to 10.
|
||||
|
||||
-n
|
||||
Sets the tail location in best-efforted number of lines relative to the end
|
||||
of the file.
|
||||
Sets the tail location in best-efforted number of lines relative to the end
|
||||
of the file.
|
||||
|
||||
-c
|
||||
Sets the tail location in number of bytes relative to the end of the file.
|
||||
|
|
|
@ -20,11 +20,11 @@ func (l *LogsCommand) Help() string {
|
|||
helpText := `
|
||||
Usage: nomad logs [options] <alloc-id> <task>
|
||||
|
||||
TODO
|
||||
Streams the stdout/stderr of the given allocation and task.
|
||||
|
||||
General Options:
|
||||
|
||||
` + generalOptionsUsage() + `
|
||||
` + generalOptionsUsage() + `
|
||||
|
||||
Logs Specific Options:
|
||||
|
||||
|
@ -35,21 +35,21 @@ Logs Specific Options:
|
|||
Use a random allocation from a specified job-id.
|
||||
|
||||
-tail
|
||||
Show the files contents with offsets relative to the end of the file. If no
|
||||
offset is given, -n is defaulted to 10.
|
||||
Show the files contents with offsets relative to the end of the file. If no
|
||||
offset is given, -n is defaulted to 10.
|
||||
|
||||
-n
|
||||
Sets the tail location in best-efforted number of lines relative to the end
|
||||
of the file.
|
||||
Sets the tail location in best-efforted number of lines relative to the end
|
||||
of the file.
|
||||
|
||||
-c
|
||||
Sets the tail location in number of bytes relative to the end of the file.
|
||||
`
|
||||
Sets the tail location in number of bytes relative to the end of the file.
|
||||
`
|
||||
return strings.TrimSpace(helpText)
|
||||
}
|
||||
|
||||
func (l *LogsCommand) Synopsis() string {
|
||||
return "Inspect the contents of an allocation directory"
|
||||
return "Streams the logs of a task."
|
||||
}
|
||||
|
||||
func (l *LogsCommand) Run(args []string) int {
|
||||
|
|
|
@ -63,8 +63,8 @@ General Options:
|
|||
Plan Options:
|
||||
|
||||
-diff
|
||||
Determines whether the diff between the remote job and planned job is shown.
|
||||
Defaults to true.
|
||||
Determines whether the diff between the remote job and planned job is shown.
|
||||
Defaults to true.
|
||||
|
||||
-verbose
|
||||
Increase diff verbosity.
|
||||
|
|
|
@ -62,17 +62,17 @@ General Options:
|
|||
Run Options:
|
||||
|
||||
-check-index
|
||||
If set, the job is only registered or updated if the the passed
|
||||
job modify index matches the server side version. If a check-index value of
|
||||
zero is passed, the job is only registered if it does not yet exist. If a
|
||||
non-zero value is passed, it ensures that the job is being updated from a
|
||||
known state. The use of this flag is most common in conjunction with plan
|
||||
command.
|
||||
If set, the job is only registered or updated if the the passed
|
||||
job modify index matches the server side version. If a check-index value of
|
||||
zero is passed, the job is only registered if it does not yet exist. If a
|
||||
non-zero value is passed, it ensures that the job is being updated from a
|
||||
known state. The use of this flag is most common in conjunction with plan
|
||||
command.
|
||||
|
||||
-detach
|
||||
Return immediately instead of entering monitor mode. After job submission,
|
||||
the evaluation ID will be printed to the screen, which can be used to
|
||||
examine the evaluation using the eval-status command.
|
||||
Return immediately instead of entering monitor mode. After job submission,
|
||||
the evaluation ID will be printed to the screen, which can be used to
|
||||
examine the evaluation using the eval-status command.
|
||||
|
||||
-verbose
|
||||
Display full information.
|
||||
|
|
|
@ -27,9 +27,9 @@ Stop Options:
|
|||
|
||||
-detach
|
||||
Return immediately instead of entering monitor mode. After the
|
||||
deregister command is submitted, a new evaluation ID is printed to the
|
||||
screen, which can be used to examine the evaluation using the eval-status
|
||||
command.
|
||||
deregister command is submitted, a new evaluation ID is printed to the
|
||||
screen, which can be used to examine the evaluation using the eval-status
|
||||
command.
|
||||
|
||||
-yes
|
||||
Automatic yes to prompts.
|
||||
|
|
Loading…
Reference in New Issue