mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
Merge pull request #31312 from gjenkins8/gjenkins/rm_plugin_schema_settings
Remove unused 'Settings' from plugin schema
This commit is contained in:
commit
a7a6a5e3b0
2 changed files with 1 additions and 5 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue