You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/zh/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro.html
+20-20Lines changed: 20 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -18,38 +18,38 @@
18
18
<divclass="row">
19
19
20
20
<divclass="col-md-8">
21
-
<h3>Objectives</h3>
21
+
<h3>目标</h3>
22
22
<ul>
23
-
<li>Learn what a Kubernetes cluster is.</li>
24
-
<li>Learn what Minikube is.</li>
25
-
<li>Start a Kubernetes cluster using an online terminal.</li>
23
+
<li>了解 Kubernetes 集群。</li>
24
+
<li>了解 Minikube 。</li>
25
+
<li>使用在线终端开启一个 Kubernetes 集群。</li>
26
26
</ul>
27
27
</div>
28
28
29
29
<divclass="col-md-8">
30
-
<h3>Kubernetes Clusters</h3>
30
+
<h3>Kubernetes 集群</h3>
31
31
<p>
32
-
<b>Kubernetes coordinates a highly available cluster of computers that are connected to work as a single unit.</b>The abstractions in Kubernetes allow you to deploy containerized applications to a cluster without tying them specifically to individual machines. To make use of this new model of deployment, applications need to be packaged in a way that decouples them from individual hosts: they need to be containerized. Containerized applications are more flexible and available than in past deployment models, where applications were installed directly onto specific machines as packages deeply integrated into the host. <b>Kubernetes automates the distribution and scheduling of application containers across a cluster in a more efficient way.</b> Kubernetes is an open-source platform and is production-ready.
<p>A Kubernetes cluster consists of two types of resources:
34
+
<p>一个 Kubernetes 集群包含两种类型的资源:
35
35
<ul>
36
-
<li>The <b>Master</b> coordinates the cluster</li>
37
-
<li><b>Nodes</b> are the workers that run applications</li>
36
+
<li><b>Master</b>调度整个集群</li>
37
+
<li><b>Nodes</b>负责运行应用</li>
38
38
</ul>
39
39
</p>
40
40
</div>
41
41
42
42
<divclass="col-md-4">
43
43
<divclass="content__box content__box_lined">
44
-
<h3>Summary:</h3>
44
+
<h3>总结:</h3>
45
45
<ul>
46
-
<li>Kubernetes cluster</li>
47
-
<li>Minikube</li>
46
+
<li>Kubernetes 集群</li>
47
+
<li>Minikube</li>
48
48
</ul>
49
49
</div>
50
50
<divclass="content__box content__box_fill">
51
51
<p><i>
52
-
Kubernetes is a production-grade, open-source platform that orchestrates the placement (scheduling) and execution of application containers within and across computer clusters.
<p><b>The Master is responsible for managing the cluster.</b>The master coordinates all activities in your cluster, such as scheduling applications, maintaining applications' desired state, scaling applications, and rolling out new updates.</p>
75
-
<p><b>A node is a VM or a physical computer that serves as a worker machine in a Kubernetes cluster.</b>Each node has a Kubelet, which is an agent for managing the node and communicating with the Kubernetes master. The node should also have tools for handling container operations, such as Docker or rkt. A Kubernetes cluster that handles production traffic should have a minimum of three nodes.</p>
<p><i>Masters manage the cluster and the nodes are used to host the running applications.</i></p>
80
+
<p><i> Master 管理集群,Node 用于托管正在运行的应用。</i></p>
81
81
</div>
82
82
</div>
83
83
</div>
84
84
85
85
<divclass="row">
86
86
<divclass="col-md-8">
87
-
<p>When you deploy applications on Kubernetes, you tell the master to start the application containers. The master schedules the containers to run on the cluster's nodes. <b>The nodes communicate with the master using the Kubernetes API</b>, which the master exposes. End users can also use the Kubernetes API directly to interact with the cluster.</p>
<p>A Kubernetes cluster can be deployed on either physical or virtual machines. To get started with Kubernetes development, you can use Minikube. Minikube is a lightweight Kubernetes implementation that creates a VM on your local machine and deploys a simple cluster containing only one node. Minikube is available for Linux, macOS, and Windows systems. The Minikube CLI provides basic bootstrapping operations for working with your cluster, including start, stop, status, and delete. For this tutorial, however, you'll use a provided online terminal with Minikube pre-installed.</p>
89
+
<p> Kubernetes 既可以部署在物理机上也可以部署在虚拟机上。您可以使用 Minikube 开始部署 Kubernetes 集群。 Minikube 是一种轻量级的 Kubernetes 实现,可在本地计算机上创建 VM 并部署仅包含一个节点的简单集群。 Minikube 可用于 Linux , macOS 和 Windows 系统。Minikube CLI 提供了用于引导群集工作的多种操作,包括启动、停止、查看状态和删除。在本教程里,您可以使用预装有 Minikube 的在线终端进行体验。</p>
90
90
91
-
<p>Now that you know what Kubernetes is, let's go to the online tutorial and start our first cluster!</p>
0 commit comments