Merge pull request #48794 from shurup/glossary-rm-duplicated-cri
Fix duplicated glossary entry for CRI
This commit is contained in:
commit
9df83941a0
|
|
@ -15,7 +15,7 @@ each Node in your cluster, so that the
|
||||||
{{< glossary_tooltip text="kubelet" term_id="kubelet" >}} can launch
|
{{< glossary_tooltip text="kubelet" term_id="kubelet" >}} can launch
|
||||||
{{< glossary_tooltip text="Pods" term_id="pod" >}} and their containers.
|
{{< glossary_tooltip text="Pods" term_id="pod" >}} and their containers.
|
||||||
|
|
||||||
{{< glossary_definition prepend="The Container Runtime Interface (CRI) is" term_id="container-runtime-interface" length="all" >}}
|
{{< glossary_definition prepend="The Container Runtime Interface (CRI) is" term_id="cri" length="all" >}}
|
||||||
|
|
||||||
<!-- body -->
|
<!-- body -->
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
---
|
|
||||||
title: Container Runtime Interface
|
|
||||||
id: container-runtime-interface
|
|
||||||
date: 2021-11-24
|
|
||||||
full_link: /docs/concepts/architecture/cri
|
|
||||||
short_description: >
|
|
||||||
The main protocol for the communication between the kubelet and Container Runtime.
|
|
||||||
|
|
||||||
aka:
|
|
||||||
tags:
|
|
||||||
- cri
|
|
||||||
---
|
|
||||||
|
|
||||||
The main protocol for the communication between the {{< glossary_tooltip text="kubelet" term_id="kubelet" >}} and Container Runtime.
|
|
||||||
|
|
||||||
<!--more-->
|
|
||||||
|
|
||||||
The Kubernetes Container Runtime Interface (CRI) defines the main
|
|
||||||
[gRPC](https://grpc.io) protocol for the communication between the
|
|
||||||
[node components](/docs/concepts/architecture/#node-components)
|
|
||||||
{{< glossary_tooltip text="kubelet" term_id="kubelet" >}} and
|
|
||||||
{{< glossary_tooltip text="container runtime" term_id="container-runtime" >}}.
|
|
||||||
|
|
@ -1,18 +1,22 @@
|
||||||
---
|
---
|
||||||
title: Container runtime interface (CRI)
|
title: Container Runtime Interface (CRI)
|
||||||
id: cri
|
id: cri
|
||||||
date: 2019-03-07
|
date: 2021-11-24
|
||||||
full_link: /docs/concepts/architecture/#container-runtime
|
full_link: /docs/concepts/architecture/cri
|
||||||
short_description: >
|
short_description: >
|
||||||
An API for container runtimes to integrate with kubelet
|
Protocol for communication between the kubelet and the local container runtime.
|
||||||
|
|
||||||
|
|
||||||
aka:
|
aka:
|
||||||
tags:
|
tags:
|
||||||
- fundamental
|
- fundamental
|
||||||
---
|
---
|
||||||
The container runtime interface (CRI) is an API for container runtimes
|
|
||||||
to integrate with the {{< glossary_tooltip text="kubelet" term_id="kubelet" >}} on a node.
|
The main protocol for the communication between the {{< glossary_tooltip text="kubelet" term_id="kubelet" >}} and Container Runtime.
|
||||||
|
|
||||||
<!--more-->
|
<!--more-->
|
||||||
|
|
||||||
For more information, see the [CRI](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-node/container-runtime-interface.md) API and specifications.
|
The Kubernetes Container Runtime Interface (CRI) defines the main
|
||||||
|
[gRPC](https://grpc.io) protocol for the communication between the
|
||||||
|
[node components](/docs/concepts/architecture/#node-components)
|
||||||
|
{{< glossary_tooltip text="kubelet" term_id="kubelet" >}} and
|
||||||
|
{{< glossary_tooltip text="container runtime" term_id="container-runtime" >}}.
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ description: >-
|
||||||
The [kubelet](/docs/reference/command-line-tools-reference/kubelet/) collects pod and
|
The [kubelet](/docs/reference/command-line-tools-reference/kubelet/) collects pod and
|
||||||
container metrics via [cAdvisor](https://github.com/google/cadvisor). As an alpha feature,
|
container metrics via [cAdvisor](https://github.com/google/cadvisor). As an alpha feature,
|
||||||
Kubernetes lets you configure the collection of pod and container
|
Kubernetes lets you configure the collection of pod and container
|
||||||
metrics via the {{< glossary_tooltip term_id="container-runtime-interface" text="Container Runtime Interface">}} (CRI). You
|
metrics via the {{< glossary_tooltip term_id="cri" text="Container Runtime Interface">}} (CRI). You
|
||||||
must enable the `PodAndContainerStatsFromCRI` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/) and
|
must enable the `PodAndContainerStatsFromCRI` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/) and
|
||||||
use a compatible CRI implementation (containerd >= 1.6.0, CRI-O >= 1.23.0) to
|
use a compatible CRI implementation (containerd >= 1.6.0, CRI-O >= 1.23.0) to
|
||||||
use the CRI based collection mechanism.
|
use the CRI based collection mechanism.
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ By default, Kubernetes fetches node summary metrics data using an embedded
|
||||||
[cAdvisor](https://github.com/google/cadvisor) that runs within the kubelet. If you
|
[cAdvisor](https://github.com/google/cadvisor) that runs within the kubelet. If you
|
||||||
enable the `PodAndContainerStatsFromCRI` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
|
enable the `PodAndContainerStatsFromCRI` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
|
||||||
in your cluster, and you use a container runtime that supports statistics access via
|
in your cluster, and you use a container runtime that supports statistics access via
|
||||||
{{< glossary_tooltip term_id="container-runtime-interface" text="Container Runtime Interface">}} (CRI), then
|
{{< glossary_tooltip term_id="cri" text="Container Runtime Interface">}} (CRI), then
|
||||||
the kubelet [fetches Pod- and container-level metric data using CRI](/docs/reference/instrumentation/cri-pod-container-metrics), and not via cAdvisor.
|
the kubelet [fetches Pod- and container-level metric data using CRI](/docs/reference/instrumentation/cri-pod-container-metrics), and not via cAdvisor.
|
||||||
|
|
||||||
## {{% heading "whatsnext" %}}
|
## {{% heading "whatsnext" %}}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue