Skip to content

Commit 46f8258

Browse files
authored
Merge pull request #31255 from ptux/add-tasks/administer-cluster/migrating-from-dockershim/find-out-runtime-you-use-ja
[ja] Translate tasks/administer-cluster/migrating-from-dockershim/find-out-runtime-you-use into Japanese
2 parents baace8b + d9f5966 commit 46f8258

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: ノードで使用されているコンテナランタイムの確認
3+
content_type: task
4+
weight: 10
5+
---
6+
7+
<!-- overview -->
8+
9+
このページでは、クラスター内のノードが使用している[コンテナランタイム](/docs/setup/production-environment/container-runtimes/)を確認する手順を概説しています。
10+
11+
クラスターの実行方法によっては、ノード用のコンテナランタイムが事前に設定されている場合と、設定する必要がある場合があります。
12+
マネージドKubernetesサービスを使用している場合、ノードに設定されているコンテナランタイムを確認するためのベンダー固有の方法があるかもしれません。
13+
このページで説明する方法は、`kubectl`の実行が許可されていればいつでも動作するはずです。
14+
15+
## {{% heading "prerequisites" %}}
16+
17+
`kubectl`をインストールし、設定します。詳細は[ツールのインストール](/ja/docs/tasks/tools/#kubectl)の項を参照してください。
18+
19+
## ノードで使用されているコンテナランタイムの確認
20+
21+
ノードの情報を取得して表示するには`kubectl`を使用します:
22+
23+
```shell
24+
kubectl get nodes -o wide
25+
```
26+
27+
出力は以下のようなものです。列`CONTAINER-RUNTIME`には、ランタイムとそのバージョンが出力されます。
28+
29+
```none
30+
# For dockershim
31+
NAME STATUS VERSION CONTAINER-RUNTIME
32+
node-1 Ready v1.16.15 docker://19.3.1
33+
node-2 Ready v1.16.15 docker://19.3.1
34+
node-3 Ready v1.16.15 docker://19.3.1
35+
```
36+
37+
```none
38+
# For containerd
39+
NAME STATUS VERSION CONTAINER-RUNTIME
40+
node-1 Ready v1.19.6 containerd://1.4.1
41+
node-2 Ready v1.19.6 containerd://1.4.1
42+
node-3 Ready v1.19.6 containerd://1.4.1
43+
```
44+
45+
コンテナランタイムについては、[コンテナランタイム](/docs/setup/production-environment/container-runtimes/)のページで詳細を確認することができます。

0 commit comments

Comments
 (0)