Skip to content

Commit 205f1f9

Browse files
authored
Merge pull request #43187 from steve-hardman/fix-feedback
Fix style guide nits in tutorial
2 parents fd033f4 + da8f6e9 commit 205f1f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ <h3>Create a new Service</h3>
114114
<code><b>echo "NODE_PORT=$NODE_PORT"</b></code></p>
115115
<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>
116116
<p><code><b>curl http://"$(minikube ip):$NODE_PORT"</b></code></p>
117-
{{< 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>
118118
<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>
120120
<p>The output looks like this:
121121
<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>
122122
<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>
124124
{{< /note >}}
125125
<p>And we get a response from the server. The Service is exposed.</p>
126126
</div>

0 commit comments

Comments
 (0)