You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: content/en/docs/tutorials/kubernetes-basics/expose/expose-intro.html
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ <h3>Summary</h3>
65
65
<h3>Services and Labels</h3>
66
66
</div>
67
67
</div>
68
-
68
+
69
69
<divclass="row">
70
70
<divclass="col-md-8">
71
71
<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>
76
76
<li>Classify an object using tags</li>
77
77
</ul>
78
78
</div>
79
-
79
+
80
80
</div>
81
81
82
82
<br>
@@ -97,7 +97,8 @@ <h3>Services and Labels</h3>
97
97
<h3>Create a new Service</h3>
98
98
<p>Let’s verify that our application is running. We’ll use the <code>kubectl get</code> command and look for existing Pods:</p>
99
99
<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 <ahref="/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>
101
102
<p>Next, let’s list the current Services from our cluster:</p>
102
103
<p><code><b>kubectl get services</b></code></p>
103
104
<p>We have a Service called <tt>kubernetes</tt> that is created by default when minikube starts the cluster.
0 commit comments