You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Now we can test that the app is exposed outside of the cluster using <code>curl</code>, the IP address of the Node and the externally exposed port:</p>
{{<note>}}<p>If Docker is the container runtime, a minikube tunnel is needed. This is because Docker Desktop does not support ports. <br>
117
+
{{<note>}}<p>If you're running minikube with Docker Desktop as the container driver, a minikube tunnel is needed. This is because containers inside Docker Desktop are isolated from your host computer.<br>
118
118
<p>In a separate terminal window, execute:<br>
119
-
<code><b>$ minikube service kubernetes-bootcamp --url</b></code></p>
119
+
<code><b>minikube service kubernetes-bootcamp --url</b></code></p>
120
120
<p>The output looks like this:
121
121
<pre><b>http://127.0.0.1:51082<br>! Because you are using a Docker driver on darwin, the terminal needs to be open to run it.</b></pre></p>
122
122
<p>Then use the given URL to access the app:<br>
123
-
<code><b>$ curl 127.0.0.1:51082</b></code></p>
123
+
<code><b>curl 127.0.0.1:51082</b></code></p>
124
124
{{< /note >}}
125
125
<p>And we get a response from the server. The Service is exposed.</p>
0 commit comments