From 72f2121aaf16f802d4326e42b9d8ad1396d6e83d Mon Sep 17 00:00:00 2001 From: Dean <22192242+saintdle@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:34:10 +0000 Subject: [PATCH] fixed spelling mistake in help output fixed spelling mistake in help output Signed-off-by: Dean <22192242+saintdle@users.noreply.github.com> --- internal/cli/cmd/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cli/cmd/install.go b/internal/cli/cmd/install.go index 5c5a1fe7d1..6f9c25448f 100644 --- a/internal/cli/cmd/install.go +++ b/internal/cli/cmd/install.go @@ -225,7 +225,7 @@ func addCommonInstallFlags(cmd *cobra.Command, params *install.Parameters) { cmd.Flags().StringVar(¶ms.Version, "version", defaults.Version, "Cilium version to install") cmd.Flags().StringVar(¶ms.DatapathMode, "datapath-mode", "", "Datapath mode to use { tunnel | native | aws-eni | gke | azure | aks-byocni } (default: autodetected).") cmd.Flags().BoolVar(¶ms.ListVersions, "list-versions", false, "List all the available versions without actually installing") - cmd.Flags().StringSliceVar(¶ms.NodesWithoutCilium, "nodes-without-cilium", []string{}, "List of node names on which Cilium will not be installed. In Helm installation mode, it's assumed that the no-schedule node labels are present and that the infastructure has set up routing on these nodes to provide connectivity within the Cilium cluster.") + cmd.Flags().StringSliceVar(¶ms.NodesWithoutCilium, "nodes-without-cilium", []string{}, "List of node names on which Cilium will not be installed. In Helm installation mode, it's assumed that the no-schedule node labels are present and that the infrastructure has set up routing on these nodes to provide connectivity within the Cilium cluster.") } // addCommonUninstallFlags adds uninstall command flags that are shared between classic and helm mode.