I installed Serving on Minikube as instructed by the official documentation.
Kourier was chosen as the network layer
I want to use the Magic DNS on my cluster, I have installed it using
kubectl apply -f https://github.com/knative/serving/releases/download/knative-v1.0.0/serving-default-domain.yaml
And I have started the tunnel using
minikube tunnel
When I try to access a service using
curl "http://greeter-10.default.10.104.139.27.sslip.io"
I got this
curl: (6) Could not resolve host: greeter-10.default.10.104.139.27.sslip.io;
Before that , I deployed a HelloWorld Service on it. And I can access it by temporary DNS with
curl -H "host: greeter-10.default.example.com" http://10.104.139.27 -v