Translate "docker", "mirror-pod", and "label" in the glossary and modify "selector".

This commit is contained in:
TAKAHASHI Shuuji
2020-08-18 10:01:42 +09:00
parent f28cae995f
commit 2803a7bd9f
4 changed files with 27 additions and 13 deletions
+3 -3
View File
@@ -4,14 +4,14 @@ id: docker
date: 2018-04-12
full_link: https://docs.docker.com/engine/
short_description: >
Docker is a software technology providing operating-system-level virtualization also known as containers.
Dockerは、コンテナとして知られる、オペレーティングシステムレベルでの仮想化を提供するソフトウェア技術です。
aka:
tags:
- fundamental
---
Docker (specifically, Docker Engine) is a software technology providing operating-system-level virtualization also known as {{< glossary_tooltip text="containers" term_id="container" >}}.
Docker(正確にはDocker Engine)は、{{< glossary_tooltip text="コンテナ" term_id="container" >}}としても知られる、オペレーティングシステムレベルでの仮想化を提供するソフトウェア技術です。
<!--more-->
Docker uses the resource isolation features of the Linux kernel such as cgroups and kernel namespaces, and a union-capable file system such as OverlayFS and others to allow independent containers to run within a single Linux instance, avoiding the overhead of starting and maintaining virtual machines (VMs).
Dockerは、croupsやカーネル名前空間などのLinuxカーネルのリソースの隔離機能、OverlayFSなどの統合能力のあるファイルシステム、独立したコンテナを単一のLinuxインスタンス内で実行可能にするその他の機能などを利用して、マシンレベルでの仮想マシン(VM)の起動にかかるオーバーヘッドを回避します。
+17
View File
@@ -0,0 +1,17 @@
---
title: ラベル
id: label
date: 2018-04-12
full_link: /docs/concepts/overview/working-with-objects/labels
short_description: >
ユーザーにとって意味があり関連性のある識別属性を、オブジェクトにタグ付けするものです。
aka:
tags:
- fundamental
---
ユーザーにとって意味があり関連性のある識別属性を、オブジェクトにタグ付けするものです。
<!--more-->
ラベルは、{{< glossary_tooltip text="Pod" term_id="pod" >}}などのオブジェクトに付与されるキーと値のペアです。オブジェクトのサブセットを組織化したり選択したりするために使われます。
@@ -1,21 +1,18 @@
---
title: Mirror Pod
title: ミラーPod
id: mirror-pod
date: 2019-08-06
short_description: >
An object in the API server that tracks a static pod on a kubelet.
kubelet上のstatic Podを追跡するAPIサーバー内のオブジェクトです。
aka:
tags:
- fundamental
---
A {{< glossary_tooltip text="pod" term_id="pod" >}} object that a kubelet uses
to represent a {{< glossary_tooltip text="static pod" term_id="static-pod" >}}
kubeletが{{< glossary_tooltip text="static Pod" term_id="static-pod" >}}を代表するために使用する{{< glossary_tooltip text="Pod" term_id="pod" >}}オブジェクトです。
<!--more-->
When the kubelet finds a static pod in its configuration, it automatically tries to
create a Pod object on the Kubernetes API server for it. This means that the pod
will be visible on the API server, but cannot be controlled from there.
kubeletが設定の中にstatic Podを発見すると、static Podに対応するPodオブジェクトをKubernetes APIサーバー上に自動的に作成しようとします。つまり、APIサーバーからはPodが見えていますが、制御まではできないということです。
(For example, removing a mirror pod will not stop the kubelet daemon from running it).
(たとえば、ミラーPodを削除しても、kubeletデーモンが対応するPodの実行を停止することはありません。)
@@ -4,13 +4,13 @@ id: selector
date: 2018-04-12
full_link: /docs/concepts/overview/working-with-objects/labels/
short_description: >
ユーザーはラベルに基づいてリソースのリストをフィルタリングできます。
セレクターを利用すると、ユーザーはラベルに基づいてリソースのリストをフィルタリングできます。
aka:
tags:
- fundamental
---
ユーザーは{{< glossary_tooltip text="ラベル" term_id="label" >}}に基づいてリソースのリストをフィルタリングできます。
セレクターを利用すると、ユーザーは{{< glossary_tooltip text="ラベル" term_id="label" >}}に基づいてリソースのリストをフィルタリングできます。
<!--more-->