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 9b4e3abd4a..ead4c4cc36 100644
--- a/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html
+++ b/content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html
@@ -113,6 +113,10 @@ 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 that since Docker Desktop does not support ports, we need to use minikube tunnel if Docker is the container runtime. This is a known issue.
+In a seperate terminal window, execute:
+minikube service kubernetes-bootcamp --url
and use the output url to access the app.
And we get a response from the server. The Service is exposed.