Skip to content

Commit 9c0d101

Browse files
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.
1 parent 0924c73 commit 9c0d101

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ <h3>kubectl basics</h3>
112112
</div>
113113
<div class="row">
114114
<div class="col-md-12">
115+
<a id="deploy-an-app"></a>
115116
<h3>Deploy an app</h3>
116117
<p>Let’s 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>
117118
<p><b><code>kubectl create deployment kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1</code></b></p>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ <h3>Services and Labels</h3>
9797
<h3>Create a new Service</h3>
9898
<p>Let’s verify that our application is running. We’ll use the <code>kubectl get</code> command and look for existing Pods:</p>
9999
<p><code><b>kubectl get pods</b></code></p>
100-
<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.
100+
<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.
101101
Please wait a couple of seconds and list the Pods again. You can continue once you see the one Pod running.</p>
102102
<p>Next, let’s list the current Services from our cluster:</p>
103103
<p><code><b>kubectl get services</b></code></p>

0 commit comments

Comments
 (0)