Fix: update the install version (#642)
Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
This commit is contained in:
parent
8b13e0af8a
commit
2ee06da5a5
|
@ -2,8 +2,8 @@
|
|||
title: Installation
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
> For upgrading existing KubeVela, please read the [upgrade guide](./platform-engineers/advanced-install/#upgrade).
|
||||
|
||||
|
@ -183,7 +183,7 @@ KubeVela CLI provides an easy to engage and manage your application delivery in
|
|||
** MacOS/Linux **
|
||||
|
||||
```shell script
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.1
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.3
|
||||
```
|
||||
|
||||
**Windows**
|
||||
|
@ -286,7 +286,7 @@ If you are helm user, you can also use helm to install kubevela core:
|
|||
```
|
||||
helm repo add kubevela https://charts.kubevela.net/core
|
||||
helm repo update
|
||||
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.3.1 --wait
|
||||
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.3.3 --wait
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
|
@ -299,7 +299,7 @@ helm install --create-namespace -n vela-system kubevela kubevela/vela-core --ver
|
|||
VelaUX is a dashboard including UI+API services, it enables you to do everything around application delivery and management.
|
||||
|
||||
```shell script
|
||||
vela addon enable velaux --version v1.3.2
|
||||
vela addon enable velaux --version v1.3.3
|
||||
```
|
||||
|
||||
expected output:
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
title: Custom installation and upgrade
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
## Install KubeVela with cert-manager
|
||||
|
||||
|
@ -49,7 +49,7 @@ vela install --version 1.3.0-beta.2
|
|||
** MacOS/Linux **
|
||||
|
||||
```shell script
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.1
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.3
|
||||
```
|
||||
|
||||
**Windows**
|
||||
|
@ -98,13 +98,13 @@ sudo mv ./vela /usr/local/bin/vela
|
|||
### 2. Upgrade Vela Core
|
||||
|
||||
```shell
|
||||
vela install --version v1.3.2
|
||||
vela install --version v1.3.3
|
||||
```
|
||||
|
||||
### 3. Upgrade VelaUX
|
||||
|
||||
```shell
|
||||
vela addon enable velaux version=v1.3.2
|
||||
vela addon enable velaux version=v1.3.3
|
||||
```
|
||||
|
||||
> If you set custom parameters during installation, be sure to include the corresponding parameters.
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
title: 快速安装
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
> 如果是要升级现有的 KubeVela,请直接阅读 [升级指南](./platform-engineers/advanced-install#升级)。
|
||||
> 如果需要离线安装,请参考 [KubeVela 离线部署手册](./platform-engineers/system-operation/offline-installation)。
|
||||
|
@ -178,7 +178,7 @@ KubeVela CLI 提供了命令行工具来便捷的应用终端管理能力。
|
|||
** MacOS/Linux **
|
||||
|
||||
```shell script
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.1
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.3
|
||||
```
|
||||
|
||||
**Windows**
|
||||
|
@ -280,7 +280,7 @@ If you want to enable dashboard, please run "vela addon enable velaux"
|
|||
```
|
||||
helm repo add kubevela https://charts.kubevela.net/core
|
||||
helm repo update
|
||||
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.3.1 --wait
|
||||
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.3.3 --wait
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
|
@ -292,7 +292,7 @@ helm install --create-namespace -n vela-system kubevela kubevela/vela-core --ver
|
|||
VelaUX 是一个可视化操作界面,包括 UI+API 服务,它适用于大多数厂商开箱即用的获取应用交付和管理能力。
|
||||
|
||||
```shell script
|
||||
vela addon enable velaux serviceType=NodePort --version v1.3.2
|
||||
vela addon enable velaux serviceType=NodePort --version v1.3.3
|
||||
|
||||
# 获取映射的端口,通过该端口访问 VelaUX
|
||||
kubectl get service velaux -n vela-system -o jsonpath="{.spec.ports[0].nodePort}"
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
title: 自定义安装和升级
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
## 带着证书管理器安装 KubeVela
|
||||
|
||||
|
@ -51,7 +51,7 @@ vela install --version 1.3.0-beta.2
|
|||
** MacOS/Linux **
|
||||
|
||||
```shell script
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.1
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.3
|
||||
```
|
||||
|
||||
**Windows**
|
||||
|
@ -100,13 +100,13 @@ sudo mv ./vela /usr/local/bin/vela
|
|||
### 2. 升级核心控制器
|
||||
|
||||
```
|
||||
vela install --version v1.3.2
|
||||
vela install --version v1.3.3
|
||||
```
|
||||
|
||||
### 3. 升级 VelaUX
|
||||
|
||||
```
|
||||
vela addon enable velaux version=v1.3.2
|
||||
vela addon enable velaux version=v1.3.3
|
||||
```
|
||||
|
||||
> 请注意,如果安装时指定了自定义参数,比如数据库地址。请在升级时同时指定该参数。
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
title: 快速安装
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
> 如果是要升级现有的 KubeVela,请直接阅读 [升级指南](./platform-engineers/advanced-install#升级)。
|
||||
> 如果需要离线安装,请参考 [KubeVela 离线部署手册](./platform-engineers/system-operation/offline-installation)。
|
||||
|
@ -178,7 +178,7 @@ KubeVela CLI 提供了命令行工具来便捷的应用终端管理能力。
|
|||
** MacOS/Linux **
|
||||
|
||||
```shell script
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.1
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.3
|
||||
```
|
||||
|
||||
**Windows**
|
||||
|
@ -280,7 +280,7 @@ If you want to enable dashboard, please run "vela addon enable velaux"
|
|||
```
|
||||
helm repo add kubevela https://charts.kubevela.net/core
|
||||
helm repo update
|
||||
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.3.1 --wait
|
||||
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.3.3 --wait
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
|
@ -292,7 +292,7 @@ helm install --create-namespace -n vela-system kubevela kubevela/vela-core --ver
|
|||
VelaUX 是一个可视化操作界面,包括 UI+API 服务,它适用于大多数厂商开箱即用的获取应用交付和管理能力。
|
||||
|
||||
```shell script
|
||||
vela addon enable velaux serviceType=NodePort --version v1.3.2
|
||||
vela addon enable velaux serviceType=NodePort --version v1.3.3
|
||||
|
||||
# 获取映射的端口,通过该端口访问 VelaUX
|
||||
kubectl get service velaux -n vela-system -o jsonpath="{.spec.ports[0].nodePort}"
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
title: 自定义安装和升级
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
## 带着证书管理器安装 KubeVela
|
||||
|
||||
|
@ -51,7 +51,7 @@ vela install --version 1.3.0-beta.2
|
|||
** MacOS/Linux **
|
||||
|
||||
```shell script
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.1
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.3
|
||||
```
|
||||
|
||||
**Windows**
|
||||
|
@ -100,13 +100,13 @@ sudo mv ./vela /usr/local/bin/vela
|
|||
### 2. 升级核心控制器
|
||||
|
||||
```
|
||||
vela install --version v1.3.2
|
||||
vela install --version v1.3.3
|
||||
```
|
||||
|
||||
### 3. 升级 VelaUX
|
||||
|
||||
```
|
||||
vela addon enable velaux version=v1.3.2
|
||||
vela addon enable velaux version=v1.3.3
|
||||
```
|
||||
|
||||
> 请注意,如果安装时指定了自定义参数,比如数据库地址。请在升级时同时指定该参数。
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
title: Installation
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
> For upgrading existing KubeVela, please read the [upgrade guide](./platform-engineers/advanced-install/#upgrade).
|
||||
|
||||
|
@ -183,7 +183,7 @@ KubeVela CLI provides an easy to engage and manage your application delivery in
|
|||
** MacOS/Linux **
|
||||
|
||||
```shell script
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.1
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.3
|
||||
```
|
||||
|
||||
**Windows**
|
||||
|
@ -286,7 +286,7 @@ If you are helm user, you can also use helm to install kubevela core:
|
|||
```
|
||||
helm repo add kubevela https://charts.kubevela.net/core
|
||||
helm repo update
|
||||
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.3.1 --wait
|
||||
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.3.3 --wait
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
|
@ -299,7 +299,7 @@ helm install --create-namespace -n vela-system kubevela kubevela/vela-core --ver
|
|||
VelaUX is a dashboard including UI+API services, it enables you to do everything around application delivery and management.
|
||||
|
||||
```shell script
|
||||
vela addon enable velaux --version v1.3.2
|
||||
vela addon enable velaux --version v1.3.3
|
||||
```
|
||||
|
||||
expected output:
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
title: Custom installation and upgrade
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
## Install KubeVela with cert-manager
|
||||
|
||||
|
@ -49,7 +49,7 @@ vela install --version 1.3.0-beta.2
|
|||
** MacOS/Linux **
|
||||
|
||||
```shell script
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.1
|
||||
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.3.3
|
||||
```
|
||||
|
||||
**Windows**
|
||||
|
@ -98,13 +98,13 @@ sudo mv ./vela /usr/local/bin/vela
|
|||
### 2. Upgrade Vela Core
|
||||
|
||||
```shell
|
||||
vela install --version v1.3.2
|
||||
vela install --version v1.3.3
|
||||
```
|
||||
|
||||
### 3. Upgrade VelaUX
|
||||
|
||||
```shell
|
||||
vela addon enable velaux version=v1.3.2
|
||||
vela addon enable velaux version=v1.3.3
|
||||
```
|
||||
|
||||
> If you set custom parameters during installation, be sure to include the corresponding parameters.
|
||||
|
|
Loading…
Reference in New Issue