Skip to content

Commit b0e0a4e

Browse files
committed
fix link
1 parent f2d561f commit b0e0a4e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/ec_vs_other_software.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ this job, because of the JRE runtime. This means higher memory footprint and lat
1616
Linkerd v2 was rewritten in Rust to get better performance. Unfortunately, just like Istio - it's Kubernetes only.
1717

1818
### Consul Connect
19-
[Consul Connect](https://www.consul.io/docs/connect/index.html) is a simple way to deploy Envoy to current
19+
[Consul Connect](https://www.consul.io/docs/connect) is a simple way to deploy Envoy to current
2020
Consul based infrastructure.
2121
The problem with Consul Connect is that versions prior to 1.6.0 had very limited traffic control capabilities.
2222
We want to have a fallback to instances from other DCs, canary deployment and other features specific to our
@@ -35,4 +35,4 @@ Control Plane implementation on. They're not a sufficient Control Plane by thems
3535
Discovery Service.
3636

3737
Envoy Control is based on Java Control Plane and integrates with Consul by default. It also adds features like
38-
Cross DC Synchronization or Permission management.
38+
Cross DC Synchronization or Permission management.

docs/features/multi_dc_support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The state is available in `LocalClusterStateChanges#latestServiceState`.
4747

4848
Then build a `RemoteServices` class providing:
4949

50-
* [AsyncControlPlaneClient](https://github.com/allegro/envoy-control/blob/master/envoy-control-runner/src/main/kotlin/pl/allegro/tech/servicemesh/envoycontrol/synchronization/AsyncRestTemplateControlPlaneClient.kt) - an HTTP client
50+
* [AsyncControlPlaneClient](https://github.com/allegro/envoy-control/blob/master/envoy-control-runner/src/main/kotlin/pl/allegro/tech/servicemesh/envoycontrol/synchronization/RestTemplateControlPlaneClient.kt) - an HTTP client
5151
* [ControlPlaneInstanceFetcher](https://github.com/allegro/envoy-control/blob/master/envoy-control-source-consul/src/main/kotlin/pl/allegro/tech/servicemesh/envoycontrol/consul/synchronization/SimpleConsulInstanceFetcher.kt) - the strategy of retrieving other Envoy Control from given cluster
5252
* `remoteClusters` - list of remote clusters
5353

docs/integrations/consul.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ first-class integration with Consul.
77

88
Popular Service Mesh solutions provide integration with Consul by polling periodically the state of all services.
99
Assuming we polled the state each second in order to minimize change propagation latency, we would have to send a request
10-
for a [list of services](https://www.consul.io/api/catalog.html#list-services) and then a
10+
for a [list of services](https://www.consul.io/api/catalog#list-services) and then a
1111
[request per each service](https://www.consul.io/api/catalog.html#list-nodes-for-service).
1212
With 1,000 services, this would generate 1,000 rps per one instance of Control Plane.
1313

0 commit comments

Comments
 (0)