Merge pull request #21751 from ZhiFeng1993/ZF--sync-chinese-minilube-page-with-english

Sync Chinese minikube page with English one
pull/21765/head
Kubernetes Prow Robot 2020-06-14 19:55:56 -07:00 committed by GitHub
commit acc695cc4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
让我们使用名为 `echoserver` 的镜像创建一个 Kubernetes Deployment并使用 `--port` 在端口 8080 上暴露服务。`echoserver` 是一个简单的 HTTP 服务器。
```shell
kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.10 --port=8080
kubectl create deployment hello-minikube --image=k8s.gcr.io/echoserver:1.10
```
<!--
The output is similar to this:
@ -128,7 +128,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo
-->
```shell
kubectl expose deployment hello-minikube --type=NodePort
kubectl expose deployment hello-minikube --type=NodePort --port=8080
```
<!--
The option `--type=NodePort` specifies the type of the Service.