Dmitrii Stepanov
189dbb01be
All checks were successful
DCO action / DCO (pull_request) Successful in 3m51s
Vulncheck / Vulncheck (pull_request) Successful in 3m49s
Build / Build Components (1.21) (pull_request) Successful in 4m34s
Build / Build Components (1.20) (pull_request) Successful in 6m21s
Tests and linters / Tests (1.21) (pull_request) Successful in 9m1s
Tests and linters / Tests (1.20) (pull_request) Successful in 9m12s
Tests and linters / Staticcheck (pull_request) Successful in 6m40s
Tests and linters / Tests with -race (pull_request) Successful in 9m21s
Tests and linters / Lint (pull_request) Successful in 9m39s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
21 lines
476 B
Go
21 lines
476 B
Go
package control
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var irCmd = &cobra.Command{
|
|
Use: "ir",
|
|
Short: "Operations with inner ring nodes",
|
|
Long: "Operations with inner ring nodes",
|
|
}
|
|
|
|
func initControlIRCmd() {
|
|
irCmd.AddCommand(tickEpochCmd)
|
|
irCmd.AddCommand(removeNodeCmd)
|
|
irCmd.AddCommand(irHealthCheckCmd)
|
|
irCmd.AddCommand(removeContainerCmd)
|
|
|
|
initControlIRTickEpochCmd()
|
|
initControlIRRemoveNodeCmd()
|
|
initControlIRHealthCheckCmd()
|
|
initControlIRRemoveContainerCmd()
|
|
}
|