Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions doc/docs/en/quick-start/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,12 @@ delete from nexent.user_tenant_t where user_id = 'your_user_id';

### Offline Deployment

When the target host cannot access public image registries, download a prebuilt offline deployment package from GitHub Actions:
When the target host cannot access public image registries, download a prebuilt offline deployment package from Nexent Releases:

1. Sign in to GitHub and open [Build Offline Deployment Package](https://github.com/ModelEngine-Group/nexent/actions/workflows/build-offline-package.yml).
2. Select a successful run for the required version and download the artifact matching the server architecture from **Artifacts** at the bottom of the run page.
1. Open [Nexent Releases](https://github.com/ModelEngine-Group/nexent/releases).
2. Find the required version in the release list and download the archive matching the server architecture from that release's **Assets** (Versions v2.6.0 and later support this offline deployment method).
3. Download `nexent-<version>-amd64.zip` for AMD64 or `nexent-<version>-arm64.zip` for ARM64.

GitHub Actions artifacts are retained for 30 days. If the required artifact has expired, ask a maintainer to rerun the workflow.

Copy the downloaded archive to the offline host and extract it. The downloaded artifact contains the package files directly, with no nested archive:

```bash
Expand Down
8 changes: 4 additions & 4 deletions doc/docs/en/quick-start/kubernetes-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ bash deploy.sh k8s

### Offline Deployment

When the target cluster cannot access public image registries, download a prebuilt offline deployment package from GitHub Actions:
When the target cluster cannot access public image registries, download a prebuilt offline deployment package from Nexent Releases:

1. Sign in to GitHub and open [Build Offline Deployment Package](https://github.com/ModelEngine-Group/nexent/actions/workflows/build-offline-package.yml).
2. Select a successful run for the required version and download `nexent-<version>-<platform>.zip` matching the cluster node architecture from **Artifacts**.
3. Copy the archive to a management host that can access the target cluster and extract it. Workflow artifacts are retained for 30 days; if one has expired, ask a maintainer to rerun the workflow.
1. Open [Nexent Releases](https://github.com/ModelEngine-Group/nexent/releases).
2. Find the required version in the release list and download `nexent-<version>-<platform>.zip` matching the cluster node architecture from that release's **Assets**.
3. Copy the archive to a management host that can access the target cluster and extract it (Versions v2.6.0 and later support this offline deployment method).

Extract the offline deployment package:

Expand Down
8 changes: 3 additions & 5 deletions doc/docs/zh/quick-start/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,12 @@ delete from nexent.user_tenant_t where user_id = 'your_user_id';
```
### 离线部署

目标服务器无法访问公网镜像仓库时,可从 GitHub Actions 获取已经打包好的离线部署包
目标服务器无法访问公网镜像仓库时,可从 Nexent Releases 下载已经打包好的离线部署包
Comment thread
DoYX marked this conversation as resolved.

1. 登录 GitHub,打开 [Build Offline Deployment Package](https://github.com/ModelEngine-Group/nexent/actions/workflows/build-offline-package.yml)。
2. 选择目标版本对应的成功运行记录,在页面底部的 **Artifacts** 中下载与服务器架构匹配的压缩包。
1. 打开 [Nexent Releases](https://github.com/ModelEngine-Group/nexent/releases)。
2. 在 Release 列表中找到需要的版本,并在该版本的 **Assets** 中下载与服务器架构匹配的压缩包(v2.6.0及以后的版本支持此离线部署方法)
3. `amd64` 服务器下载 `nexent-<version>-amd64.zip`,ARM64 服务器下载 `nexent-<version>-arm64.zip`。

GitHub Actions 构建产物默认保留 30 天。如果目标版本的产物已过期,请联系维护者重新运行工作流。

下载后,将压缩包复制到离线服务器并解压。压缩包内直接包含离线包文件,无需再次解压内层归档:

```bash
Expand Down
8 changes: 4 additions & 4 deletions doc/docs/zh/quick-start/kubernetes-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ bash deploy.sh k8s

### 离线部署

目标集群无法访问公网镜像仓库时,可从 GitHub Actions 获取已经打包好的离线部署包
目标集群无法访问公网镜像仓库时,可从 Nexent Releases 下载已经打包好的离线部署包

1. 登录 GitHub,打开 [Build Offline Deployment Package](https://github.com/ModelEngine-Group/nexent/actions/workflows/build-offline-package.yml)。
2. 选择目标版本对应的成功运行记录,在 **Artifacts** 中下载与集群节点架构匹配的 `nexent-<version>-<platform>.zip`。
3. 将压缩包复制到可以访问目标集群的管理节点并解压。工作流产物默认保留 30 天;产物过期时,可联系维护者重新运行工作流
1. 打开 [Nexent Releases](https://github.com/ModelEngine-Group/nexent/releases)。
2. 在 Release 列表中找到需要的版本,并在该版本的 **Assets** 中下载与集群节点架构匹配的 `nexent-<version>-<platform>.zip`。
3. 将压缩包复制到可以访问目标集群的管理节点并解压(v2.6.0及以后的版本支持此离线部署方法)

解压离线部署包:

Expand Down
Loading