From 23391893e8bf06c9e0ac997e5c1e7b1dcb3901a1 Mon Sep 17 00:00:00 2001 From: RA489 Date: Thu, 4 Jul 2019 13:39:01 +0530 Subject: [PATCH] hyperv: Powershell was not found in the path --- pkg/minikube/problem/err_map.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/minikube/problem/err_map.go b/pkg/minikube/problem/err_map.go index 316e5ef6d..81b1ffb5d 100644 --- a/pkg/minikube/problem/err_map.go +++ b/pkg/minikube/problem/err_map.go @@ -144,6 +144,12 @@ var vmProblems = map[string]match{ Advice: "Configure an external network switch following the official documentation, then add `--hyperv-virtual-switch=` to `minikube start`", URL: "https://docs.docker.com/machine/drivers/hyper-v/", }, + "HYPERV_POWERSHELL_NOT_FOUND": { + Regexp: re(`Powershell was not found in the path`), + Advice: "To start minikube with HyperV Powershell must be in your PATH`", + URL: "https://docs.docker.com/machine/drivers/hyper-v/", + }, + "HOST_CIDR_CONFLICT": { Regexp: re(`host-only cidr conflicts with the network address of a host interface`), Advice: "Specify an alternate --host-only-cidr value, such as 172.16.0.1/24", -- GitLab