Open
Description
Steps to reproduce the issue:
- Install PowerShell core (https://github.com/PowerShell/PowerShell/releases)
- Run powershell core (
pwsh.exe
) minikube start ...
minikube docker-env
Full output of failed command:
❯ minikube docker-env
You can further specify your shell with either 'cmd' or 'powershell' with the --shell flag.
SET DOCKER_TLS_VERIFY=1
SET DOCKER_HOST=tcp://192.168.184.153:2376
SET DOCKER_CERT_PATH=C:\Users\Me\.minikube\certs
SET MINIKUBE_ACTIVE_DOCKERD=minikube
REM To point your shell to minikube's docker-daemon, run:
REM @FOR /f "tokens=*" %i IN ('minikube -p minikube docker-env') DO @%i
Expected output
❯ minikube docker-env --shell powershell
$Env:DOCKER_TLS_VERIFY = "1"
$Env:DOCKER_HOST = "tcp://192.168.184.153:2376"
$Env:DOCKER_CERT_PATH = "C:\Users\Me\.minikube\certs"
$Env:MINIKUBE_ACTIVE_DOCKERD = "minikube"
# To point your shell to minikube's docker-daemon, run:
# & minikube -p minikube docker-env | Invoke-Expression
Note how passing in --shell powershell
yielded the correct results, but using the default auto-detect did not detect powershell.
Note: running on regular powershell works just fine. This issue only affects powershell core.