From 5c39c9b44de5f9c5cce441ed9ce18e3af0945eea Mon Sep 17 00:00:00 2001 From: Kevin Leimkuhler Date: Thu, 3 Dec 2020 14:33:15 -0500 Subject: [PATCH] Fix namespace flag in install help text (#5322) The shorthand flag for `--linkerd-namespace` is `-L` not `-l`. Signed-off-by: Kevin Leimkuhler --- cli/cmd/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cmd/install.go b/cli/cmd/install.go index 3dcbfda78..0df846379 100644 --- a/cli/cmd/install.go +++ b/cli/cmd/install.go @@ -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 {