Skip to content

Commit

Permalink
Redo index for Containers concept
Browse files Browse the repository at this point in the history
- Mention RuntimeClass
- omit container image and runtimeclass from links as they are already
  mentioned explicitly

Co-authored-by: Rey Lejano <rlejano@gmail.com>
  • Loading branch information
sftim and reylejano committed Nov 9, 2022
1 parent c6ec678 commit ddfcad4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
17 changes: 11 additions & 6 deletions content/en/docs/concepts/containers/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ reviewers:
- erictune
- thockin
content_type: concept
no_list: true
---

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


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


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

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

## {{% heading "whatsnext" %}}

* Read about [container images](/docs/concepts/containers/images/)
* Read about [Pods](/docs/concepts/workloads/pods/)
Usually, you can allow your cluster to pick the default container runtime
for a Pod. If you need to use more than one container runtime in your cluster,
you can specify the [RuntimeClass](/docs/concepts/containers/runtime-class/)
for a Pod to make sure that Kubernetes runs those containers using a
particular container runtime.

You can also use RuntimeClass to run different Pods with the same container
runtime but with different settings.
1 change: 1 addition & 0 deletions content/en/docs/concepts/containers/images.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ reviewers:
title: Images
content_type: concept
weight: 10
hide_summary: true # Listed separately in section index
---

<!-- overview -->
Expand Down
1 change: 1 addition & 0 deletions content/en/docs/concepts/containers/runtime-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ reviewers:
title: Runtime Class
content_type: concept
weight: 30
hide_summary: true # Listed separately in section index
---

<!-- overview -->
Expand Down

0 comments on commit ddfcad4

Please sign in to comment.