website: Show join help instead of members

This commit is contained in:
Armon Dadgar 2014-06-11 11:08:19 -07:00
parent 4542933139
commit dc5745cc9c
1 changed files with 6 additions and 15 deletions

View File

@ -37,27 +37,18 @@ Available commands are:
``` ```
To get help for any specific command, pass the `-h` flag to the relevant To get help for any specific command, pass the `-h` flag to the relevant
subcommand. For example, to see help about the `members` subcommand: subcommand. For example, to see help about the `join` subcommand:
``` ```
$ consul members -h $ consul join -h
Usage: consul members [options] Usage: consul join [options] address ...
Outputs the members of a running Consul agent. Tells a running Consul agent (with "consul agent") to join the cluster
by specifying at least one existing member.
Options: Options:
-detailed Additional information such as protocol verions
will be shown.
-role=<regexp> If provided, output is filtered to only nodes matching
the regular expression for role
-rpc-addr=127.0.0.1:8400 RPC address of the Consul agent. -rpc-addr=127.0.0.1:8400 RPC address of the Consul agent.
-wan Joins a server to another server in the WAN pool
-status=<regexp> If provided, output is filtered to only nodes matching
the regular expression for status
-wan If the agent is in server mode, this can be used to return
the other peers in the WAN pool
``` ```