Fix link and add anchor to navigate to specific section.

Fix the target link in the expose-intro tutorial and add an anchor to deploy-intro so the link points to the specific page location.
pull/41651/head
Mauren Berti 2023-06-27 11:24:34 -04:00
parent 0924c73c8f
commit 9c0d101871
No known key found for this signature in database
GPG Key ID: 6A17C3632CEC4B05
2 changed files with 2 additions and 1 deletions

View File

@ -112,6 +112,7 @@ description: |-
</div>
<div class="row">
<div class="col-md-12">
<a id="deploy-an-app"></a>
<h3>Deploy an app</h3>
<p>Lets deploy our first app on Kubernetes with the <code>kubectl create deployment</code> command. We need to provide the deployment name and app image location (include the full repository url for images hosted outside Docker hub).</p>
<p><b><code>kubectl create deployment kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1</code></b></p>

View File

@ -97,7 +97,7 @@ description: |-
<h3>Create a new Service</h3>
<p>Lets verify that our application is running. Well use the <code>kubectl get</code> command and look for existing Pods:</p>
<p><code><b>kubectl get pods</b></code></p>
<p>If no Pods are running then it means the objects from the previous tutorials were cleaned up. In this case, go back and recreate the deployment from the <a href="/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html">Using kubectl to create a Deployment</a> tutorial.
<p>If no Pods are running then it means the objects from the previous tutorials were cleaned up. In this case, go back and recreate the deployment from the <a href="/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro#deploy-an-app">Using kubectl to create a Deployment</a> tutorial.
Please wait a couple of seconds and list the Pods again. You can continue once you see the one Pod running.</p>
<p>Next, lets list the current Services from our cluster:</p>
<p><code><b>kubectl get services</b></code></p>