mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-05 15:32:53 +00:00
18 lines
445 B
Go
18 lines
445 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/carapace-sh/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var reset_phase_updateClusterStatusCmd = &cobra.Command{
|
|
Use: "update-cluster-status",
|
|
Short: "Remove this node from the ClusterStatus object (DEPRECATED).",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(reset_phase_updateClusterStatusCmd).Standalone()
|
|
reset_phaseCmd.AddCommand(reset_phase_updateClusterStatusCmd)
|
|
}
|