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:
Ignasi Barrera 2020-01-06 20:17:29 +01:00 committed by Istio Automation
parent 30b3ad86c0
commit 055691f64a
1 changed files with 5 additions and 2 deletions

View File

@ -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.