forked from TrueCloudLab/frostfs-node
8fc88487db
Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
25 lines
576 B
Go
25 lines
576 B
Go
package control
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var shardsCmd = &cobra.Command{
|
|
Use: "shards",
|
|
Short: "Operations with storage node's shards",
|
|
Long: "Operations with storage node's shards",
|
|
}
|
|
|
|
func initControlShardsCmd() {
|
|
shardsCmd.AddCommand(listShardsCmd)
|
|
shardsCmd.AddCommand(setShardModeCmd)
|
|
shardsCmd.AddCommand(dumpShardCmd)
|
|
shardsCmd.AddCommand(restoreShardCmd)
|
|
shardsCmd.AddCommand(evacuateShardCmd)
|
|
|
|
initControlShardsListCmd()
|
|
initControlSetShardModeCmd()
|
|
initControlDumpShardCmd()
|
|
initControlRestoreShardCmd()
|
|
initControlEvacuateShardCmd()
|
|
}
|