forked from TrueCloudLab/frostfs-node
43 lines
996 B
Go
43 lines
996 B
Go
|
package control
|
||
|
|
||
|
import (
|
||
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-cli/internal/commonflags"
|
||
|
"github.com/spf13/cobra"
|
||
|
"github.com/spf13/viper"
|
||
|
)
|
||
|
|
||
|
var Cmd = &cobra.Command{
|
||
|
Use: "control",
|
||
|
Short: "Operations with storage node",
|
||
|
Long: `Operations with storage node`,
|
||
|
PersistentPreRun: func(cmd *cobra.Command, args []string) {
|
||
|
ff := cmd.Flags()
|
||
|
|
||
|
_ = viper.BindPFlag(commonflags.WalletPath, ff.Lookup(commonflags.WalletPath))
|
||
|
_ = viper.BindPFlag(commonflags.Account, ff.Lookup(commonflags.Account))
|
||
|
_ = viper.BindPFlag(controlRPC, ff.Lookup(controlRPC))
|
||
|
},
|
||
|
}
|
||
|
|
||
|
const (
|
||
|
controlRPC = "endpoint"
|
||
|
controlRPCDefault = ""
|
||
|
controlRPCUsage = "remote node control address (as 'multiaddr' or '<host>:<port>')"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
Cmd.AddCommand(
|
||
|
healthCheckCmd,
|
||
|
setNetmapStatusCmd,
|
||
|
dropObjectsCmd,
|
||
|
snapshotCmd,
|
||
|
shardsCmd,
|
||
|
)
|
||
|
|
||
|
initControlHealthCheckCmd()
|
||
|
initControlSetNetmapStatusCmd()
|
||
|
initControlDropObjectsCmd()
|
||
|
initControlSnapshotCmd()
|
||
|
initControlShardsCmd()
|
||
|
}
|