mirror of https://github.com/istio/istio.io.git
Fix protocol selection Helm values (#6172)
* Fix protocol selection Helm values * Fix list style * Protocol sniffing is enabled by default in Istio 1.5
This commit is contained in:
parent
30b3ad86c0
commit
055691f64a
|
@ -48,8 +48,11 @@ spec:
|
|||
name: http-web
|
||||
{{< /text >}}
|
||||
|
||||
## Automatic protocol selection (experimental)
|
||||
## Automatic protocol selection
|
||||
|
||||
Istio can automatically detect HTTP and HTTP/2 traffic. If the protocol cannot automatically be determined, traffic will be treated as plain TCP traffic.
|
||||
|
||||
This feature is experimental and off by default. It can be turned on by providing the install option `--set values.pilot.enableProtocolSniffing=true`.
|
||||
This feature is enabled by default. It can be turned off by providing the following install options:
|
||||
|
||||
- `--set values.pilot.enableProtocolSniffingForOutbound=false` to disable protocol detection for outbound listeners whose port protocol is not specified or unsupported.
|
||||
- `--set values.pilot.enableProtocolSniffingForInbound=false` to disable protocol detection for inbound listeners whose port protocol is not specified or unsupported.
|
||||
|
|
Loading…
Reference in New Issue