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/explore/explore-intro.html
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ <h3>Objectives</h3>
29
29
30
30
<divclass="col-md-8">
31
31
<h2>Kubernetes Pods</h2>
32
-
<p>When you created a Deployment in Module <ahref="/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro/">2</a>, Kubernetes created a <b>Pod</b> to host your application instance. A Pod is a Kubernetes abstraction that represents a group of one or more application containers (such as Docker or rkt), and some shared resources for those containers. Those resources include:</p>
32
+
<p>When you created a Deployment in Module <ahref="/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro/">2</a>, Kubernetes created a <b>Pod</b> to host your application instance. A Pod is a Kubernetes abstraction that represents a group of one or more application containers (such as Docker), and some shared resources for those containers. Those resources include:</p>
33
33
<ul>
34
34
<li>Shared storage, as Volumes</li>
35
35
<li>Networking, as a unique cluster IP address</li>
@@ -51,7 +51,7 @@ <h3>Summary:</h3>
51
51
</div>
52
52
<divclass="content__box content__box_fill">
53
53
<p><i>
54
-
A Pod is a group of one or more application containers (such as Docker or rkt) and includes shared storage (volumes), IP address and information about how to run them.
54
+
A Pod is a group of one or more application containers (such as Docker) and includes shared storage (volumes), IP address and information about how to run them.
55
55
</i></p>
56
56
</div>
57
57
</div>
@@ -79,7 +79,7 @@ <h2>Nodes</h2>
79
79
<p>Every Kubernetes Node runs at least:</p>
80
80
<ul>
81
81
<li>Kubelet, a process responsible for communication between the Kubernetes Master and the Node; it manages the Pods and the containers running on a machine.</li>
82
-
<li>A container runtime (like Docker, rkt) responsible for pulling the container image from a registry, unpacking the container, and running the application.</li>
82
+
<li>A container runtime (like Docker) responsible for pulling the container image from a registry, unpacking the container, and running the application.</li>
0 commit comments