mirror of https://github.com/status-im/consul.git
Small improvements to Connect docs (#6910)
* docs/connect add link to intentions and minor phrasing change * docs/connect pluralize 'applications' * Update website/source/docs/connect/connect-internals.html.md Co-Authored-By: Paul Banks <banks@banksco.de>
This commit is contained in:
parent
015c6e81e9
commit
8be67b777a
|
@ -36,7 +36,7 @@ The destination service verifies the client certificate
|
||||||
against the [public CA bundle](/api/connect/ca.html#list-ca-root-certificates).
|
against the [public CA bundle](/api/connect/ca.html#list-ca-root-certificates).
|
||||||
After verifying the certificate, it must also call the
|
After verifying the certificate, it must also call the
|
||||||
[authorization API](/api/agent/connect.html#authorize) to authorize
|
[authorization API](/api/agent/connect.html#authorize) to authorize
|
||||||
the connection against the configured set of Consul intentions.
|
the connection against the configured set of Consul [intentions](/docs/connect/intentions.html).
|
||||||
If the authorization API responds successfully, the connection is established.
|
If the authorization API responds successfully, the connection is established.
|
||||||
Otherwise, the connection is rejected.
|
Otherwise, the connection is rejected.
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ also ships with built-in support for [Vault](/docs/connect/ca/vault.html). The P
|
||||||
and can be extended to support any system by adding additional CA providers.
|
and can be extended to support any system by adding additional CA providers.
|
||||||
|
|
||||||
All APIs required for Connect typically respond in microseconds and impose
|
All APIs required for Connect typically respond in microseconds and impose
|
||||||
minimal overhead to existing services. This is because the Connect-related APIs
|
minimal overhead to existing services. To ensure this, Connect-related API calls
|
||||||
are all made to the local Consul agent over a loopback interface, and all [agent
|
are all made to the local Consul agent over a loopback interface, and all [agent
|
||||||
Connect endpoints](/api/agent/connect.html) implement local caching, background
|
Connect endpoints](/api/agent/connect.html) implement local caching, background
|
||||||
updating, and support blocking queries. Most API calls operate on purely local
|
updating, and support blocking queries. Most API calls operate on purely local
|
||||||
|
|
|
@ -41,7 +41,7 @@ programming languages and frameworks. When you configure Consul Connect to use
|
||||||
sidecar proxies, those proxies "see" all service-to-service traffic and can
|
sidecar proxies, those proxies "see" all service-to-service traffic and can
|
||||||
collect data about it. Consul Connect can configure Envoy proxies to collect
|
collect data about it. Consul Connect can configure Envoy proxies to collect
|
||||||
layer 7 metrics and export them to tools like Prometheus. Correctly instrumented
|
layer 7 metrics and export them to tools like Prometheus. Correctly instrumented
|
||||||
application can also send open tracing data through Envoy.
|
applications can also send open tracing data through Envoy.
|
||||||
|
|
||||||
## Getting Started With Connect
|
## Getting Started With Connect
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue