This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new a0366f4b766 Change dubboteam to apache/dubbo-demo (#1435)
a0366f4b766 is described below

commit a0366f4b766820ae4ec13173dd5f30abc238773f
Author: Albumen Kevin <[email protected]>
AuthorDate: Mon Aug 29 16:49:32 2022 +0800

    Change dubboteam to apache/dubbo-demo (#1435)
---
 content/zh/overview/tasks/kubernetes/deploy-on-k8s.md | 8 ++++----
 content/zh/overview/tasks/mesh/dubbo-mesh.md          | 4 ++--
 content/zh/overview/tasks/mesh/proxyless.md           | 4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/content/zh/overview/tasks/kubernetes/deploy-on-k8s.md 
b/content/zh/overview/tasks/kubernetes/deploy-on-k8s.md
index dd0e8507b9d..d0e07e00c56 100644
--- a/content/zh/overview/tasks/kubernetes/deploy-on-k8s.md
+++ b/content/zh/overview/tasks/kubernetes/deploy-on-k8s.md
@@ -21,7 +21,7 @@ description: "该示例演示了直接以 API-SERVER 为注册中心,将 Dubbo
 
 1. 创建一个 Dubbo
    应用( 
[dubbo-samples-kubernetes](https://github.com/apache/dubbo-samples/tree/master/dubbo-samples-kubernetes)
 )
-2. 构建容器镜像并推送到镜像仓库( [dubboteam 示例例镜像](https://hub.docker.com/u/dubboteam) )
+2. 构建容器镜像并推送到镜像仓库( [dubbo-demo 
示例例镜像](https://hub.docker.com/r/apache/dubbo-demo) )
 3. 分别部署 Dubbo Provider 与 Dubbo Consumer 到 Kubernetes
 4. 验证服务发现与调用正常
 
@@ -142,7 +142,7 @@ dubbo.provider.token=true
 mvn compile jib:build
 ```
 
-> Jib 插件会自动打包并发布镜像。注意,本地开发需将 jib 插件配置中的 docker registry 组织 dubboteam 
改为自己有权限的组织(包括其他 kubernetes manifests 中的 dubboteam 也要修改,以确保 kubernetes 
部署的是自己定制后的镜像),如遇到 jib 
插件认证问题,请参考[相应链接](https://github.com/GoogleContainerTools/jib/blob/master/docs/faq.md#what-should-i-do-when-the-registry-responds-with-unauthorized)配置
 docker registry 认证信息。
+> Jib 插件会自动打包并发布镜像。注意,本地开发需将 jib 插件配置中的 docker registry 组织 apache/dubbo-demo 
改为自己有权限的组织(包括其他 kubernetes manifests 中的 dubboteam 也要修改,以确保 kubernetes 
部署的是自己定制后的镜像),如遇到 jib 
插件认证问题,请参考[相应链接](https://github.com/GoogleContainerTools/jib/blob/master/docs/faq.md#what-should-i-do-when-the-registry-responds-with-unauthorized)配置
 docker registry 认证信息。
 > 可以通过直接在命令行指定 `mvn compile jib:build -Djib.to.auth.username=x 
 > -Djib.to.auth.password=x -Djib.from.auth.username=x 
 > -Djib.from.auth.username=x`,或者使用 docker-credential-helper.
 
 ## 4 最佳实践
@@ -235,7 +235,7 @@ spec:
       serviceAccountName: dubbo-sa
       containers:
         - name: server
-          image: dubboteam/dubbo-samples-apiserver-provider
+          image: apache/dubbo-deemo:dubbo-samples-apiserver-provider_0.0.1
           ports:
             - containerPort: 20880
           livenessProbe:
@@ -297,7 +297,7 @@ spec:
       serviceAccountName: dubbo-sa
       containers:
         - name: server
-          image: dubboteam/dubbo-samples-apiserver-consumer
+          image: apache/dubbo-demo:dubbo-samples-apiserver-consumer_0.0.1
           ports:
             - containerPort: 20880
           livenessProbe:
diff --git a/content/zh/overview/tasks/mesh/dubbo-mesh.md 
b/content/zh/overview/tasks/mesh/dubbo-mesh.md
index 358fcc8a80d..8c8486bd07f 100644
--- a/content/zh/overview/tasks/mesh/dubbo-mesh.md
+++ b/content/zh/overview/tasks/mesh/dubbo-mesh.md
@@ -22,7 +22,7 @@ description: "本示例演示了如何使用 Istio+Envoy 的 Service Mesh 部署
 完成示例将需要的步骤如下:
 
 1. 创建一个 Dubbo 应用( 
[dubbo-samples-mesh-k8s](https://github.com/apache/dubbo-samples/tree/master/dubbo-samples-mesh-k8s)
 )
-2. 构建容器镜像并推送到镜像仓库( [本示例官方镜像](https://hub.docker.com/u/dubboteam) )
+2. 构建容器镜像并推送到镜像仓库( [本示例官方镜像](https://hub.docker.com/r/apache/dubbo-demo) )
 3. 分别部署 Dubbo Provider 与 Dubbo Consumer 到 Kubernetes 并验证 Envoy 代理注入成功
 4. 验证 Envoy 发现服务地址、正常拦截 RPC 流量并实现负载均衡
 5. 基于 Istio VirtualService 实现按比例流量转发
@@ -256,7 +256,7 @@ dubbo.consumer.meshEnable=true
 mvn compile jib:build
 ```
 
-> Jib 插件会自动打包并发布镜像。注意,本地开发需将 jib 插件配置中的 docker registry 组织 dubboteam 
改为自己有权限的组织(包括其他 kubernetes manifests 中的 dubboteam 也要修改,以确保 kubernetes 
部署的是自己定制后的镜像),如遇到 jib 
插件认证问题,请参考[相应链接](https://github.com/GoogleContainerTools/jib/blob/master/docs/faq.md#what-should-i-do-when-the-registry-responds-with-unauthorized)配置
 docker registry 认证信息。
+> Jib 插件会自动打包并发布镜像。注意,本地开发需将 jib 插件配置中的 docker registry 组织 apache/dubbo-demo 
改为自己有权限的组织(包括其他 kubernetes manifests 中的 dubboteam 也要修改,以确保 kubernetes 
部署的是自己定制后的镜像),如遇到 jib 
插件认证问题,请参考[相应链接](https://github.com/GoogleContainerTools/jib/blob/master/docs/faq.md#what-should-i-do-when-the-registry-responds-with-unauthorized)配置
 docker registry 认证信息。
 > 可以通过直接在命令行指定 `mvn compile jib:build -Djib.to.auth.username=x 
 > -Djib.to.auth.password=x -Djib.from.auth.username=x 
 > -Djib.from.auth.username=x`,或者使用 docker-credential-helper.
 
 ## 5 常用命令
diff --git a/content/zh/overview/tasks/mesh/proxyless.md 
b/content/zh/overview/tasks/mesh/proxyless.md
index c254d665dfd..1e68524930b 100644
--- a/content/zh/overview/tasks/mesh/proxyless.md
+++ b/content/zh/overview/tasks/mesh/proxyless.md
@@ -131,10 +131,10 @@ mvn clean package -DskipTests
 ```bash
 cd ./dubbo-samples-xds-provider/
 # dubbo-samples-xds/dubbo-samples-xds-provider/Dockerfile
-docker build -t dubboteam/dubbo-samples-xds-provider:1.0.0 .
+docker build -t apache/dubbo-demo:dubbo-samples-xds-provider_0.0.1 .
 cd ../dubbo-samples-xds-consumer/
 # dubbo-samples-xds/dubbo-samples-xds-consumer/Dockerfile
-docker build -t dubboteam/dubbo-samples-xds-consumer:1.0.0 .
+docker build -t apache/dubbo-demo:dubbo-samples-xds-consumer_0.0.1 .
 cd ../
 ```
 

Reply via email to