Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions kubernetes/customresourcedefinitions.gen.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions mesh/v1alpha1/istio.mesh.v1alpha1.pb.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 59 additions & 45 deletions mesh/v1alpha1/proxy.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions mesh/v1alpha1/proxy.proto
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,12 @@ message ProxyConfig {
// Defaults to true.
// Optional.
google.protobuf.BoolValue stats_compression = 42;

// Enables HTTP/2 extended CONNECT support on sidecar HTTP listeners.
// This allows proxies to accept WebSocket upgrades tunneled with RFC 8441.
// The setting affects generated sidecar listener HTTP connection managers; it
// does not configure upstream clusters.
google.protobuf.BoolValue enable_http2_connect = 43;
}

message RemoteService {
Expand Down
35 changes: 25 additions & 10 deletions networking/v1beta1/proxy_config.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions networking/v1beta1/proxy_config.pb.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions networking/v1beta1/proxy_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@ message ProxyConfig {

// Specifies the details of the proxy image.
ProxyImage image = 4;

// Enables HTTP/2 extended CONNECT support on sidecar HTTP listeners.
// This allows proxies to accept WebSocket upgrades tunneled with RFC 8441.
// The setting affects generated sidecar listener HTTP connection managers; it
// does not configure upstream clusters.
google.protobuf.BoolValue enable_http2_connect = 5;
}

// The following values are used to construct proxy image url.
Expand Down