From 9a33c75920e5e939c8789e81769170996778a987 Mon Sep 17 00:00:00 2001 From: yuandongx <786018072@qq.com> Date: Tue, 12 Jan 2021 16:09:52 +0800 Subject: [PATCH] url miss. some lines are outdate. Signed-off-by: yuandongx <786018072@qq.com> --- content/zh/docs/tutorials/hello-minikube.md | 30 ++++++++++++--------- 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/content/zh/docs/tutorials/hello-minikube.md b/content/zh/docs/tutorials/hello-minikube.md index 7d0132e308..b3a23e348b 100644 --- a/content/zh/docs/tutorials/hello-minikube.md +++ b/content/zh/docs/tutorials/hello-minikube.md @@ -31,10 +31,10 @@ card: -本教程向你展示如何使用 [Minikube](/zh/docs/setup/learning-environment/minikube) 和 Katacoda +本教程向你展示如何使用 Minikube 和 Katacoda 在 Kubernetes 上运行一个应用示例。Katacoda 提供免费的浏览器内 Kubernetes 环境。 @@ -71,7 +71,7 @@ This tutorial provides a container image that uses NGINX to echo back all the re @@ -108,7 +108,7 @@ This tutorial provides a container image that uses NGINX to echo back all the re ## Create a Deployment -A Kubernetes [*Pod*](/docs/concepts/workloads/pods/pod/) is a group of one or more Containers, +A Kubernetes [*Pod*](/docs/concepts/workloads/pods/) is a group of one or more Containers, tied together for the purposes of administration and networking. The Pod in this tutorial has only one Container. A Kubernetes [*Deployment*](/docs/concepts/workloads/controllers/deployment/) checks on the health of your @@ -118,7 +118,7 @@ recommended way to manage the creation and scaling of Pods. ## 创建 Deployment -Kubernetes [*Pod*](/zh/docs/concepts/workloads/pods/pod/) 是由一个或多个 +Kubernetes [*Pod*](/zh/docs/concepts/workloads/pods/) 是由一个或多个 为了管理和联网而绑定在一起的容器构成的组。 本教程中的 Pod 只有一个容器。 Kubernetes [*Deployment*](/zh/docs/concepts/workloads/controllers/deployment/) 检查 Pod 的健康状况,并在 Pod 中的容器终止的情况下重新启动新的容器。 @@ -199,7 +199,7 @@ For more information about `kubectl`commands, see the [kubectl overview](/docs/user-guide/kubectl-overview/). --> {{< note >}} -有关 kubectl 命令的更多信息,请参阅 [kubectl 概述](/zh/docs/user-guide/kubectl-overview/)。 +有关 `kubectl` 命令的更多信息,请参阅 [kubectl 概述](/zh/docs/reference/kubectl/overview/)。 {{< /note >}} - 这里的 `--type=LoadBalancer` 标志表明你希望将你的 Service 暴露到集群外部。 + 这里的 `--type=LoadBalancer` 参数表明你希望将你的 Service 暴露到集群外部。 + + 镜像 `k8s.gcr.io/echoserver` 中的应用程序代码仅监听 TCP 8080 端口。 + 如果你用 `kubectl expose` 暴露了其它的端口,客户端将不能访问其它端口。 @@ -290,7 +296,7 @@ Kubernetes [*Service*](/docs/concepts/services-networking/service/).