From 7763c2e7cd1e1deeb152545ba8d9af1bf8a147dd Mon Sep 17 00:00:00 2001 From: Matt Klein Date: Thu, 8 Feb 2018 13:11:52 -0800 Subject: [PATCH] docs: misc fixes (#474) Signed-off-by: Matt Klein --- docs/root/intro/arch_overview/ssl.rst | 3 +-- envoy/api/v2/cds.proto | 6 ++++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/root/intro/arch_overview/ssl.rst b/docs/root/intro/arch_overview/ssl.rst index e8ad6483..cf0ede9b 100644 --- a/docs/root/intro/arch_overview/ssl.rst +++ b/docs/root/intro/arch_overview/ssl.rst @@ -18,8 +18,7 @@ requirements (TLS1.2, SNI, etc.). Envoy supports the following TLS features: (CRL) if one is :ref:`provided `. * **ALPN**: TLS listeners support ALPN. The HTTP connection manager uses this information (in addition to protocol inference) to determine whether a client is speaking HTTP/1.1 or HTTP/2. -* **SNI**: SNI is currently supported for client connections. Listener support is likely to be added - in the future. +* **SNI**: SNI is supported for both server (listener) and client (upstream) connections. * **Session resumption**: Server connections support resuming previous sessions via TLS session tickets (see `RFC 5077 `_). Resumption can be performed across hot restarts and between parallel Envoy instances (typically useful in a front proxy diff --git a/envoy/api/v2/cds.proto b/envoy/api/v2/cds.proto index f63cb1fb..6bbee7d3 100644 --- a/envoy/api/v2/cds.proto +++ b/envoy/api/v2/cds.proto @@ -320,6 +320,7 @@ message Cluster { // be allocated a single virtual node. google.protobuf.UInt64Value minimum_ring_size = 1; + // [#not-implemented-hide:] Hide from docs. message DeprecatedV1 { // Defaults to true, meaning that std::hash is used to hash hosts onto // the ketama ring. std::hash can vary by platform. For this reason, @@ -329,7 +330,9 @@ message Cluster { // to use `xxHash `_ now. google.protobuf.BoolValue use_std_hash = 1; } + // Deprecated settings from v1 config. + // [#not-implemented-hide:] Hide from docs. DeprecatedV1 deprecated_v1 = 2 [deprecated = true]; } @@ -349,6 +352,9 @@ message Cluster { message CommonLbConfig { // Configures the :ref:`healthy panic threshold `. // If not specified, the default is 50%. + // + // .. note:: + // The specified percent will be truncated to the nearest 1%. core.Percent healthy_panic_threshold = 1; }