Skip to content

Commit dee7405

Browse files
authored
Merge pull request #40484 from niranjandarshann/incorrectcommand/tutorial
Add missing quote in Performing a Rolling Update tutorial page
2 parents 00104ae + a8c4876 commit dee7405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ <h3>Step 2: Verify an update</h3>
144144
<p>First, check that the app is running. To find the exposed IP address and port, run the <code>describe service</code> command:</p>
145145
<p><code><b>kubectl describe services/kubernetes-bootcamp</b></code></p>
146146
<p>Create an environment variable called <tt>NODE_PORT</tt> that has the value of the Node port assigned:</p>
147-
<p><code><b>export NODE_PORT="$(kubectl get services/kubernetes-bootcamp -o go-template='{{(index .spec.ports 0).nodePort}}')</b></code><br />
147+
<p><code><b>export NODE_PORT="$(kubectl get services/kubernetes-bootcamp -o go-template='{{(index .spec.ports 0).nodePort}}')"</b></code><br />
148148
<code><b>echo "NODE_PORT=$NODE_PORT"</b></code></p>
149149
<p>Next, do a <code>curl</code> to the the exposed IP and port:</p>
150150
<p><code><b>curl http://"$(minikube ip):$NODE_PORT"</b></code></p>

0 commit comments

Comments
 (0)