diff --git a/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html b/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html index 453cdf02ad..ad56a62c4b 100644 --- a/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html +++ b/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html @@ -113,7 +113,7 @@ description: |- echo "NODE_PORT=$NODE_PORT"

Now we can test that the app is exposed outside of the cluster using curl, the IP address of the Node and the externally exposed port:

curl http://"$(minikube ip):$NODE_PORT"

- {{< note >}}

If Docker is the container runtime, minikube tunnel is needed. This is because Docker Desktop does not support ports.
+ {{< note >}}

If Docker is the container runtime, a minikube tunnel is needed. This is because Docker Desktop does not support ports.

In a separate terminal window, execute:
$ minikube service kubernetes-bootcamp --url

The output looks like this: