Skip to content

Commit 9c585bc

Browse files
authored
Merge pull request #23169 from hiramf/patch-1
remove rkt reference
2 parents 4a4e84e + 74ed545 commit 9c585bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h3>Objectives</h3>
2929

3030
<div class="col-md-8">
3131
<h2>Kubernetes Pods</h2>
32-
<p>When you created a Deployment in Module <a href="/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 <a href="/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>
3333
<ul>
3434
<li>Shared storage, as Volumes</li>
3535
<li>Networking, as a unique cluster IP address</li>
@@ -51,7 +51,7 @@ <h3>Summary:</h3>
5151
</div>
5252
<div class="content__box content__box_fill">
5353
<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.
5555
</i></p>
5656
</div>
5757
</div>
@@ -79,7 +79,7 @@ <h2>Nodes</h2>
7979
<p>Every Kubernetes Node runs at least:</p>
8080
<ul>
8181
<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>
8383
</ul>
8484

8585
</div>

0 commit comments

Comments
 (0)