From 8baf1f34ecd4895b350b9fbe2abf98b590f55257 Mon Sep 17 00:00:00 2001 From: merusso Date: Wed, 18 May 2022 20:56:57 -0500 Subject: [PATCH] Update broken Envoy links (envoyproxy.github.io) (#11321) This change updates broken Envoy links in documentation. Change: envoyproxy.github.io/envoy/ -> www.envoyproxy.io/ Updates pages under: content/*/docs/ Ignores pages under: * content/*/blog/ * archive/ --- content/en/docs/concepts/security/index.md | 2 +- content/en/docs/ops/deployment/architecture/index.md | 2 +- content/en/docs/reference/glossary/envoy.md | 2 +- content/zh/docs/concepts/security/index.md | 2 +- content/zh/docs/ops/deployment/architecture/index.md | 2 +- content/zh/docs/reference/glossary/envoy.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/content/en/docs/concepts/security/index.md b/content/en/docs/concepts/security/index.md index 55441fab6e..0ef13c5c90 100644 --- a/content/en/docs/concepts/security/index.md +++ b/content/en/docs/concepts/security/index.md @@ -173,7 +173,7 @@ affect your security posture before it is enforced. Istio tunnels service-to-service communication through the client- and server-side PEPs, which are implemented as [Envoy -proxies](https://envoyproxy.github.io/envoy/). When a workload sends a request +proxies](https://www.envoyproxy.io/). When a workload sends a request to another workload using mutual TLS authentication, the request is handled as follows: diff --git a/content/en/docs/ops/deployment/architecture/index.md b/content/en/docs/ops/deployment/architecture/index.md index ac3946f532..6026e15a45 100644 --- a/content/en/docs/ops/deployment/architecture/index.md +++ b/content/en/docs/ops/deployment/architecture/index.md @@ -34,7 +34,7 @@ The following sections provide a brief overview of each of Istio's core componen ### Envoy Istio uses an extended version of the -[Envoy](https://envoyproxy.github.io/envoy/) proxy. Envoy is a high-performance +[Envoy](https://www.envoyproxy.io/) proxy. Envoy is a high-performance proxy developed in C++ to mediate all inbound and outbound traffic for all services in the service mesh. Envoy proxies are the only Istio components that interact with data plane diff --git a/content/en/docs/reference/glossary/envoy.md b/content/en/docs/reference/glossary/envoy.md index 75d200676e..4c13d32a96 100644 --- a/content/en/docs/reference/glossary/envoy.md +++ b/content/en/docs/reference/glossary/envoy.md @@ -4,4 +4,4 @@ test: n/a --- The high-performance proxy that Istio uses to mediate inbound and outbound traffic for all [services](/docs/reference/glossary/#service) in the -[service mesh](/docs/reference/glossary/#service-mesh). [Learn more about Envoy](https://envoyproxy.github.io/envoy/). +[service mesh](/docs/reference/glossary/#service-mesh). [Learn more about Envoy](https://www.envoyproxy.io/). diff --git a/content/zh/docs/concepts/security/index.md b/content/zh/docs/concepts/security/index.md index eeddd892ad..17b20dec4f 100644 --- a/content/zh/docs/concepts/security/index.md +++ b/content/zh/docs/concepts/security/index.md @@ -114,7 +114,7 @@ Istio 提供两种类型的认证: ### 双向 TLS 认证{#mutual-TLS-authentication} -Istio 通过客户端和服务器端 PEPs 建立服务到服务的通信通道,PEPs 被实现为[Envoy 代理](https://envoyproxy.github.io/envoy/)。当一个工作负载使用双向 TLS 认证向另一个工作负载发送请求时,该请求的处理方式如下: +Istio 通过客户端和服务器端 PEPs 建立服务到服务的通信通道,PEPs 被实现为[Envoy 代理](https://www.envoyproxy.io/)。当一个工作负载使用双向 TLS 认证向另一个工作负载发送请求时,该请求的处理方式如下: 1. Istio 将出站流量从客户端重新路由到客户端的本地 sidecar Envoy。 1. 客户端 Envoy 与服务器端 Envoy 开始双向 TLS 握手。在握手期间,客户端 Envoy 还做了[安全命名](/zh/docs/concepts/security/#secure-naming)检查,以验证服务器证书中显示的服务帐户是否被授权运行目标服务。 diff --git a/content/zh/docs/ops/deployment/architecture/index.md b/content/zh/docs/ops/deployment/architecture/index.md index bf41477736..d4b5422e21 100644 --- a/content/zh/docs/ops/deployment/architecture/index.md +++ b/content/zh/docs/ops/deployment/architecture/index.md @@ -29,7 +29,7 @@ Istio 服务网格从逻辑上分为**数据平面**和**控制平面**。 ### Envoy{#envoy} -Istio 使用 [Envoy](https://envoyproxy.github.io/envoy/) 代理的扩展版本。Envoy 是用 C++ 开发的高性能代理,用于协调服务网格中所有服务的入站和出站流量。Envoy 代理是唯一与数据平面流量交互的 Istio 组件。 +Istio 使用 [Envoy](https://www.envoyproxy.io/) 代理的扩展版本。Envoy 是用 C++ 开发的高性能代理,用于协调服务网格中所有服务的入站和出站流量。Envoy 代理是唯一与数据平面流量交互的 Istio 组件。 Envoy 代理被部署为服务的 Sidecar,在逻辑上为服务增加了 Envoy 的许多内置特性,例如: diff --git a/content/zh/docs/reference/glossary/envoy.md b/content/zh/docs/reference/glossary/envoy.md index a083079a80..a96909d38e 100644 --- a/content/zh/docs/reference/glossary/envoy.md +++ b/content/zh/docs/reference/glossary/envoy.md @@ -4,4 +4,4 @@ test: n/a --- Envoy 是在 Istio 里使用的高性能代理,用于为所有[服务网格](/zh/docs/reference/glossary/#service-mesh)里的[服务](/zh/docs/reference/glossary/#service)调度进出的流量。 -[了解更多关于 Envoy](https://envoyproxy.github.io/envoy/)。 +[了解更多关于 Envoy](https://www.envoyproxy.io/)。