Skip to content

Commit 0b16ccf

Browse files
authored
Merge pull request #41651 from stormqueen1990/patch-1
Remove reference to interactive tutorial in expose-intro.html
2 parents dee8702 + 9c0d101 commit 0b16ccf

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
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: 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 interactive environment is still reloading its previous state. 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#deploy-an-app">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)