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
* [Kubernetes Basics](/docs/tutorials/kubernetes-basics/) is an in-depth interactive tutorial that helps you understand the Kubernetes system and try out some basic Kubernetes features.
45
+
* [Kubernetes Basics](zh/docs/tutorials/kubernetes-basics/) is an in-depth interactive tutorial that helps you understand the Kubernetes system and try out some basic Kubernetes features.
* At node initialization time, using your node initialization scripts (e.g. Salt, Ansible, etc.) or
423
423
image.
424
424
* By copying the profiles to each node and loading them through SSH, as demonstrated in the
425
425
[Example](#example). -->
426
-
* 通过在每个节点上运行 Pod 的[DaemonSet](/docs/concepts/workloads/controllers/daemonset/)确保加载了正确的配置文件。可以找到一个示例实现[这里](https://git.k8s.io/kubernetes/test/images/apparmor-loader)。
426
+
* 通过在每个节点上运行 Pod 的[DaemonSet](/zh/docs/concepts/workloads/controllers/daemonset/)确保加载了正确的配置文件。可以找到一个示例实现[这里](https://git.k8s.io/kubernetes/test/images/apparmor-loader)。
427
427
* 在节点初始化时,使用节点初始化脚本(例如 Salt 、Ansible 等)或镜像。
428
428
* 通过将配置文件复制到每个节点并通过 SSH 加载它们,如[示例](#example)。
429
429
430
430
<!-- The scheduler is not aware of which profiles are loaded onto which node, so the full set of profiles
431
431
must be loaded onto every node. An alternative approach is to add a node label for each profile (or
432
432
class of profiles) on the node, and use a
433
-
[node selector](/docs/concepts/configuration/assign-pod-node/) to ensure the Pod is run on a
433
+
[node selector](/zh/docs/concepts/configuration/assign-pod-node/) to ensure the Pod is run on a
434
434
node with the required profile. -->
435
-
调度程序不知道哪些配置文件加载到哪个节点上,因此必须将全套配置文件加载到每个节点上。另一种方法是为节点上的每个配置文件(或配置文件类)添加节点标签,并使用[节点选择器](/docs/concepts/configuration/assign pod node/)确保 Pod 在具有所需配置文件的节点上运行。
435
+
调度程序不知道哪些配置文件加载到哪个节点上,因此必须将全套配置文件加载到每个节点上。另一种方法是为节点上的每个配置文件(或配置文件类)添加节点标签,并使用[节点选择器](/zh/docs/concepts/configuration/assign pod node/)确保 Pod 在具有所需配置文件的节点上运行。
436
436
437
437
<!-- ### Restricting profiles with the PodSecurityPolicy -->
This page provides a real world example of how to configure Redis using a ConfigMap and builds upon the [Configure Containers Using a ConfigMap](/docs/tasks/configure-pod-container/configure-pod-configmap/) task.
12
+
This page provides a real world example of how to configure Redis using a ConfigMap and builds upon the [Configure Containers Using a ConfigMap](/zh/docs/tasks/configure-pod-container/configure-pod-configmap/) task.
@@ -117,17 +117,17 @@ For more information on the `docker build` command, read the [Docker documentati
117
117
118
118
## Create a Deployment
119
119
120
-
A Kubernetes [*Pod*](/docs/concepts/workloads/pods/pod/) is a group of one or more Containers,
120
+
A Kubernetes [*Pod*](zh/docs/concepts/workloads/pods/pod/) is a group of one or more Containers,
121
121
tied together forthe purposes of administration and networking. The Podin this
122
122
tutorial has only one Container. A Kubernetes
123
-
[*Deployment*](/docs/concepts/workloads/controllers/deployment/) checks on the health of your
123
+
[*Deployment*](zh/docs/concepts/workloads/controllers/deployment/) checks on the health of your
124
124
Pod and restarts the Pod's Container if it terminates. Deployments are the
125
125
recommended way to manage the creation and scaling of Pods.
126
126
-->
127
127
128
128
## 创建 Deployment
129
129
130
-
Kubernetes [*Pod*](/docs/concepts/workloads/pods/pod/) 是由一个或多个为了管理和联网而绑定在一起的容器构成的组。本教程中的 Pod 只有一个容器。Kubernetes [*Deployment*](/docs/concepts/workloads/controllers/deployment/) 检查 Pod 的健康状况,并在 Pod 中的容器终止的情况下重新启动新的容器。Deployment 是管理 Pod 创建和扩展的推荐方法。
130
+
Kubernetes [*Pod*](zh/docs/concepts/workloads/pods/pod/) 是由一个或多个为了管理和联网而绑定在一起的容器构成的组。本教程中的 Pod 只有一个容器。Kubernetes [*Deployment*](zh/docs/concepts/workloads/controllers/deployment/) 检查 Pod 的健康状况,并在 Pod 中的容器终止的情况下重新启动新的容器。Deployment 是管理 Pod 创建和扩展的推荐方法。
131
131
132
132
<!--
133
133
1. Use the `kubectl create` command to create a Deployment that manages a Pod. The
@@ -203,22 +203,22 @@ Pod runs a Container based on the provided Docker image.
203
203
```
204
204
205
205
<!--
206
-
{{< note >}}For more information about `kubectl`commands, see the [kubectl overview](/docs/user-guide/kubectl-overview/).{{< /note >}}
206
+
{{< note >}}For more information about `kubectl`commands, see the [kubectl overview](zh/docs/user-guide/kubectl-overview/).{{< /note >}}
0 commit comments