From 08720f9e913174536ad3582a3bf8f59aebe8de74 Mon Sep 17 00:00:00 2001 From: JiaoShuntian Date: Mon, 11 May 2026 08:39:03 +0000 Subject: [PATCH 1/2] docs: add IvorySQL community Harbor registry tips for Chinese users Add concise TIP notes in Docker-related sections pointing to the new community Harbor mirror (https://registry.highgo.com/) so users in China can pull images faster. Applied symmetrically across EN/ and CN/ in the Quick Start, Installation, Docker & Podman deployment, and Operator image-preload pages. --- .../master/cloud_platform/ivorysql_cloud_installation.adoc | 2 ++ .../master/containerization/docker_podman_deployment.adoc | 5 +++++ .../ROOT/pages/master/getting-started/quick_start.adoc | 2 ++ CN/modules/ROOT/pages/master/installation_guide.adoc | 2 ++ .../master/cloud_platform/ivorysql_cloud_installation.adoc | 2 ++ .../master/containerization/docker_podman_deployment.adoc | 5 +++++ .../ROOT/pages/master/getting-started/quick_start.adoc | 2 ++ EN/modules/ROOT/pages/master/installation_guide.adoc | 2 ++ 8 files changed, 22 insertions(+) diff --git a/CN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc b/CN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc index 3c8e2b59..b748b5c5 100644 --- a/CN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc +++ b/CN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc @@ -364,6 +364,8 @@ https://github.com/IvorySQL/ivory-operator/tree/IVYO_REL_5_STABLE[https://github 如果服务器可以直接访问到docker hub,可以跳过该章节。否则需要在所有的K8S集群节点提前load 如下docker镜像 +TIP: 国内用户可使用 IvorySQL 社区的 Harbor 镜像服务(https://registry.highgo.com/[https://registry.highgo.com/])拉取以下镜像,将 `docker.io/` 替换为 `registry.highgo.com/` 即可。 + [literal] ---- docker.io/ivorysql/pgadmin:ubi8-9.9-5.0-1 diff --git a/CN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc b/CN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc index 2cbbd0b5..72a0383d 100644 --- a/CN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc +++ b/CN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc @@ -4,6 +4,11 @@ = Docker & Podman 部署IvorySQL +[TIP] +==== +除 Docker Hub 外,IvorySQL 社区还为国内用户提供 Harbor 镜像服务:https://registry.highgo.com/[https://registry.highgo.com/]。将本章节中的镜像地址前缀替换为 `registry.highgo.com/` 即可使用,例如 `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`。 +==== + == docker方式运行 ** 从Docker Hub上获取IvorySQL镜像 diff --git a/CN/modules/ROOT/pages/master/getting-started/quick_start.adoc b/CN/modules/ROOT/pages/master/getting-started/quick_start.adoc index c30b9d31..15ee2711 100644 --- a/CN/modules/ROOT/pages/master/getting-started/quick_start.adoc +++ b/CN/modules/ROOT/pages/master/getting-started/quick_start.adoc @@ -116,6 +116,8 @@ ivorysql 3238 1551 0 20:35 pts/0 00:00:00 grep --color=auto postgres $ docker pull ivorysql/ivorysql:5.0-ubi8 ``` +TIP: 国内用户可使用 IvorySQL 社区的 Harbor 镜像服务(https://registry.highgo.com/[https://registry.highgo.com/])加速拉取,例如:`docker pull registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`。 + ** 运行IvorySQL ``` $ docker run --name ivorysql -p 5434:5432 -e IVORYSQL_PASSWORD=your_password -d ivorysql/ivorysql:5.0-ubi8 diff --git a/CN/modules/ROOT/pages/master/installation_guide.adoc b/CN/modules/ROOT/pages/master/installation_guide.adoc index 67308ec8..47a3c4eb 100644 --- a/CN/modules/ROOT/pages/master/installation_guide.adoc +++ b/CN/modules/ROOT/pages/master/installation_guide.adoc @@ -43,6 +43,8 @@ $ sudo dnf install -y ivorysql5-5.0 $ docker pull ivorysql/ivorysql:5.0-ubi8 ``` +TIP: 国内用户也可使用 IvorySQL 社区的 Harbor 镜像服务(https://registry.highgo.com/[https://registry.highgo.com/])加速拉取,将上述地址替换为 `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8` 即可。 + ** 运行IvorySQL ``` $ docker run --name ivorysql -p 5434:5432 -e IVORYSQL_PASSWORD=your_password -d ivorysql/ivorysql:5.0-ubi8 diff --git a/EN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc b/EN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc index cd9d9b10..3dbb3b77 100644 --- a/EN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc +++ b/EN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc @@ -363,6 +363,8 @@ https://github.com/IvorySQL/ivory-operator/tree/IVYO_REL_5_STABLE[https://github If your servers have direct access to Docker Hub, you can skip this step. Otherwise, preload the following images on every node in the Kubernetes cluster. +TIP: Users in China can pull the following images from the IvorySQL community Harbor registry (https://registry.highgo.com/[https://registry.highgo.com/]) by replacing the `docker.io/` prefix with `registry.highgo.com/`. + [literal] ---- docker.io/ivorysql/pgadmin:ubi8-9.9-5.0-1 diff --git a/EN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc b/EN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc index d3255e3e..21df2e72 100644 --- a/EN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc +++ b/EN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc @@ -4,6 +4,11 @@ = Docker & Podman deployment IvorySQL +[TIP] +==== +In addition to Docker Hub, the IvorySQL community also provides a Harbor registry for users in China: https://registry.highgo.com/[https://registry.highgo.com/]. Replace the image prefix used in this chapter with `registry.highgo.com/`, e.g. `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. +==== + == Running IvorySQL in docker ** Get IvorySQL image from Docker Hub diff --git a/EN/modules/ROOT/pages/master/getting-started/quick_start.adoc b/EN/modules/ROOT/pages/master/getting-started/quick_start.adoc index 7a02c9c4..cad9690b 100644 --- a/EN/modules/ROOT/pages/master/getting-started/quick_start.adoc +++ b/EN/modules/ROOT/pages/master/getting-started/quick_start.adoc @@ -111,6 +111,8 @@ ivorysql 3238 1551 0 20:35 pts/0 00:00:00 grep --color=auto postgres $ docker pull ivorysql/ivorysql:5.0-ubi8 ``` +TIP: Users in China can also pull from the IvorySQL community Harbor registry (https://registry.highgo.com/[https://registry.highgo.com/]) for faster downloads, e.g. `docker pull registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. + ** Running IvorySQL ``` $ docker run --name ivorysql -p 5434:5432 -e IVORYSQL_PASSWORD=your_password -d ivorysql/ivorysql:5.0-ubi8 diff --git a/EN/modules/ROOT/pages/master/installation_guide.adoc b/EN/modules/ROOT/pages/master/installation_guide.adoc index fbb13539..4e9930cd 100644 --- a/EN/modules/ROOT/pages/master/installation_guide.adoc +++ b/EN/modules/ROOT/pages/master/installation_guide.adoc @@ -44,6 +44,8 @@ $ sudo dnf install -y ivorysql5-5.0 $ docker pull ivorysql/ivorysql:5.0-ubi8 ``` +TIP: Users in China can also pull from the IvorySQL community Harbor registry (https://registry.highgo.com/[https://registry.highgo.com/]) for faster downloads — replace the image reference above with `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. + ** Run IvorySQL ``` $ docker run --name ivorysql -p 5434:5432 -e IVORYSQL_PASSWORD=your_password -d ivorysql/ivorysql:5.0-ubi8 From 32dd95c908efa1e7784fc656b6f7fa166c9c6457 Mon Sep 17 00:00:00 2001 From: JiaoShuntian Date: Mon, 11 May 2026 08:52:23 +0000 Subject: [PATCH 2/2] docs: remove inline Harbor registry URL from TIP notes Drop the parenthesized https://registry.highgo.com/ link from the Harbor mirror TIPs to clean up rendering. The registry domain is still visible in the example image references, so users can derive the URL from there. --- .../master/cloud_platform/ivorysql_cloud_installation.adoc | 2 +- .../pages/master/containerization/docker_podman_deployment.adoc | 2 +- CN/modules/ROOT/pages/master/getting-started/quick_start.adoc | 2 +- CN/modules/ROOT/pages/master/installation_guide.adoc | 2 +- .../master/cloud_platform/ivorysql_cloud_installation.adoc | 2 +- .../pages/master/containerization/docker_podman_deployment.adoc | 2 +- EN/modules/ROOT/pages/master/getting-started/quick_start.adoc | 2 +- EN/modules/ROOT/pages/master/installation_guide.adoc | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc b/CN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc index b748b5c5..8ea02e3e 100644 --- a/CN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc +++ b/CN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc @@ -364,7 +364,7 @@ https://github.com/IvorySQL/ivory-operator/tree/IVYO_REL_5_STABLE[https://github 如果服务器可以直接访问到docker hub,可以跳过该章节。否则需要在所有的K8S集群节点提前load 如下docker镜像 -TIP: 国内用户可使用 IvorySQL 社区的 Harbor 镜像服务(https://registry.highgo.com/[https://registry.highgo.com/])拉取以下镜像,将 `docker.io/` 替换为 `registry.highgo.com/` 即可。 +TIP: 国内用户也可使用 IvorySQL 社区的 Harbor 镜像服务拉取以下镜像,将 `docker.io/` 替换为 `registry.highgo.com/` 即可。 [literal] ---- diff --git a/CN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc b/CN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc index 72a0383d..57d618f5 100644 --- a/CN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc +++ b/CN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc @@ -6,7 +6,7 @@ [TIP] ==== -除 Docker Hub 外,IvorySQL 社区还为国内用户提供 Harbor 镜像服务:https://registry.highgo.com/[https://registry.highgo.com/]。将本章节中的镜像地址前缀替换为 `registry.highgo.com/` 即可使用,例如 `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`。 +除 Docker Hub 外,IvorySQL 社区还为国内用户提供 Harbor 镜像服务。将本章节中的镜像地址前缀替换为 `registry.highgo.com/` 即可使用,例如 `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`。 ==== == docker方式运行 diff --git a/CN/modules/ROOT/pages/master/getting-started/quick_start.adoc b/CN/modules/ROOT/pages/master/getting-started/quick_start.adoc index 15ee2711..e1a2b309 100644 --- a/CN/modules/ROOT/pages/master/getting-started/quick_start.adoc +++ b/CN/modules/ROOT/pages/master/getting-started/quick_start.adoc @@ -116,7 +116,7 @@ ivorysql 3238 1551 0 20:35 pts/0 00:00:00 grep --color=auto postgres $ docker pull ivorysql/ivorysql:5.0-ubi8 ``` -TIP: 国内用户可使用 IvorySQL 社区的 Harbor 镜像服务(https://registry.highgo.com/[https://registry.highgo.com/])加速拉取,例如:`docker pull registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`。 +TIP: 国内用户也可使用 IvorySQL 社区的 Harbor 镜像服务加速拉取,例如:`docker pull registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`。 ** 运行IvorySQL ``` diff --git a/CN/modules/ROOT/pages/master/installation_guide.adoc b/CN/modules/ROOT/pages/master/installation_guide.adoc index 47a3c4eb..6c8fc004 100644 --- a/CN/modules/ROOT/pages/master/installation_guide.adoc +++ b/CN/modules/ROOT/pages/master/installation_guide.adoc @@ -43,7 +43,7 @@ $ sudo dnf install -y ivorysql5-5.0 $ docker pull ivorysql/ivorysql:5.0-ubi8 ``` -TIP: 国内用户也可使用 IvorySQL 社区的 Harbor 镜像服务(https://registry.highgo.com/[https://registry.highgo.com/])加速拉取,将上述地址替换为 `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8` 即可。 +TIP: 国内用户也可使用 IvorySQL 社区的 Harbor 镜像服务加速拉取,将上述地址替换为 `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8` 即可。 ** 运行IvorySQL ``` diff --git a/EN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc b/EN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc index 3dbb3b77..68ef2e78 100644 --- a/EN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc +++ b/EN/modules/ROOT/pages/master/cloud_platform/ivorysql_cloud_installation.adoc @@ -363,7 +363,7 @@ https://github.com/IvorySQL/ivory-operator/tree/IVYO_REL_5_STABLE[https://github If your servers have direct access to Docker Hub, you can skip this step. Otherwise, preload the following images on every node in the Kubernetes cluster. -TIP: Users in China can pull the following images from the IvorySQL community Harbor registry (https://registry.highgo.com/[https://registry.highgo.com/]) by replacing the `docker.io/` prefix with `registry.highgo.com/`. +TIP: Users in China can pull the following images from the IvorySQL community Harbor registry by replacing the `docker.io/` prefix with `registry.highgo.com/`. [literal] ---- diff --git a/EN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc b/EN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc index 21df2e72..8ebda8fe 100644 --- a/EN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc +++ b/EN/modules/ROOT/pages/master/containerization/docker_podman_deployment.adoc @@ -6,7 +6,7 @@ [TIP] ==== -In addition to Docker Hub, the IvorySQL community also provides a Harbor registry for users in China: https://registry.highgo.com/[https://registry.highgo.com/]. Replace the image prefix used in this chapter with `registry.highgo.com/`, e.g. `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. +In addition to Docker Hub, the IvorySQL community also provides a Harbor registry for users in China. Replace the image prefix used in this chapter with `registry.highgo.com/`, e.g. `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. ==== == Running IvorySQL in docker diff --git a/EN/modules/ROOT/pages/master/getting-started/quick_start.adoc b/EN/modules/ROOT/pages/master/getting-started/quick_start.adoc index cad9690b..478c19d0 100644 --- a/EN/modules/ROOT/pages/master/getting-started/quick_start.adoc +++ b/EN/modules/ROOT/pages/master/getting-started/quick_start.adoc @@ -111,7 +111,7 @@ ivorysql 3238 1551 0 20:35 pts/0 00:00:00 grep --color=auto postgres $ docker pull ivorysql/ivorysql:5.0-ubi8 ``` -TIP: Users in China can also pull from the IvorySQL community Harbor registry (https://registry.highgo.com/[https://registry.highgo.com/]) for faster downloads, e.g. `docker pull registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. +TIP: Users in China can also pull from the IvorySQL community Harbor registry for faster downloads, e.g. `docker pull registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. ** Running IvorySQL ``` diff --git a/EN/modules/ROOT/pages/master/installation_guide.adoc b/EN/modules/ROOT/pages/master/installation_guide.adoc index 4e9930cd..e511ae66 100644 --- a/EN/modules/ROOT/pages/master/installation_guide.adoc +++ b/EN/modules/ROOT/pages/master/installation_guide.adoc @@ -44,7 +44,7 @@ $ sudo dnf install -y ivorysql5-5.0 $ docker pull ivorysql/ivorysql:5.0-ubi8 ``` -TIP: Users in China can also pull from the IvorySQL community Harbor registry (https://registry.highgo.com/[https://registry.highgo.com/]) for faster downloads — replace the image reference above with `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. +TIP: Users in China can also pull from the IvorySQL community Harbor registry for faster downloads — replace the image reference above with `registry.highgo.com/ivorysql/ivorysql:5.0-ubi8`. ** Run IvorySQL ```