mirror of https://github.com/status-im/consul.git
cli: Document pass-through option for `consul connect envoy` (#10666)
Update help text of `consul connect envoy` command to mention the ability to provide pass-through options.
This commit is contained in:
parent
e515c9d449
commit
6c462d399b
|
@ -662,7 +662,7 @@ func (c *cmd) Help() string {
|
|||
|
||||
const synopsis = "Runs or Configures Envoy as a Connect proxy"
|
||||
const help = `
|
||||
Usage: consul connect envoy [options]
|
||||
Usage: consul connect envoy [options] [-- pass-through options]
|
||||
|
||||
Generates the bootstrap configuration needed to start an Envoy proxy instance
|
||||
for use as a Connect sidecar for a particular service instance. By default it
|
||||
|
@ -684,4 +684,8 @@ Usage: consul connect envoy [options]
|
|||
|
||||
$ consul connect envoy -sidecar-for web
|
||||
|
||||
Additional arguments may be passed directly to Envoy by specifying a double
|
||||
dash followed by a list of options.
|
||||
|
||||
$ consul connect envoy -sidecar-for web -- --log-level debug
|
||||
`
|
||||
|
|
Loading…
Reference in New Issue