carapace-bin/completers/kubeadm_completer/cmd/reset_phase_updateClusterStatus.go
2024-03-11 19:32:42 +01:00

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)
}