Skip to content

Commit af59b62

Browse files
authored
Update expose-intro.html
Adding node for minikube tunnelling with Docker
1 parent ac717e9 commit af59b62

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ <h3>Create a new Service</h3>
113113
<code><b>echo "NODE_PORT=$NODE_PORT"</b></code></p>
114114
<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>
115115
<p><code><b>curl http://"$(minikube ip):$NODE_PORT"</b></code></p>
116+
<p>Note that since Docker Desktop does not support ports, we need to use minikube tunnel if Docker is the container runtime. This is a <a href="https://github.com/kubernetes/minikube/issues/11193">known issue</a>.</p>
117+
<p>In a seperate terminal window, execute:</p>
118+
<p><code><b>minikube service kubernetes-bootcamp --url</b></code></p>
119+
<p>and use the output url to access the app.</p>
116120
<p>And we get a response from the server. The Service is exposed.</p>
117121
</div>
118122
</div>

0 commit comments

Comments
 (0)