[zh] adjust kubeadm_update_plan.md

Signed-off-by: xin.li <xin.li@daocloud.io>
This commit is contained in:
xin.li
2022-05-16 07:43:24 +08:00
parent bf46c15bdf
commit f32c674f40
2 changed files with 5 additions and 7 deletions
@@ -5,7 +5,7 @@ Check which versions are available to upgrade to and validate whether your curre
--> -->
### 概述 ### 概述
检查可升级到哪些版本,并验证当前的集群是否可升级。 要跳过互联网检查,请传递可选的 [version] 参数 检查可升级到哪些版本,并验证当前的集群是否可升级。 要跳过互联网检查,请传递可选的 [version] 参数
``` ```
kubeadm upgrade plan [version] [flags] kubeadm upgrade plan [version] [flags]
@@ -16,7 +16,7 @@ kubeadm upgrade plan [version] [flags]
--> -->
### 选项 ### 选项
<table style="width: 100%; table-layout: fixed;"> <table style="width: 100%; table-layout: fixed;">
<colgroup> <colgroup>
<col span="1" style="width: 10px;" /> <col span="1" style="width: 10px;" />
<col span="1" /> <col span="1" />
@@ -28,8 +28,8 @@ min-kubernetes-server-version: v1.14
<!-- <!--
This tutorial shows you how to build and deploy a simple _(not production ready)_, multi-tier web application using Kubernetes and [Docker](https://www.docker.com/). This example consists of the following components: This tutorial shows you how to build and deploy a simple _(not production ready)_, multi-tier web application using Kubernetes and [Docker](https://www.docker.com/). This example consists of the following components:
--> -->
本教程向展示如何使用 Kubernetes 和 [Docker](https://www.docker.com/) 构建和部署 本教程向展示如何使用 Kubernetes 和 [Docker](https://www.docker.com/)
一个简单的 _(非面向生产的)_ 多层 web 应用程序。本例由以下组件组成: 构建和部署一个简单的**(非面向生产的)**多层 web 应用程序。本例由以下组件组成:
<!-- <!--
* A single-instance [Redis](https://www.redis.io/) to store guestbook entries * A single-instance [Redis](https://www.redis.io/) to store guestbook entries
@@ -74,7 +74,6 @@ The guestbook application uses Redis to store its data.
<!-- <!--
### Creating the Redis Deployment ### Creating the Redis Deployment
--> -->
### 创建 Redis Deployment ### 创建 Redis Deployment
<!-- <!--
@@ -326,7 +325,7 @@ Guestbook 应用使用 PHP 前端。该前端被配置成与后端的 Redis 跟
```shell ```shell
kubectl apply -f https://k8s.io/examples/application/guestbook/frontend-deployment.yaml kubectl apply -f https://k8s.io/examples/application/guestbook/frontend-deployment.yaml
``` ```
<!-- <!--
1. Query the list of Pods to verify that the three frontend replicas are running: 1. Query the list of Pods to verify that the three frontend replicas are running:
@@ -423,7 +422,6 @@ Some cloud providers, like Google Compute Engine or Google Kubernetes Engine, su
<!-- <!--
### Viewing the Frontend Service via `kubectl port-forward` ### Viewing the Frontend Service via `kubectl port-forward`
--> -->
### 通过 `kubectl port-forward` 查看前端服务 ### 通过 `kubectl port-forward` 查看前端服务
<!-- <!--