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
Copy file name to clipboardExpand all lines: content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -130,10 +130,11 @@ <h3>Deploy an app</h3>
130
130
<divclass="row">
131
131
<divclass="col-md-12">
132
132
<h3>View the app</h3>
133
-
<p>Pods that are running inside Kubernetes are running on a private, isolated network.
133
+
<p><ahref="/docs/concepts/workloads/pods/">Pods</a> that are running inside Kubernetes are running on a private, isolated network.
134
134
By default they are visible from other pods and services within the same Kubernetes cluster, but not outside that network.
135
135
When we use <code>kubectl</code>, we're interacting through an API endpoint to communicate with our application.</p>
136
-
<p>We will cover other options on how to expose your application outside the Kubernetes cluster later, in <ahref="/docs/tutorials/kubernetes-basics/expose/">Module 4</a>.</p>
136
+
<p>We will cover other options on how to expose your application outside the Kubernetes cluster later, in <ahref="/docs/tutorials/kubernetes-basics/expose/">Module 4</a>.
137
+
Also as a basic tutorial, we're not explaining what <code>Pods</code> are in any detail here, it will cover in later topics.</p>
137
138
<p>The <code>kubectl proxy</code> command can create a proxy that will forward communications into the cluster-wide, private network. The proxy can be terminated by pressing control-C and won't show any output while its running.</p>
138
139
<p><strong>You need to open a second terminal window to run the proxy.</strong></p>
0 commit comments