From 6bc6231bcc52534b064a293346f9e3f96a635d84 Mon Sep 17 00:00:00 2001 From: George Jenkins Date: Sun, 21 Sep 2025 07:50:50 -0700 Subject: [PATCH] Remove unused 'Settings' from plugin schema Signed-off-by: George Jenkins --- internal/plugin/schema/cli.go | 5 +---- pkg/cmd/load_plugins.go | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/internal/plugin/schema/cli.go b/internal/plugin/schema/cli.go index 702b27e45..2282580f5 100644 --- a/internal/plugin/schema/cli.go +++ b/internal/plugin/schema/cli.go @@ -15,13 +15,10 @@ package schema import ( "bytes" - - "helm.sh/helm/v4/pkg/cli" ) type InputMessageCLIV1 struct { - ExtraArgs []string `json:"extraArgs"` - Settings *cli.EnvSettings `json:"settings"` + ExtraArgs []string `json:"extraArgs"` } type OutputMessageCLIV1 struct { diff --git a/pkg/cmd/load_plugins.go b/pkg/cmd/load_plugins.go index c0593f384..534113bde 100644 --- a/pkg/cmd/load_plugins.go +++ b/pkg/cmd/load_plugins.go @@ -113,7 +113,6 @@ func loadCLIPlugins(baseCmd *cobra.Command, out io.Writer) { input := &plugin.Input{ Message: schema.InputMessageCLIV1{ ExtraArgs: extraArgs, - Settings: settings, }, Env: env, Stdin: os.Stdin,