From 05c02bac7e10119420313052332b2d0adc7df070 Mon Sep 17 00:00:00 2001 From: Gerd Oberlechner Date: Fri, 18 Oct 2024 15:33:20 +0200 Subject: [PATCH] fix output-dir help text Signed-off-by: Gerd Oberlechner --- cmd/install/install_helm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/install/install_helm.go b/cmd/install/install_helm.go index f0cfdaf3b84..b3f4ed45a35 100644 --- a/cmd/install/install_helm.go +++ b/cmd/install/install_helm.go @@ -40,7 +40,7 @@ func NewHelmRenderCommand(opts *Options) *cobra.Command { SilenceUsage: true, } - cmd.Flags().StringVar(&opts.OutputFile, "output-dir", "", "File to write the rendered manifests to. Writes to STDOUT if not specified.") + cmd.Flags().StringVar(&opts.OutputFile, "output-dir", "", "Directory to write the rendered helm chart to") cmd.RunE = func(cmd *cobra.Command, args []string) error { opts.ApplyDefaults()