Skip to content

Commit 0f1b4e7

Browse files
committed
fix: update installation scripts and image URLs to use static.kubevela.net
Signed-off-by: vishal210893 <vishal210893@gmail.com>
1 parent 898ca8e commit 0f1b4e7

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

blog/2022-06-27-terraform-integrate-with-vela.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ In this part, we will introduce a solution that you can expose any of your Kuber
145145
* Install KubeVela
146146

147147
```
148-
curl -fsSl ../docs/resources/kubevela-net/script/install-velad.sh | bash
148+
curl -fsSl https://static.kubevela.net/script/install-velad.sh | bash
149149
velad install
150150
```
151151

docs/installation/standalone.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ asdf global velad <version>
8484
Run following command in powershell with administrator privilege.
8585

8686
```powershell
87-
powershell -Command "iwr -useb ../resources/kubevela-net/script/install-velad.ps1 | iex"
87+
powershell -Command "iwr -useb https://static.kubevela.net/script/install-velad.ps1 | iex"
8888
```
8989
Check `velad` installed in `C:\vela\`
9090

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ module.exports = {
126126
href: '.',
127127
},
128128
{
129-
html: '<div class="wechat"> <a class="wechat-label">Wechat Group(Scan code to request joining)</a> <a class="wechat-img" rel="noreferrer noopener" aria-label="Wechat Group"><img src="docs/resources/kubevela-net/images/barnett-wechat.jpg" alt="Broker wechat to add you into the user group."></div>',
129+
html: '<div class="wechat"> <a class="wechat-label">Wechat Group(Scan code to request joining)</a> <a class="wechat-img" rel="noreferrer noopener" aria-label="Wechat Group"><img src="/docs/resources/kubevela-net/images/barnett-wechat.jpg" alt="Broker wechat to add you into the user group."></div>',
130130
},
131131
],
132132
},

i18n/zh/docusaurus-plugin-content-blog/2022-06-27-terraform-integrate-with-vela.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ vela show alibaba-ecs --web
139139
* 安装 KubeVela
140140

141141
```bash
142-
curl -fsSl ../../../docs/resources/kubevela-net/script/install-velad.sh | bash
142+
curl -fsSl https://static.kubevela.net/script/install-velad.sh | bash
143143
velad install
144144
```
145145

i18n/zh/docusaurus-plugin-content-blog/2022-08-17-helm-rollout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Helm 设计之初就为了保证其简单易用,放弃了复杂的组件编排
4949
- 安装 KubeVela
5050

5151
```shell
52-
$ curl -fsSl ../../../docs/resources/kubevela-net/script/install-velad.sh | bash
52+
$ curl -fsSl https://static.kubevela.net/script/install-velad.sh | bash
5353
velad install
5454
```
5555

i18n/zh/docusaurus-plugin-content-docs/current/installation/standalone.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ VelaD 支持在这些操作系统中安装 KubeVela:Linux, macOS, Windows。
5050

5151
在安装过程中你可能需要 root 权限。 如果你不需要 root 权限和自动化,你可以从[发布页面](https://github.com/kubevela/velad/releases)下载并手动解压缩。
5252
```shell
53-
curl -fsSl ../../../../../docs/resources/kubevela-net/script/install-velad.sh | bash
53+
curl -fsSl https://static.kubevela.net/script/install-velad.sh | bash
5454
```
5555

5656
检查 `velad` 安装到 `/usr/local/bin/`
@@ -61,7 +61,7 @@ curl -fsSl ../../../../../docs/resources/kubevela-net/script/install-velad.sh |
6161
以管理员身份启动 PowerShell 并执行如下命令:
6262

6363
```shell
64-
powershell -Command "iwr -useb ../../../../../docs/resources/kubevela-net/script/install-velad.ps1 | iex"
64+
powershell -Command "iwr -useb https://static.kubevela.net/script/install-velad.ps1 | iex"
6565
```
6666
检查 `velad` 安装到 `C:\vela\`
6767

i18n/zh/docusaurus-plugin-content-docs/current/tutorials/custom-image-delivery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ spec:
296296
type: deploy
297297
```
298298
299-
![java-app](../../../../../docs/resources/kubevela-net/images/1.5/java-war.jpg)
299+
![java-app](https://static.kubevela.net/images/1.5/java-war.jpg)
300300
301301
这个例子包括三个组件,order 服务依赖 catalog 和 customer 服务。 开发者只需要关心 war 包 URL 和 tomcat/JRE 版本,Java开发者对此都很熟悉。 开发人员应将 war 包上传到仓库,例如 Jfrog。 获取下载 URL 以分配给 `warURL` 字段。
302302

i18n/zh/docusaurus-plugin-content-docs/version-v1.10/installation/standalone.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ VelaD 支持在这些操作系统中安装 KubeVela:Linux, macOS, Windows。
5050

5151
在安装过程中你可能需要 root 权限。 如果你不需要 root 权限和自动化,你可以从[发布页面](https://github.com/kubevela/velad/releases)下载并手动解压缩。
5252
```shell
53-
curl -fsSl ../../../../../docs/resources/kubevela-net/script/install-velad.sh | bash
53+
curl -fsSl https://static.kubevela.net/script/install-velad.sh | bash
5454
```
5555

5656
检查 `velad` 安装到 `/usr/local/bin/`
@@ -61,7 +61,7 @@ curl -fsSl ../../../../../docs/resources/kubevela-net/script/install-velad.sh |
6161
以管理员身份启动 PowerShell 并执行如下命令:
6262

6363
```shell
64-
powershell -Command "iwr -useb ../../../../../docs/resources/kubevela-net/script/install-velad.ps1 | iex"
64+
powershell -Command "iwr -useb https://static.kubevela.net/script/install-velad.ps1 | iex"
6565
```
6666
检查 `velad` 安装到 `C:\vela\`
6767

@@ -384,7 +384,7 @@ cat $(velad kubeconfig --external)
384384
要访问集群,还需要在本地机器上安装 vela CLI (`vela`)。
385385

386386
```shell
387-
curl -fsSl ../../../../../docs/resources/kubevela-net/script/install.sh | bash
387+
curl -fsSl https://static.kubevela.net/script/install.sh | bash
388388
```
389389

390390
#### 验证安装

i18n/zh/docusaurus-plugin-content-docs/version-v1.7/installation/standalone.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ VelaD 支持在这些操作系统中安装 KubeVela:Linux, macOS, Windows。
5050

5151
在安装过程中你可能需要 root 权限。 如果你不需要 root 权限和自动化,你可以从[发布页面](https://github.com/kubevela/velad/releases)下载并手动解压缩。
5252
```shell
53-
curl -fsSl ../../../../../docs/resources/kubevela-net/script/install-velad.sh | bash
53+
curl -fsSl https://static.kubevela.net/script/install-velad.sh | bash
5454
```
5555

5656
检查 `velad` 安装到 `/usr/local/bin/`
@@ -61,7 +61,7 @@ curl -fsSl ../../../../../docs/resources/kubevela-net/script/install-velad.sh |
6161
以管理员身份启动 PowerShell 并执行如下命令:
6262

6363
```shell
64-
powershell -Command "iwr -useb ../../../../../docs/resources/kubevela-net/script/install-velad.ps1 | iex"
64+
powershell -Command "iwr -useb https://static.kubevela.net/script/install-velad.ps1 | iex"
6565
```
6666
检查 `velad` 安装到 `C:\vela\`
6767

@@ -384,7 +384,7 @@ cat $(velad kubeconfig --external)
384384
要访问集群,还需要在本地机器上安装 vela CLI (`vela`)。
385385

386386
```shell
387-
curl -fsSl ../../../../../docs/resources/kubevela-net/script/install.sh | bash
387+
curl -fsSl https://static.kubevela.net/script/install.sh | bash
388388
```
389389

390390
#### 验证安装

i18n/zh/docusaurus-plugin-content-docs/version-v1.8/installation/standalone.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ VelaD 支持在这些操作系统中安装 KubeVela:Linux, macOS, Windows。
5050

5151
在安装过程中你可能需要 root 权限。 如果你不需要 root 权限和自动化,你可以从[发布页面](https://github.com/kubevela/velad/releases)下载并手动解压缩。
5252
```shell
53-
curl -fsSl ../../../../../docs/resources/kubevela-net/script/install-velad.sh | bash
53+
curl -fsSl https://static.kubevela.net/script/install-velad.sh | bash
5454
```
5555

5656
检查 `velad` 安装到 `/usr/local/bin/`
@@ -61,7 +61,7 @@ curl -fsSl ../../../../../docs/resources/kubevela-net/script/install-velad.sh |
6161
以管理员身份启动 PowerShell 并执行如下命令:
6262

6363
```shell
64-
powershell -Command "iwr -useb ../../../../../docs/resources/kubevela-net/script/install-velad.ps1 | iex"
64+
powershell -Command "iwr -useb https://static.kubevela.net/script/install-velad.ps1 | iex"
6565
```
6666
检查 `velad` 安装到 `C:\vela\`
6767

@@ -384,7 +384,7 @@ cat $(velad kubeconfig --external)
384384
要访问集群,还需要在本地机器上安装 vela CLI (`vela`)。
385385

386386
```shell
387-
curl -fsSl ../../../../../docs/resources/kubevela-net/script/install.sh | bash
387+
curl -fsSl https://static.kubevela.net/script/install.sh | bash
388388
```
389389

390390
#### 验证安装

0 commit comments

Comments
 (0)