From 9b82db3eb67b18a050e82b4ff41a2390ca43c4ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20N=C3=A9au?= Date: Fri, 31 May 2024 09:34:14 +0200 Subject: [PATCH] Fix `fleet apply` command description (#2467) That command does not render bundles into Kubernetes resources, but rather creates bundles from directories. Those bundles can then be either output or applied on a cluster.. --- internal/cmd/cli/apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/cli/apply.go b/internal/cmd/cli/apply.go index 9d25a2230b..35cc9aa79f 100644 --- a/internal/cmd/cli/apply.go +++ b/internal/cmd/cli/apply.go @@ -24,7 +24,7 @@ type readFile func(name string) ([]byte, error) func NewApply() *cobra.Command { return command.Command(&Apply{}, cobra.Command{ Use: "apply [flags] BUNDLE_NAME PATH...", - Short: "Render a bundle into a Kubernetes resource and apply it in the Fleet Manager", + Short: "Create bundles from directories, and output them or apply them on a cluster", }) }