Skip to content

Commit 1a509fd

Browse files
authored
Update deploy-intro.html
Fix typo
1 parent 196ec10 commit 1a509fd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
---
88

99
<!DOCTYPE html>
10-
1110
<html lang="en">
1211

1312
<body>
@@ -150,7 +149,7 @@ <h3>View the app</h3>
150149
<p><b><code>curl http://localhost:8001/version</code></b></p>
151150
<div class="alert alert-info note callout" role="alert"><strong>Note:</strong> If port 8001 is not accessible, ensure that the <code>kubectl proxy</code> that you started above is running in the second terminal.</div>
152151
<p>The API server will automatically create an endpoint for each pod, based on the pod name, that is also accessible through the proxy.</p>
153-
<p>First we need to get the Pod name, and we'll store in the environment variable <tt>POD_NAME</tt>:</p>
152+
<p>First we need to get the Pod name, and we'll store it in the environment variable <tt>POD_NAME</tt>:</p>
154153
<p><b><code>export POD_NAME=$(kubectl get pods -o go-template --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}')</code></b><br />
155154
<b><code>echo Name of the Pod: $POD_NAME</code></b></p>
156155
<p>You can access the Pod through the proxied API, by running:</p>

0 commit comments

Comments
 (0)