Skip to content

Commit ddfcad4

Browse files
Tim Bannisterreylejano
Tim Bannister
andcommitted
Redo index for Containers concept
- Mention RuntimeClass - omit container image and runtimeclass from links as they are already mentioned explicitly Co-authored-by: Rey Lejano <[email protected]>
1 parent c6ec678 commit ddfcad4

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

content/en/docs/concepts/containers/_index.md

+11-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ reviewers:
66
- erictune
77
- thockin
88
content_type: concept
9-
no_list: true
109
---
1110

1211
<!-- overview -->
@@ -18,7 +17,10 @@ run it.
1817
Containers decouple applications from underlying host infrastructure.
1918
This makes deployment easier in different cloud or OS environments.
2019

21-
20+
Each {{< glossary_tooltip text="node" term_id="node" >}} in a Kubernetes
21+
cluster runs the containers that form the
22+
[Pods](/docs/concepts/workloads/pods/) assigned to that node.
23+
Containers in a Pod are co-located and co-scheduled to run on the same node.
2224

2325

2426
<!-- body -->
@@ -38,8 +40,11 @@ the change, then recreate the container to start from the updated image.
3840

3941
{{< glossary_definition term_id="container-runtime" length="all" >}}
4042

41-
## {{% heading "whatsnext" %}}
42-
43-
* Read about [container images](/docs/concepts/containers/images/)
44-
* Read about [Pods](/docs/concepts/workloads/pods/)
43+
Usually, you can allow your cluster to pick the default container runtime
44+
for a Pod. If you need to use more than one container runtime in your cluster,
45+
you can specify the [RuntimeClass](/docs/concepts/containers/runtime-class/)
46+
for a Pod to make sure that Kubernetes runs those containers using a
47+
particular container runtime.
4548

49+
You can also use RuntimeClass to run different Pods with the same container
50+
runtime but with different settings.

content/en/docs/concepts/containers/images.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ reviewers:
55
title: Images
66
content_type: concept
77
weight: 10
8+
hide_summary: true # Listed separately in section index
89
---
910

1011
<!-- overview -->

content/en/docs/concepts/containers/runtime-class.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ reviewers:
55
title: Runtime Class
66
content_type: concept
77
weight: 30
8+
hide_summary: true # Listed separately in section index
89
---
910

1011
<!-- overview -->

0 commit comments

Comments
 (0)