Skip to content

Commit 0924c73

Browse files
Change from review: add a link to the previous tutorial.
* Include a link that points to the tutorial where the deployment in question was originally created, to allow the reader a better flow between tutorials.
1 parent ad0169b commit 0924c73

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ <h3>Summary</h3>
6565
<h3>Services and Labels</h3>
6666
</div>
6767
</div>
68-
68+
6969
<div class="row">
7070
<div class="col-md-8">
7171
<p>A Service routes traffic across a set of Pods. Services are the abstraction that allows pods to die and replicate in Kubernetes without impacting your application. Discovery and routing among dependent Pods (such as the frontend and backend components in an application) are handled by Kubernetes Services.</p>
@@ -76,7 +76,7 @@ <h3>Services and Labels</h3>
7676
<li>Classify an object using tags</li>
7777
</ul>
7878
</div>
79-
79+
8080
</div>
8181

8282
<br>
@@ -97,7 +97,8 @@ <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 tutorial Deployment. Please wait a couple of seconds and list the Pods again. You can continue once you see the one Pod running.</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.
101+
Please wait a couple of seconds and list the Pods again. You can continue once you see the one Pod running.</p>
101102
<p>Next, let’s list the current Services from our cluster:</p>
102103
<p><code><b>kubectl get services</b></code></p>
103104
<p>We have a Service called <tt>kubernetes</tt> that is created by default when minikube starts the cluster.

0 commit comments

Comments
 (0)