Files
kubeshark/cmd/check.go
M. Mert Yildiran 0e31fce585 🐛 Fix the check command
2022-11-29 06:03:42 +03:00

19 lines
309 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var checkCmd = &cobra.Command{
Use: "check",
Short: "Check the Kubeshark installation for potential problems",
RunE: func(cmd *cobra.Command, args []string) error {
runKubesharkCheck()
return nil
},
}
func init() {
rootCmd.AddCommand(checkCmd)
}