type Client interface {
// IsMinikube returns true if the given kubeContext maps to a minikube cluster IsMinikube(kubeContext string) bool// MinikubeExec returns the Cmd struct to execute minikube with given arguments MinikubeExec(arg ...string) (*exec.Cmd, error)
}