mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 11:08:10 +00:00
add CLI commands for plugin runtime VAULT-18181 (#22819)
--------- Co-authored-by: Tom Proctor <tomhjp@users.noreply.github.com>
This commit is contained in:
@@ -604,6 +604,31 @@ func initCommands(ui, serverCmdUi cli.Ui, runOpts *RunOptions) map[string]cli.Co
|
||||
BaseCommand: getBaseCommand(),
|
||||
}, nil
|
||||
},
|
||||
"plugin runtime": func() (cli.Command, error) {
|
||||
return &PluginRuntimeCommand{
|
||||
BaseCommand: getBaseCommand(),
|
||||
}, nil
|
||||
},
|
||||
"plugin runtime register": func() (cli.Command, error) {
|
||||
return &PluginRuntimeRegisterCommand{
|
||||
BaseCommand: getBaseCommand(),
|
||||
}, nil
|
||||
},
|
||||
"plugin runtime deregister": func() (cli.Command, error) {
|
||||
return &PluginRuntimeDeregisterCommand{
|
||||
BaseCommand: getBaseCommand(),
|
||||
}, nil
|
||||
},
|
||||
"plugin runtime info": func() (cli.Command, error) {
|
||||
return &PluginRuntimeInfoCommand{
|
||||
BaseCommand: getBaseCommand(),
|
||||
}, nil
|
||||
},
|
||||
"plugin runtime list": func() (cli.Command, error) {
|
||||
return &PluginRuntimeListCommand{
|
||||
BaseCommand: getBaseCommand(),
|
||||
}, nil
|
||||
},
|
||||
"proxy": func() (cli.Command, error) {
|
||||
return &ProxyCommand{
|
||||
BaseCommand: &BaseCommand{
|
||||
|
||||
Reference in New Issue
Block a user