Error in minikube installation on windows 7 enterprise

12/20/2018

I am trying to follow instructions on https://kubernetes.io/docs/setup/minikube/

But I am getting an error on the command:

curl $(minikube service hello-minikube --url)

details below:

image

As you might have guessed I am a beginner, will appreciate if someone can guide me on what I am doing wrong.

-- Lav
kubectl
kubernetes
minikube

1 Answer

12/20/2018

Basically:

curl $(minikube service hello-minikube --url)

is a bash command and when use on a bash prompt it executes minikube service hello-minikube --url and the output is passed to curl

Since you are using a Windows Command Prompt, you can run this first:

minikube service hello-minikube --url

Copy the output and then run:

curl <output>
-- Rico
Source: StackOverflow