You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by kv...@apache.org on 2021/02/20 09:01:49 UTC

[apisix-website] branch master updated: fix: service api image is out of date (#192)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f487330  fix: service api image is out of date (#192)
f487330 is described below

commit f487330c30b8dde2ba31b3d4113f62e113b76392
Author: kv <gx...@163.com>
AuthorDate: Sat Feb 20 17:01:42 2021 +0800

    fix: service api image is out of date (#192)
    
    * fix: service api image is out of date
    
    * fix: image addresses
---
 website/blog/2020-12-18-a-first-look-at-kubernetes-service-api.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/website/blog/2020-12-18-a-first-look-at-kubernetes-service-api.md b/website/blog/2020-12-18-a-first-look-at-kubernetes-service-api.md
index 1513b99..8daa6f5 100644
--- a/website/blog/2020-12-18-a-first-look-at-kubernetes-service-api.md
+++ b/website/blog/2020-12-18-a-first-look-at-kubernetes-service-api.md
@@ -48,7 +48,7 @@ matches:
 
 2. 增强了扩展能力,Service APIs 提出多层 API 的概念,各层独立暴露接口,方便其他自定义资源与 API 对接,做到更细粒度(API 粒度)的控制。
 
-![api-model](https://kubernetes-sigs.github.io/service-apis/images/api-model.png)
+![api-model](https://gateway-api.sigs.k8s.io/images/api-model.png)
 
 3. 面向角色 RBAC:多层 API 的实现,其中一个思想就是从使用者的角度去设计资源对象。这些资源最终会与 Kubernetes 上运行应用程序的常见角色进行映射。
 
@@ -78,7 +78,7 @@ GatewayClass, Gateway, Route
 
 3. Route 描述了通过网关的流量如何映射到服务。
 
-![schema-uml](https://kubernetes-sigs.github.io/service-apis/images/schema-uml.svg)
+![schema-uml](https://gateway-api.sigs.k8s.io/images/schema-uml.svg)
 
 另外,Kubernetes Service APIs 为了能够灵活的配置后端服务,特地定义了一个 BackendPolicy 资源对象。