mirror of https://github.com/linkerd/linkerd2.git
Fix namespace flag in install help text (#5322)
The shorthand flag for `--linkerd-namespace` is `-L` not `-l`. Signed-off-by: Kevin Leimkuhler <kevin@kleimkuhler.com>
This commit is contained in:
parent
13c3aa9062
commit
5c39c9b44d
|
@ -117,7 +117,7 @@ resources for the Linkerd control plane. This command should be followed by
|
|||
linkerd install config | kubectl apply -f -
|
||||
|
||||
# Install Linkerd into a non-default namespace.
|
||||
linkerd install config -l linkerdtest | kubectl apply -f -`,
|
||||
linkerd install config -L linkerdtest | kubectl apply -f -`,
|
||||
RunE: func(cmd *cobra.Command, args []string) error {
|
||||
err := flag.ApplySetFlags(values, flags)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue