From 6c5602216fe54a62e1e4f19660df7d5f87943eac Mon Sep 17 00:00:00 2001 From: John Howard Date: Wed, 9 Feb 2022 05:27:46 -0800 Subject: [PATCH] Add option to set runtime flags (#2239) For https://github.com/istio/istio/issues/37202 I was originally going to use env var hacks - we already have similar for `ISTIO_META` and `XDS_HEADER`. However, envoy runtime vars take the format of `foo.bar_baz=something`. Env vars do not allow `.`, or really any special charecters other than `_`, so we cannot easily use them. Instead, seems better to have an explicit field. --- mesh/v1alpha1/istio.mesh.v1alpha1.gen.json | 7 + mesh/v1alpha1/istio.mesh.v1alpha1.pb.html | 12 + mesh/v1alpha1/proxy.pb.go | 461 +++++++++++++------- mesh/v1alpha1/proxy.proto | 4 + python/istio_api/mesh/v1alpha1/proxy_pb2.py | 106 +++-- 5 files changed, 419 insertions(+), 171 deletions(-) diff --git a/mesh/v1alpha1/istio.mesh.v1alpha1.gen.json b/mesh/v1alpha1/istio.mesh.v1alpha1.gen.json index db4d4d7c81f..558d206bb8c 100644 --- a/mesh/v1alpha1/istio.mesh.v1alpha1.gen.json +++ b/mesh/v1alpha1/istio.mesh.v1alpha1.gen.json @@ -1440,6 +1440,13 @@ "type": "string" } }, + "runtimeValues": { + "description": "Envoy [runtime configuration](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/operations/runtime) to set during bootstrapping. This enables setting experimental, unsafe, unsupported, and deprecated features that should be used with extreme caution.", + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "statusPort": { "description": "Port on which the agent should listen for administrative commands such as readiness probe. Default is set to port `15020`.", "type": "integer", diff --git a/mesh/v1alpha1/istio.mesh.v1alpha1.pb.html b/mesh/v1alpha1/istio.mesh.v1alpha1.pb.html index 91b4e453240..d8baabdf8bb 100644 --- a/mesh/v1alpha1/istio.mesh.v1alpha1.pb.html +++ b/mesh/v1alpha1/istio.mesh.v1alpha1.pb.html @@ -2846,6 +2846,18 @@

ProxyConfig

Additional environment variables for the proxy. Names starting with ISTIO_META_ will be included in the generated bootstrap and sent to the XDS server.

+ + +No + + + +runtimeValues +map<string, string> + +

Envoy runtime configuration to set during bootstrapping. +This enables setting experimental, unsafe, unsupported, and deprecated features that should be used with extreme caution.

+ No diff --git a/mesh/v1alpha1/proxy.pb.go b/mesh/v1alpha1/proxy.pb.go index 7745a717c09..45bd2d854e4 100644 --- a/mesh/v1alpha1/proxy.pb.go +++ b/mesh/v1alpha1/proxy.pb.go @@ -1243,6 +1243,9 @@ type ProxyConfig struct { // Additional environment variables for the proxy. // Names starting with `ISTIO_META_` will be included in the generated bootstrap and sent to the XDS server. ProxyMetadata map[string]string `protobuf:"bytes,24,rep,name=proxy_metadata,json=proxyMetadata,proto3" json:"proxyMetadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + // Envoy [runtime configuration](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/operations/runtime) to set during bootstrapping. + // This enables setting experimental, unsafe, unsupported, and deprecated features that should be used with extreme caution. + RuntimeValues map[string]string `protobuf:"bytes,37,rep,name=runtime_values,json=runtimeValues,proto3" json:"runtimeValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // Port on which the agent should listen for administrative commands such as readiness probe. // Default is set to port `15020`. StatusPort int32 `protobuf:"varint,26,opt,name=status_port,json=statusPort,proto3" json:"statusPort,omitempty"` @@ -1540,6 +1543,13 @@ func (m *ProxyConfig) GetProxyMetadata() map[string]string { return nil } +func (m *ProxyConfig) GetRuntimeValues() map[string]string { + if m != nil { + return m.RuntimeValues + } + return nil +} + func (m *ProxyConfig) GetStatusPort() int32 { if m != nil { return m.StatusPort @@ -1636,7 +1646,7 @@ func (m *ProxyConfig_ProxyStatsMatcher) Reset() { *m = ProxyConfig_Proxy func (m *ProxyConfig_ProxyStatsMatcher) String() string { return proto.CompactTextString(m) } func (*ProxyConfig_ProxyStatsMatcher) ProtoMessage() {} func (*ProxyConfig_ProxyStatsMatcher) Descriptor() ([]byte, []int) { - return fileDescriptor_5efecd978cf3d28d, []int{3, 1} + return fileDescriptor_5efecd978cf3d28d, []int{3, 2} } func (m *ProxyConfig_ProxyStatsMatcher) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1777,6 +1787,7 @@ func init() { proto.RegisterType((*Topology)(nil), "istio.mesh.v1alpha1.Topology") proto.RegisterType((*ProxyConfig)(nil), "istio.mesh.v1alpha1.ProxyConfig") proto.RegisterMapType((map[string]string)(nil), "istio.mesh.v1alpha1.ProxyConfig.ProxyMetadataEntry") + proto.RegisterMapType((map[string]string)(nil), "istio.mesh.v1alpha1.ProxyConfig.RuntimeValuesEntry") proto.RegisterType((*ProxyConfig_ProxyStatsMatcher)(nil), "istio.mesh.v1alpha1.ProxyConfig.ProxyStatsMatcher") proto.RegisterType((*RemoteService)(nil), "istio.mesh.v1alpha1.RemoteService") } @@ -1784,151 +1795,153 @@ func init() { func init() { proto.RegisterFile("mesh/v1alpha1/proxy.proto", fileDescriptor_5efecd978cf3d28d) } var fileDescriptor_5efecd978cf3d28d = []byte{ - // 2295 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0xdd, 0x52, 0x1b, 0xc9, - 0x15, 0x46, 0xe2, 0x57, 0x07, 0x10, 0xa2, 0x01, 0x33, 0x96, 0xff, 0x58, 0xd9, 0xbb, 0x85, 0x9d, - 0x5d, 0x51, 0x6b, 0x52, 0x2e, 0x67, 0x2b, 0x4e, 0x59, 0x48, 0x22, 0x92, 0x23, 0x84, 0x6a, 0x24, - 0xec, 0x5d, 0xf6, 0xa2, 0xab, 0x35, 0xd3, 0x92, 0x26, 0xcc, 0x4c, 0x4f, 0x7a, 0x7a, 0x00, 0xed, - 0x13, 0xe4, 0x29, 0x72, 0x97, 0xdb, 0x3c, 0x41, 0x1e, 0x20, 0x97, 0x79, 0x83, 0xa4, 0x7c, 0x93, - 0xa4, 0xf2, 0x12, 0xa9, 0xee, 0x9e, 0x11, 0x12, 0x60, 0xe1, 0x24, 0x77, 0x9a, 0x73, 0xbe, 0xef, - 0x9b, 0xee, 0x33, 0xe7, 0x9c, 0x3e, 0x2d, 0xb8, 0xef, 0xd1, 0x70, 0xb0, 0x77, 0xfe, 0x2d, 0x71, - 0x83, 0x01, 0xf9, 0x76, 0x2f, 0xe0, 0xec, 0x72, 0x58, 0x0c, 0x38, 0x13, 0x0c, 0x6d, 0x38, 0xa1, - 0x70, 0x58, 0x51, 0x02, 0x8a, 0x09, 0x20, 0xff, 0xb8, 0xcf, 0x58, 0xdf, 0xa5, 0x7b, 0x0a, 0xd2, - 0x8d, 0x7a, 0x7b, 0x76, 0xc4, 0x89, 0x70, 0x98, 0xaf, 0x49, 0x37, 0xfd, 0x17, 0x9c, 0x04, 0x01, - 0xe5, 0x61, 0xec, 0x7f, 0xe1, 0x53, 0x71, 0xc1, 0xf8, 0x99, 0xe3, 0xf7, 0x93, 0xb7, 0xee, 0xef, - 0xd9, 0x34, 0x14, 0x8e, 0xaf, 0x64, 0x30, 0x8f, 0x5c, 0x1a, 0x63, 0x77, 0x6f, 0xc3, 0x4a, 0x83, - 0xcb, 0x88, 0x8d, 0xfb, 0x9c, 0x45, 0x41, 0x8c, 0xfc, 0x72, 0x02, 0xd9, 0xa5, 0x22, 0xd9, 0x0a, - 0xb6, 0x98, 0xdf, 0x73, 0xfa, 0x1a, 0x56, 0xf8, 0x63, 0x16, 0x16, 0x3b, 0x9c, 0x58, 0x8e, 0xdf, - 0x47, 0x6f, 0x60, 0xe1, 0x27, 0x27, 0x38, 0x73, 0x7c, 0x23, 0xb5, 0x93, 0xda, 0x5d, 0x7e, 0xf9, - 0xb4, 0x78, 0xcb, 0x76, 0x8b, 0x31, 0xba, 0x78, 0xaa, 0xa0, 0xb5, 0x19, 0x33, 0x26, 0xa1, 0x43, - 0xc8, 0xb8, 0x4e, 0x7f, 0x20, 0x42, 0x41, 0x03, 0x23, 0xad, 0x14, 0xbe, 0x9a, 0xaa, 0xd0, 0x48, - 0xd0, 0xb5, 0x19, 0xf3, 0x8a, 0x8a, 0xde, 0xc2, 0xa2, 0x4d, 0x04, 0xb1, 0x59, 0xdf, 0x98, 0x55, - 0x2a, 0xcf, 0xa6, 0xaa, 0x54, 0x34, 0xb6, 0x36, 0x63, 0x26, 0x34, 0xd4, 0x80, 0xe5, 0x50, 0x10, - 0xeb, 0xcc, 0xe6, 0xce, 0x39, 0xe5, 0xc6, 0x9c, 0x52, 0xd9, 0x9d, 0xaa, 0xd2, 0xbe, 0xc2, 0xd7, - 0x66, 0xcc, 0x71, 0x3a, 0x3a, 0x85, 0x75, 0x16, 0x50, 0x1f, 0x5b, 0xd4, 0x0f, 0xa3, 0x10, 0x93, - 0x3e, 0xf5, 0x85, 0x91, 0x51, 0x9a, 0x5f, 0x4f, 0xd5, 0x3c, 0x0e, 0xa8, 0x5f, 0x56, 0xa4, 0x92, - 0xe4, 0xd4, 0x66, 0xcc, 0x35, 0x36, 0x69, 0x42, 0x47, 0xb0, 0x6c, 0x45, 0xa1, 0x60, 0x1e, 0x16, - 0xa4, 0x1f, 0x1a, 0xf3, 0x3b, 0xb3, 0x77, 0xaa, 0x96, 0x15, 0xbe, 0x43, 0xfa, 0x61, 0xd5, 0x17, - 0x7c, 0x68, 0x82, 0x35, 0x32, 0xa0, 0x6f, 0x60, 0xc3, 0x23, 0x97, 0x38, 0x20, 0x62, 0x20, 0x05, - 0xb1, 0x4b, 0xfd, 0xbe, 0x18, 0x18, 0x0b, 0x3b, 0xa9, 0xdd, 0x55, 0x33, 0xe7, 0x91, 0xcb, 0x16, - 0x11, 0x83, 0x0e, 0xe9, 0x37, 0x94, 0x1d, 0xe5, 0x61, 0x29, 0x24, 0x5e, 0xe0, 0x3a, 0x7e, 0xdf, - 0x58, 0xdc, 0x49, 0xed, 0xa6, 0xcc, 0xd1, 0x33, 0x3a, 0x86, 0x15, 0xe1, 0x86, 0x38, 0xa4, 0x42, - 0x38, 0x7e, 0x3f, 0x34, 0x96, 0x26, 0x36, 0x7c, 0x95, 0x5c, 0xc9, 0x02, 0xf7, 0x8b, 0x65, 0xd7, - 0xa1, 0xbe, 0xe8, 0x34, 0xda, 0xed, 0x98, 0x63, 0x2e, 0x0b, 0x37, 0x4c, 0x1e, 0xf2, 0x05, 0x58, - 0xd0, 0x29, 0x83, 0x0c, 0x58, 0x24, 0xb6, 0xcd, 0x69, 0x18, 0xaa, 0x44, 0xcb, 0x98, 0xc9, 0x63, - 0xbe, 0x06, 0x99, 0x51, 0x52, 0x7c, 0x1a, 0x86, 0xbe, 0x80, 0x15, 0x62, 0x59, 0x34, 0x0c, 0xb1, - 0x60, 0x67, 0xd4, 0x57, 0xc9, 0x96, 0x31, 0x97, 0xb5, 0xad, 0x23, 0x4d, 0xf9, 0xa7, 0xb0, 0x18, - 0x27, 0xc6, 0x94, 0xd7, 0xfd, 0x29, 0x0d, 0xcb, 0x63, 0x1f, 0x1e, 0x6d, 0xc2, 0xbc, 0x4d, 0xbb, - 0x51, 0x5f, 0xe1, 0x96, 0x4c, 0xfd, 0x80, 0x3a, 0x60, 0xc8, 0xa0, 0xfa, 0x91, 0xd7, 0xa5, 0x1c, - 0xb3, 0x1e, 0x26, 0x42, 0x70, 0xa7, 0x1b, 0x09, 0x1a, 0xc6, 0x69, 0xfe, 0xa0, 0xa8, 0x4b, 0xbc, - 0x98, 0x94, 0x78, 0xb1, 0xee, 0x8b, 0x57, 0x3f, 0x7f, 0x4f, 0xdc, 0x88, 0x9a, 0x5b, 0x1e, 0xb9, - 0x6c, 0x2a, 0xee, 0x71, 0xaf, 0x34, 0x62, 0xa2, 0xf7, 0x70, 0xff, 0x9a, 0xaa, 0xef, 0x33, 0xa1, - 0x0a, 0x3e, 0x8c, 0xf3, 0x7e, 0xaa, 0xec, 0xbd, 0x71, 0xd9, 0x2b, 0x2a, 0xfa, 0x11, 0x1e, 0x4e, - 0xea, 0x7a, 0x34, 0x0c, 0x49, 0x9f, 0x62, 0x7a, 0x4e, 0x7d, 0x11, 0xc6, 0xc5, 0x30, 0x55, 0xda, - 0x18, 0x93, 0x3e, 0xd2, 0xec, 0xaa, 0x22, 0xe7, 0xff, 0x91, 0x82, 0xb5, 0x6b, 0x59, 0x3d, 0xe5, - 0x33, 0xb5, 0x61, 0xd1, 0x62, 0xbe, 0xa0, 0x97, 0xc2, 0x48, 0xef, 0xcc, 0xee, 0x66, 0x5f, 0xfe, - 0xe2, 0xbf, 0x29, 0x17, 0x65, 0xa7, 0x65, 0x2d, 0x60, 0x26, 0x4a, 0x05, 0x0a, 0x2b, 0xe3, 0x0e, - 0xb4, 0x06, 0xcb, 0x27, 0xcd, 0x76, 0xab, 0x5a, 0xae, 0x1f, 0xd6, 0xab, 0x95, 0xdc, 0x0c, 0xda, - 0x82, 0xf5, 0x0f, 0xfb, 0x65, 0xdc, 0x31, 0x4b, 0xe5, 0x2a, 0x2e, 0x1f, 0x37, 0x3b, 0xd5, 0xef, - 0x3b, 0xb9, 0x14, 0x5a, 0x81, 0xa5, 0x5f, 0x9b, 0xad, 0x32, 0x3e, 0xa8, 0x37, 0x73, 0x69, 0xb4, - 0x0d, 0x1b, 0xe5, 0xc6, 0xf1, 0x49, 0xe5, 0x1a, 0x6c, 0x16, 0x2d, 0x40, 0xfa, 0x60, 0x3f, 0x37, - 0x97, 0xff, 0x57, 0x0a, 0x32, 0xa3, 0x4a, 0x93, 0x2d, 0xc9, 0x75, 0x04, 0xe5, 0xc4, 0x8d, 0x5b, - 0xe3, 0xb3, 0x3b, 0x1a, 0x9b, 0xc2, 0xca, 0x96, 0x14, 0xd3, 0x64, 0x4b, 0xa2, 0xfe, 0xb9, 0xc3, - 0x99, 0xef, 0xc9, 0xf6, 0x91, 0xfe, 0x8c, 0x96, 0x54, 0xbd, 0xc2, 0xcb, 0x96, 0x34, 0x46, 0x47, - 0x15, 0x58, 0x18, 0x50, 0x62, 0x53, 0x1e, 0x67, 0xca, 0x8b, 0xa9, 0x42, 0x26, 0xfd, 0x5d, 0x44, - 0x43, 0x51, 0x53, 0x0c, 0xd9, 0xb0, 0x35, 0xf7, 0x60, 0x01, 0xe6, 0xc4, 0x30, 0xa0, 0xf9, 0x27, - 0xb0, 0x18, 0xaf, 0x58, 0x56, 0xc0, 0xb9, 0xcc, 0x81, 0xf8, 0x53, 0xea, 0x87, 0xfc, 0x21, 0x2c, - 0x8f, 0x2d, 0x06, 0x21, 0x98, 0xf3, 0x89, 0x97, 0x60, 0xd4, 0x6f, 0xf4, 0x14, 0x56, 0x6d, 0xda, - 0x23, 0x91, 0x2b, 0xb0, 0x16, 0xd0, 0x35, 0xb9, 0x12, 0x1b, 0x55, 0x62, 0xe5, 0x6b, 0xb0, 0x3a, - 0xb1, 0x96, 0xff, 0x5d, 0x89, 0xc2, 0xda, 0xb5, 0x3e, 0x88, 0x72, 0x30, 0x7b, 0x46, 0x87, 0xb1, - 0x94, 0xfc, 0x89, 0x7e, 0x99, 0x6c, 0xe6, 0x73, 0x0e, 0xa3, 0x91, 0x5c, 0xbc, 0xe9, 0xef, 0xd2, - 0xaf, 0x53, 0x07, 0x4b, 0xb0, 0x20, 0x64, 0xb2, 0xf1, 0xc2, 0x21, 0xcc, 0xb6, 0x2b, 0x6d, 0x99, - 0xec, 0xd4, 0x27, 0x5d, 0x97, 0xda, 0x71, 0x8f, 0x48, 0x1e, 0xd1, 0x97, 0xb0, 0x76, 0xf6, 0x3a, - 0xc4, 0x21, 0xc1, 0xbf, 0xbd, 0x10, 0xaa, 0x03, 0x27, 0x0b, 0x3f, 0x7b, 0x1d, 0xb6, 0xc9, 0xbb, - 0x0b, 0x21, 0x7b, 0x6f, 0xe1, 0xcf, 0x69, 0x58, 0xea, 0xb0, 0x80, 0xb9, 0xac, 0x3f, 0x44, 0x45, - 0xd8, 0xf0, 0x23, 0x0f, 0x0b, 0x1e, 0x85, 0x82, 0xda, 0x58, 0x1e, 0xcf, 0x0e, 0xd5, 0x65, 0xb4, - 0x6a, 0xae, 0xfb, 0x91, 0xd7, 0xd1, 0x9e, 0x96, 0x76, 0xa0, 0x08, 0x1e, 0xf4, 0x18, 0xbf, 0x20, - 0xdc, 0xc6, 0x96, 0x6a, 0xb6, 0xd8, 0xa2, 0x5c, 0x60, 0x9b, 0x0a, 0xe2, 0xb8, 0xba, 0x19, 0x65, - 0x5f, 0xbe, 0xba, 0x7d, 0x9b, 0xf1, 0x3b, 0x8b, 0x87, 0x5a, 0x40, 0x37, 0xeb, 0x32, 0xe5, 0xa2, - 0xa2, 0xd9, 0xa6, 0xd1, 0xfb, 0x84, 0xa7, 0xf0, 0xfb, 0x14, 0x18, 0x9f, 0xa2, 0xa1, 0x55, 0xc8, - 0x9c, 0x34, 0x2b, 0xd5, 0xc3, 0x7a, 0x53, 0x55, 0xdf, 0x0a, 0x2c, 0xb5, 0x4b, 0xcd, 0x7a, 0xa7, - 0x7e, 0x5a, 0xcd, 0xa5, 0x50, 0x0e, 0x56, 0x0e, 0x8f, 0xcd, 0x0f, 0x25, 0xb3, 0x82, 0x8f, 0x9b, - 0x8d, 0x1f, 0x72, 0x69, 0x84, 0x20, 0x5b, 0x6a, 0xb5, 0xaa, 0xcd, 0x0a, 0x8e, 0x1d, 0xb9, 0x59, - 0x89, 0x4a, 0x38, 0xb8, 0x5d, 0xed, 0xe4, 0xe6, 0x64, 0x79, 0x96, 0x1a, 0x1f, 0x4a, 0x3f, 0xb4, - 0xf1, 0x04, 0x7d, 0xbe, 0xf0, 0xb7, 0x4d, 0x58, 0x96, 0xd1, 0x18, 0x96, 0xd5, 0x10, 0x83, 0x9e, - 0xc0, 0xb2, 0x1e, 0x67, 0x74, 0xc4, 0xf5, 0xc7, 0x07, 0x6d, 0x92, 0xf1, 0x96, 0x80, 0xae, 0xe3, - 0x13, 0x3e, 0x1c, 0xff, 0x24, 0xa0, 0x4d, 0x0a, 0xf0, 0x1c, 0xd6, 0x42, 0xca, 0xcf, 0x1d, 0x8b, - 0x62, 0xcb, 0x95, 0xd1, 0xd6, 0x35, 0x95, 0xa9, 0xcd, 0x98, 0xd9, 0xd8, 0x51, 0xd6, 0x76, 0xd4, - 0x87, 0x4d, 0xa1, 0xb3, 0x05, 0x27, 0x14, 0x95, 0xbd, 0xcf, 0x54, 0xdc, 0xf7, 0x6f, 0x8d, 0xfb, - 0xd8, 0x62, 0x93, 0x54, 0x6b, 0x6b, 0x6e, 0x93, 0x78, 0xb4, 0x36, 0x63, 0x22, 0x71, 0xc3, 0x8a, - 0xde, 0x42, 0xd6, 0xe6, 0xc4, 0xf1, 0x71, 0x32, 0x49, 0xc6, 0x5d, 0xfb, 0xfe, 0x8d, 0xae, 0x5d, - 0x89, 0x01, 0xe6, 0xaa, 0x22, 0x24, 0x8f, 0xa8, 0x0d, 0x46, 0x40, 0xb8, 0xcc, 0x90, 0x70, 0x10, - 0x09, 0x9b, 0x5d, 0x8c, 0x69, 0xcd, 0xdf, 0xa5, 0x75, 0x4f, 0x53, 0xdb, 0x31, 0x73, 0x24, 0xfa, - 0x33, 0x58, 0xb7, 0x9d, 0xd0, 0x62, 0xe7, 0x94, 0x0f, 0x71, 0xd2, 0xf3, 0x17, 0x54, 0x44, 0x73, - 0x23, 0x47, 0x29, 0x6e, 0xfe, 0x27, 0xb0, 0x7d, 0x05, 0xe6, 0xb4, 0xc7, 0x69, 0x38, 0xc0, 0x36, - 0x75, 0xc9, 0x50, 0x8d, 0x1a, 0xd3, 0x16, 0x70, 0x90, 0x36, 0x52, 0xe6, 0xd6, 0x88, 0x6d, 0x6a, - 0x72, 0x45, 0x72, 0xd1, 0x73, 0xc8, 0xea, 0x71, 0x73, 0xb4, 0x00, 0x39, 0x98, 0x64, 0x14, 0x65, - 0x55, 0x7b, 0x92, 0x15, 0x7c, 0x0d, 0x28, 0x14, 0x44, 0x84, 0x36, 0x8e, 0xec, 0x60, 0x04, 0x07, - 0xbd, 0x5e, 0xed, 0x39, 0xb1, 0x83, 0x04, 0x5d, 0x85, 0x47, 0xd4, 0x3f, 0x67, 0x43, 0xec, 0x51, - 0xc1, 0x1d, 0x2b, 0x1c, 0x7d, 0xe2, 0x84, 0xb8, 0x39, 0x7a, 0x4f, 0x5e, 0x01, 0x8f, 0x34, 0x2e, - 0xfe, 0x6e, 0x89, 0xcc, 0x2e, 0xe4, 0xf4, 0x94, 0x4d, 0x6c, 0xcf, 0xf1, 0x71, 0xc0, 0xb8, 0x30, - 0x96, 0x77, 0x52, 0xbb, 0xf3, 0x66, 0x56, 0xd9, 0x4b, 0xd2, 0xdc, 0x62, 0x5c, 0xa0, 0x3d, 0x58, - 0x27, 0xe7, 0xc4, 0x71, 0x49, 0xd7, 0x71, 0x1d, 0x31, 0xc4, 0x3f, 0x31, 0x9f, 0x1a, 0x2b, 0xa3, - 0x97, 0xe4, 0xc6, 0x9d, 0xa7, 0xcc, 0xa7, 0xc8, 0x86, 0xfb, 0xf2, 0x10, 0xe4, 0xcc, 0xc5, 0x81, - 0x4b, 0x7c, 0x8a, 0x49, 0x24, 0x06, 0x38, 0x60, 0xae, 0x63, 0x0d, 0x8d, 0x55, 0x95, 0x83, 0xcf, - 0x6f, 0xcd, 0xc1, 0x52, 0x24, 0x06, 0xd4, 0x17, 0x8e, 0xa5, 0xa2, 0xdb, 0x52, 0x04, 0xf3, 0x5e, - 0xac, 0xd5, 0x92, 0x52, 0x12, 0xa1, 0xed, 0x32, 0x6a, 0xf1, 0x44, 0x1a, 0x17, 0x56, 0xcf, 0x71, - 0xa9, 0x91, 0xd5, 0x51, 0xd3, 0x1e, 0x9d, 0xce, 0x87, 0x8e, 0x4b, 0xe5, 0x76, 0x65, 0x24, 0x55, - 0x1d, 0x24, 0xd3, 0xe6, 0x9a, 0xde, 0xae, 0xb4, 0xcb, 0x6c, 0x8e, 0x67, 0xcd, 0x37, 0xaa, 0x52, - 0xad, 0x88, 0x73, 0xea, 0x5b, 0x43, 0x23, 0xf7, 0xe9, 0x31, 0x64, 0xff, 0xa5, 0x1e, 0x43, 0xc6, - 0xf1, 0xa8, 0x04, 0x8f, 0x74, 0x5c, 0xbb, 0x8c, 0x89, 0x50, 0x70, 0x12, 0x60, 0x41, 0xbd, 0xc0, - 0x25, 0x82, 0xea, 0xca, 0x5e, 0x57, 0x2b, 0xcc, 0x2b, 0xd0, 0x41, 0x82, 0xe9, 0xc4, 0x10, 0x55, - 0xe9, 0x14, 0xd6, 0x1d, 0x5f, 0x50, 0x6e, 0xd1, 0x40, 0x5d, 0xab, 0x3c, 0x66, 0x53, 0x03, 0xa9, - 0xb8, 0xbd, 0xbe, 0xb3, 0x76, 0xeb, 0x7e, 0x97, 0x45, 0xbe, 0x5d, 0x1f, 0x13, 0x38, 0x62, 0x36, - 0x35, 0x73, 0xce, 0x35, 0x0b, 0x7a, 0x05, 0x8b, 0x71, 0x49, 0x1b, 0x1b, 0x6a, 0x93, 0x0f, 0xa7, - 0x9d, 0x3b, 0x66, 0x02, 0x46, 0x2f, 0x60, 0x36, 0xb4, 0x43, 0x63, 0x4b, 0x71, 0x8c, 0x5b, 0x39, - 0xed, 0x4a, 0xdb, 0x94, 0x20, 0xf4, 0x23, 0x18, 0x3a, 0x59, 0xe3, 0x31, 0xd8, 0x65, 0xa3, 0x96, - 0x64, 0xdc, 0x53, 0x02, 0x85, 0x5b, 0x05, 0x4c, 0xea, 0x31, 0x41, 0xe3, 0x94, 0x35, 0xb7, 0x94, - 0x46, 0x49, 0x49, 0x34, 0x58, 0xd2, 0x81, 0xd0, 0x7b, 0xd8, 0xba, 0xb5, 0x12, 0x8c, 0xed, 0xcf, - 0x56, 0xde, 0xb8, 0xa5, 0x42, 0xd0, 0x29, 0xe8, 0x12, 0x90, 0xba, 0x44, 0x5e, 0xd5, 0x0c, 0x43, - 0x5d, 0x77, 0xee, 0x6e, 0x9c, 0xea, 0xf7, 0x51, 0xcc, 0xd2, 0xb7, 0x9e, 0xd5, 0x60, 0xdc, 0x26, - 0xdb, 0xbc, 0xcc, 0xb7, 0x28, 0xd4, 0x15, 0x97, 0x57, 0x29, 0x08, 0xda, 0xa4, 0xaa, 0xed, 0x2b, - 0x58, 0xa3, 0x97, 0x82, 0x13, 0xac, 0xd2, 0x55, 0x5d, 0xb6, 0x1e, 0xec, 0xcc, 0xee, 0x66, 0xcc, - 0x55, 0x65, 0x6e, 0x0b, 0x22, 0xd4, 0x0d, 0xaa, 0x06, 0xb9, 0x3e, 0x11, 0xf4, 0x82, 0x0c, 0xb1, - 0x88, 0x8f, 0x4c, 0xe3, 0xa1, 0xda, 0xf7, 0xa3, 0xa9, 0xe7, 0xaa, 0xb9, 0x16, 0xd3, 0x46, 0x87, - 0xfb, 0x07, 0xc8, 0x0b, 0xca, 0xbd, 0xe4, 0x12, 0x7f, 0xad, 0xa1, 0x3f, 0xba, 0xab, 0x09, 0x1b, - 0x63, 0xe4, 0xca, 0x44, 0x6f, 0xdf, 0x86, 0x45, 0xb9, 0x06, 0xec, 0xd8, 0xc6, 0x63, 0x95, 0xf4, - 0x0b, 0xf2, 0xb1, 0x6e, 0x23, 0x13, 0xd6, 0x38, 0x25, 0xb6, 0xe3, 0xcb, 0x94, 0x08, 0x38, 0xeb, - 0x52, 0xe3, 0x89, 0x7a, 0xcd, 0xf3, 0x29, 0xb7, 0x36, 0x33, 0x61, 0xb4, 0x24, 0xc1, 0xcc, 0xf2, - 0x89, 0x67, 0xd4, 0x85, 0x0d, 0xfd, 0xd1, 0x54, 0xc3, 0xc4, 0x1e, 0x11, 0xd6, 0x80, 0x72, 0x63, - 0x47, 0xe9, 0xbe, 0xfc, 0xbc, 0x2f, 0x27, 0x83, 0x1b, 0x1e, 0x69, 0xa6, 0xb9, 0x1e, 0x5c, 0x37, - 0xa1, 0x01, 0x3c, 0x1d, 0x30, 0xd7, 0xc6, 0x24, 0x08, 0xdc, 0xb8, 0x49, 0xe1, 0xc8, 0x17, 0x8e, - 0x8b, 0x47, 0xaf, 0xe6, 0x22, 0x34, 0xbe, 0x50, 0xef, 0xcc, 0xdf, 0x08, 0xd9, 0x01, 0x63, 0xae, - 0xee, 0x18, 0x4f, 0xa4, 0x4c, 0xe9, 0x4a, 0xe5, 0x44, 0x8a, 0x24, 0x4b, 0xe0, 0x22, 0x94, 0x03, - 0x97, 0x45, 0xd4, 0xd0, 0xe4, 0xf4, 0x24, 0x86, 0x86, 0x38, 0xa0, 0x9e, 0x51, 0x50, 0x99, 0xb0, - 0x6e, 0x91, 0xf2, 0x98, 0xa7, 0x45, 0x3d, 0xf4, 0x1d, 0xcc, 0x3b, 0x1e, 0xe9, 0x53, 0xe3, 0xe9, - 0xc4, 0xd4, 0x3f, 0x11, 0x47, 0xf5, 0xd7, 0x8a, 0xde, 0x68, 0x5d, 0x62, 0x4d, 0x4d, 0xc9, 0xbf, - 0x05, 0x74, 0x33, 0x6f, 0x6f, 0x99, 0x52, 0x37, 0xc7, 0xa7, 0xd4, 0xcc, 0xd8, 0xf4, 0x99, 0xff, - 0x43, 0x0a, 0xd6, 0x6f, 0x04, 0x10, 0x7d, 0x03, 0xc8, 0xf1, 0xe5, 0xa8, 0x22, 0xc3, 0x14, 0x70, - 0xda, 0x73, 0x2e, 0xd5, 0xcc, 0xa8, 0xb6, 0x30, 0xf2, 0xb4, 0x62, 0xc7, 0x24, 0x3c, 0x8c, 0x7a, - 0x1a, 0x9e, 0xbe, 0x06, 0x6f, 0xc7, 0x0e, 0x79, 0xc6, 0x5f, 0xc1, 0x39, 0xed, 0xd3, 0xcb, 0x40, - 0x5e, 0x47, 0x25, 0x3a, 0x37, 0x72, 0x98, 0xda, 0x5e, 0x70, 0x01, 0xdd, 0x9c, 0x69, 0xd0, 0x03, - 0xd8, 0x2e, 0xb5, 0x5a, 0xb8, 0x51, 0x3a, 0xa8, 0x36, 0x70, 0xa9, 0x59, 0xc1, 0xcd, 0xd2, 0x51, - 0xb5, 0xdd, 0x2a, 0x95, 0xab, 0xb9, 0x19, 0x75, 0xf1, 0x2a, 0x35, 0x8f, 0x9b, 0xf5, 0x72, 0xa9, - 0xa1, 0x1c, 0x7a, 0xb2, 0x4b, 0xa1, 0x1d, 0x78, 0x78, 0xcd, 0x31, 0x49, 0x4d, 0x17, 0xde, 0xc0, - 0xf6, 0x27, 0xba, 0xb0, 0x9c, 0x3a, 0xcd, 0x6a, 0xa5, 0x6e, 0x56, 0xcb, 0x9d, 0xdc, 0x0c, 0x02, - 0x58, 0xe8, 0xb4, 0xcc, 0xe3, 0xef, 0xa5, 0xec, 0x12, 0xcc, 0x35, 0x8f, 0x9b, 0xd5, 0x5c, 0xfa, - 0x20, 0x0b, 0x2b, 0xf1, 0x80, 0xa7, 0x4e, 0xab, 0x77, 0x73, 0x4b, 0x99, 0x1c, 0x98, 0x6b, 0x16, - 0xf3, 0x7d, 0x6a, 0x09, 0x2c, 0x1c, 0x8f, 0xb2, 0x48, 0x14, 0xfe, 0x9d, 0x92, 0x97, 0x94, 0xb1, - 0x66, 0x36, 0xe5, 0x82, 0x7b, 0xfd, 0x3f, 0x92, 0xf4, 0xff, 0xf9, 0x1f, 0x09, 0x62, 0xb0, 0x2a, - 0xac, 0x00, 0x9f, 0x51, 0x1a, 0x10, 0xd7, 0x39, 0xa7, 0xf1, 0xf5, 0xee, 0xdd, 0x34, 0x45, 0xbd, - 0x7e, 0x75, 0xb0, 0x33, 0x37, 0x51, 0x2a, 0x76, 0xca, 0xad, 0xab, 0xdf, 0x56, 0xf0, 0x9b, 0x44, - 0xd1, 0x5c, 0x11, 0x63, 0x4f, 0x2f, 0x7e, 0x05, 0x9b, 0xb7, 0x4d, 0x07, 0xa3, 0xb0, 0xcd, 0xa0, - 0x2c, 0xc0, 0xd1, 0x49, 0xe7, 0xa4, 0xd4, 0xc0, 0x9d, 0x46, 0x5b, 0xdd, 0xa3, 0x17, 0xeb, 0xcd, - 0x5a, 0xd5, 0xac, 0x77, 0x72, 0xff, 0x5c, 0x3c, 0xd8, 0xfd, 0xcb, 0xc7, 0xc7, 0xa9, 0xbf, 0x7e, - 0x7c, 0x9c, 0xfa, 0xfb, 0xc7, 0xc7, 0xa9, 0xd3, 0xbc, 0x5e, 0xa6, 0xc3, 0xf6, 0x48, 0xe0, 0xec, - 0x4d, 0xfc, 0x8d, 0xda, 0x5d, 0x50, 0xf5, 0xba, 0xff, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0d, - 0xa4, 0x26, 0xa6, 0x5e, 0x15, 0x00, 0x00, + // 2329 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0xdf, 0x72, 0xdb, 0xc6, + 0xf5, 0x16, 0x29, 0x59, 0x7f, 0x8e, 0x44, 0x8a, 0x5a, 0x59, 0x36, 0x4c, 0xff, 0x53, 0xe8, 0x24, + 0x23, 0xfb, 0x97, 0x50, 0x13, 0xeb, 0x37, 0x19, 0x37, 0xd3, 0x74, 0x42, 0x91, 0x54, 0xc9, 0x94, + 0xa2, 0x38, 0x4b, 0x2a, 0x4e, 0x9c, 0x8b, 0x9d, 0x25, 0xb0, 0x24, 0x51, 0x01, 0x58, 0x74, 0xb1, + 0x90, 0xc4, 0x3c, 0x41, 0x9f, 0xa2, 0x77, 0xbd, 0xed, 0x13, 0xf4, 0x01, 0x7a, 0xd9, 0x47, 0xe8, + 0xf8, 0xa6, 0xed, 0xf4, 0x19, 0x3a, 0xd3, 0xd9, 0x5d, 0x80, 0x22, 0x25, 0x99, 0x76, 0xda, 0x3b, + 0xe2, 0x9c, 0xef, 0xfb, 0xb0, 0x38, 0x7b, 0xce, 0xd9, 0xb3, 0x84, 0x07, 0x3e, 0x8b, 0x46, 0xfb, + 0xe7, 0x5f, 0x50, 0x2f, 0x1c, 0xd1, 0x2f, 0xf6, 0x43, 0xc1, 0x2f, 0xc7, 0xe5, 0x50, 0x70, 0xc9, + 0xd1, 0xb6, 0x1b, 0x49, 0x97, 0x97, 0x15, 0xa0, 0x9c, 0x02, 0x8a, 0x4f, 0x86, 0x9c, 0x0f, 0x3d, + 0xb6, 0xaf, 0x21, 0xfd, 0x78, 0xb0, 0xef, 0xc4, 0x82, 0x4a, 0x97, 0x07, 0x86, 0x74, 0xd3, 0x7f, + 0x21, 0x68, 0x18, 0x32, 0x11, 0x25, 0xfe, 0x17, 0x01, 0x93, 0x17, 0x5c, 0x9c, 0xb9, 0xc1, 0x30, + 0x7d, 0xeb, 0xc1, 0xbe, 0xc3, 0x22, 0xe9, 0x06, 0x5a, 0x86, 0x88, 0xd8, 0x63, 0x09, 0x76, 0xef, + 0x36, 0xac, 0x32, 0x78, 0x9c, 0x3a, 0x64, 0x28, 0x78, 0x1c, 0x26, 0xc8, 0x4f, 0x66, 0x90, 0x7d, + 0x26, 0xd3, 0x4f, 0x21, 0x36, 0x0f, 0x06, 0xee, 0xd0, 0xc0, 0x4a, 0x7f, 0xcc, 0xc3, 0x4a, 0x4f, + 0x50, 0xdb, 0x0d, 0x86, 0xe8, 0x6b, 0x58, 0xfe, 0xc9, 0x0d, 0xcf, 0xdc, 0xc0, 0xca, 0xec, 0x66, + 0xf6, 0xd6, 0x5f, 0x3e, 0x2b, 0xdf, 0xf2, 0xb9, 0xe5, 0x04, 0x5d, 0x7e, 0xa3, 0xa1, 0x8d, 0x05, + 0x9c, 0x90, 0xd0, 0x11, 0xac, 0x79, 0xee, 0x70, 0x24, 0x23, 0xc9, 0x42, 0x2b, 0xab, 0x15, 0x3e, + 0x9d, 0xab, 0xd0, 0x4a, 0xd1, 0x8d, 0x05, 0x7c, 0x45, 0x45, 0xdf, 0xc0, 0x8a, 0x43, 0x25, 0x75, + 0xf8, 0xd0, 0x5a, 0xd4, 0x2a, 0x1f, 0xcf, 0x55, 0xa9, 0x19, 0x6c, 0x63, 0x01, 0xa7, 0x34, 0xd4, + 0x82, 0xf5, 0x48, 0x52, 0xfb, 0xcc, 0x11, 0xee, 0x39, 0x13, 0xd6, 0x92, 0x56, 0xd9, 0x9b, 0xab, + 0xd2, 0xbd, 0xc2, 0x37, 0x16, 0xf0, 0x34, 0x1d, 0xbd, 0x81, 0x2d, 0x1e, 0xb2, 0x80, 0xd8, 0x2c, + 0x88, 0xe2, 0x88, 0xd0, 0x21, 0x0b, 0xa4, 0xb5, 0xa6, 0x35, 0x3f, 0x9b, 0xab, 0x79, 0x12, 0xb2, + 0xa0, 0xaa, 0x49, 0x15, 0xc5, 0x69, 0x2c, 0xe0, 0x4d, 0x3e, 0x6b, 0x42, 0xc7, 0xb0, 0x6e, 0xc7, + 0x91, 0xe4, 0x3e, 0x91, 0x74, 0x18, 0x59, 0x77, 0x76, 0x17, 0xdf, 0xab, 0x5a, 0xd5, 0xf8, 0x1e, + 0x1d, 0x46, 0xf5, 0x40, 0x8a, 0x31, 0x06, 0x7b, 0x62, 0x40, 0x9f, 0xc3, 0xb6, 0x4f, 0x2f, 0x49, + 0x48, 0xe5, 0x48, 0x09, 0x12, 0x8f, 0x05, 0x43, 0x39, 0xb2, 0x96, 0x77, 0x33, 0x7b, 0x39, 0x5c, + 0xf0, 0xe9, 0x65, 0x87, 0xca, 0x51, 0x8f, 0x0e, 0x5b, 0xda, 0x8e, 0x8a, 0xb0, 0x1a, 0x51, 0x3f, + 0xf4, 0xdc, 0x60, 0x68, 0xad, 0xec, 0x66, 0xf6, 0x32, 0x78, 0xf2, 0x8c, 0x4e, 0x60, 0x43, 0x7a, + 0x11, 0x89, 0x98, 0x94, 0x6e, 0x30, 0x8c, 0xac, 0xd5, 0x99, 0x0f, 0xbe, 0x4a, 0xae, 0x74, 0x81, + 0x07, 0xe5, 0xaa, 0xe7, 0xb2, 0x40, 0xf6, 0x5a, 0xdd, 0x6e, 0xc2, 0xc1, 0xeb, 0xd2, 0x8b, 0xd2, + 0x87, 0x62, 0x09, 0x96, 0x4d, 0xca, 0x20, 0x0b, 0x56, 0xa8, 0xe3, 0x08, 0x16, 0x45, 0x3a, 0xd1, + 0xd6, 0x70, 0xfa, 0x58, 0x6c, 0xc0, 0xda, 0x24, 0x29, 0xde, 0x0d, 0x43, 0x1f, 0xc1, 0x06, 0xb5, + 0x6d, 0x16, 0x45, 0x44, 0xf2, 0x33, 0x16, 0xe8, 0x64, 0x5b, 0xc3, 0xeb, 0xc6, 0xd6, 0x53, 0xa6, + 0xe2, 0x33, 0x58, 0x49, 0x12, 0x63, 0xce, 0xeb, 0xfe, 0x94, 0x85, 0xf5, 0xa9, 0x8d, 0x47, 0x77, + 0xe1, 0x8e, 0xc3, 0xfa, 0xf1, 0x50, 0xe3, 0x56, 0xb1, 0x79, 0x40, 0x3d, 0xb0, 0x54, 0x50, 0x83, + 0xd8, 0xef, 0x33, 0x41, 0xf8, 0x80, 0x50, 0x29, 0x85, 0xdb, 0x8f, 0x25, 0x8b, 0x92, 0x34, 0x7f, + 0x58, 0x36, 0x25, 0x5e, 0x4e, 0x4b, 0xbc, 0xdc, 0x0c, 0xe4, 0x97, 0xff, 0xff, 0x1d, 0xf5, 0x62, + 0x86, 0x77, 0x7c, 0x7a, 0xd9, 0xd6, 0xdc, 0x93, 0x41, 0x65, 0xc2, 0x44, 0xdf, 0xc1, 0x83, 0x6b, + 0xaa, 0x41, 0xc0, 0xa5, 0x2e, 0xf8, 0x28, 0xc9, 0xfb, 0xb9, 0xb2, 0xf7, 0xa6, 0x65, 0xaf, 0xa8, + 0xe8, 0x47, 0x78, 0x34, 0xab, 0xeb, 0xb3, 0x28, 0xa2, 0x43, 0x46, 0xd8, 0x39, 0x0b, 0x64, 0x94, + 0x14, 0xc3, 0x5c, 0x69, 0x6b, 0x4a, 0xfa, 0xd8, 0xb0, 0xeb, 0x9a, 0x5c, 0xfc, 0x7b, 0x06, 0x36, + 0xaf, 0x65, 0xf5, 0x9c, 0x6d, 0xea, 0xc2, 0x8a, 0xcd, 0x03, 0xc9, 0x2e, 0xa5, 0x95, 0xdd, 0x5d, + 0xdc, 0xcb, 0xbf, 0xfc, 0xc5, 0xcf, 0x29, 0x17, 0x6d, 0x67, 0x55, 0x23, 0x80, 0x53, 0xa5, 0x12, + 0x83, 0x8d, 0x69, 0x07, 0xda, 0x84, 0xf5, 0xd3, 0x76, 0xb7, 0x53, 0xaf, 0x36, 0x8f, 0x9a, 0xf5, + 0x5a, 0x61, 0x01, 0xed, 0xc0, 0xd6, 0xeb, 0x83, 0x2a, 0xe9, 0xe1, 0x4a, 0xb5, 0x4e, 0xaa, 0x27, + 0xed, 0x5e, 0xfd, 0xfb, 0x5e, 0x21, 0x83, 0x36, 0x60, 0xf5, 0xd7, 0xb8, 0x53, 0x25, 0x87, 0xcd, + 0x76, 0x21, 0x8b, 0xee, 0xc3, 0x76, 0xb5, 0x75, 0x72, 0x5a, 0xbb, 0x06, 0x5b, 0x44, 0xcb, 0x90, + 0x3d, 0x3c, 0x28, 0x2c, 0x15, 0xff, 0x99, 0x81, 0xb5, 0x49, 0xa5, 0xa9, 0x96, 0xe4, 0xb9, 0x92, + 0x09, 0xea, 0x25, 0xad, 0xf1, 0xe3, 0xf7, 0x34, 0x36, 0x8d, 0x55, 0x2d, 0x29, 0xa1, 0xa9, 0x96, + 0xc4, 0x82, 0x73, 0x57, 0xf0, 0xc0, 0x57, 0xed, 0x23, 0xfb, 0x01, 0x2d, 0xa9, 0x7e, 0x85, 0x57, + 0x2d, 0x69, 0x8a, 0x8e, 0x6a, 0xb0, 0x3c, 0x62, 0xd4, 0x61, 0x22, 0xc9, 0x94, 0x17, 0x73, 0x85, + 0x30, 0xfb, 0x5d, 0xcc, 0x22, 0xd9, 0xd0, 0x0c, 0xd5, 0xb0, 0x0d, 0xf7, 0x70, 0x19, 0x96, 0xe4, + 0x38, 0x64, 0xc5, 0xa7, 0xb0, 0x92, 0xac, 0x58, 0x55, 0xc0, 0xb9, 0xca, 0x81, 0x64, 0x2b, 0xcd, + 0x43, 0xf1, 0x08, 0xd6, 0xa7, 0x16, 0x83, 0x10, 0x2c, 0x05, 0xd4, 0x4f, 0x31, 0xfa, 0x37, 0x7a, + 0x06, 0x39, 0x87, 0x0d, 0x68, 0xec, 0x49, 0x62, 0x04, 0x4c, 0x4d, 0x6e, 0x24, 0x46, 0x9d, 0x58, + 0xc5, 0x06, 0xe4, 0x66, 0xd6, 0xf2, 0xdf, 0x2b, 0x31, 0xd8, 0xbc, 0xd6, 0x07, 0x51, 0x01, 0x16, + 0xcf, 0xd8, 0x38, 0x91, 0x52, 0x3f, 0xd1, 0x2f, 0xd3, 0x8f, 0xf9, 0x90, 0xc3, 0x68, 0x22, 0x97, + 0x7c, 0xf4, 0x57, 0xd9, 0x57, 0x99, 0xc3, 0x55, 0x58, 0x96, 0x2a, 0xd9, 0x44, 0xe9, 0x08, 0x16, + 0xbb, 0xb5, 0xae, 0x4a, 0x76, 0x16, 0xd0, 0xbe, 0xc7, 0x9c, 0xa4, 0x47, 0xa4, 0x8f, 0xe8, 0x13, + 0xd8, 0x3c, 0x7b, 0x15, 0x91, 0x88, 0x92, 0xdf, 0x5e, 0x48, 0xdd, 0x81, 0xd3, 0x85, 0x9f, 0xbd, + 0x8a, 0xba, 0xf4, 0xdb, 0x0b, 0xa9, 0x7a, 0x6f, 0xe9, 0xcf, 0x59, 0x58, 0xed, 0xf1, 0x90, 0x7b, + 0x7c, 0x38, 0x46, 0x65, 0xd8, 0x0e, 0x62, 0x9f, 0x48, 0x11, 0x47, 0x92, 0x39, 0x44, 0x1d, 0xcf, + 0x2e, 0x33, 0x65, 0x94, 0xc3, 0x5b, 0x41, 0xec, 0xf7, 0x8c, 0xa7, 0x63, 0x1c, 0x28, 0x86, 0x87, + 0x03, 0x2e, 0x2e, 0xa8, 0x70, 0x88, 0xad, 0x9b, 0x2d, 0xb1, 0x99, 0x90, 0xc4, 0x61, 0x92, 0xba, + 0x9e, 0x69, 0x46, 0xf9, 0x97, 0x5f, 0xde, 0xfe, 0x99, 0xc9, 0x3b, 0xcb, 0x47, 0x46, 0xc0, 0x34, + 0xeb, 0x2a, 0x13, 0xb2, 0x66, 0xd8, 0xd8, 0x1a, 0xbc, 0xc3, 0x53, 0xfa, 0x7d, 0x06, 0xac, 0x77, + 0xd1, 0x50, 0x0e, 0xd6, 0x4e, 0xdb, 0xb5, 0xfa, 0x51, 0xb3, 0xad, 0xab, 0x6f, 0x03, 0x56, 0xbb, + 0x95, 0x76, 0xb3, 0xd7, 0x7c, 0x53, 0x2f, 0x64, 0x50, 0x01, 0x36, 0x8e, 0x4e, 0xf0, 0xeb, 0x0a, + 0xae, 0x91, 0x93, 0x76, 0xeb, 0x87, 0x42, 0x16, 0x21, 0xc8, 0x57, 0x3a, 0x9d, 0x7a, 0xbb, 0x46, + 0x12, 0x47, 0x61, 0x51, 0xa1, 0x52, 0x0e, 0xe9, 0xd6, 0x7b, 0x85, 0x25, 0x55, 0x9e, 0x95, 0xd6, + 0xeb, 0xca, 0x0f, 0x5d, 0x32, 0x43, 0xbf, 0x53, 0xfa, 0xf7, 0x0e, 0xac, 0xab, 0x68, 0x8c, 0xab, + 0x7a, 0x88, 0x41, 0x4f, 0x61, 0xdd, 0x8c, 0x33, 0x26, 0xe2, 0x66, 0xf3, 0xc1, 0x98, 0x54, 0xbc, + 0x15, 0xa0, 0xef, 0x06, 0x54, 0x8c, 0xa7, 0xb7, 0x04, 0x8c, 0x49, 0x03, 0x9e, 0xc3, 0x66, 0xc4, + 0xc4, 0xb9, 0x6b, 0x33, 0x62, 0x7b, 0x2a, 0xda, 0xa6, 0xa6, 0xd6, 0x1a, 0x0b, 0x38, 0x9f, 0x38, + 0xaa, 0xc6, 0x8e, 0x86, 0x70, 0x57, 0x9a, 0x6c, 0x21, 0x29, 0x45, 0x67, 0xef, 0xc7, 0x3a, 0xee, + 0x07, 0xb7, 0xc6, 0x7d, 0x6a, 0xb1, 0x69, 0xaa, 0x75, 0x0d, 0xb7, 0x4d, 0x7d, 0xd6, 0x58, 0xc0, + 0x48, 0xde, 0xb0, 0xa2, 0x6f, 0x20, 0xef, 0x08, 0xea, 0x06, 0x24, 0x9d, 0x24, 0x93, 0xae, 0xfd, + 0xe0, 0x46, 0xd7, 0xae, 0x25, 0x00, 0x9c, 0xd3, 0x84, 0xf4, 0x11, 0x75, 0xc1, 0x0a, 0xa9, 0x50, + 0x19, 0x12, 0x8d, 0x62, 0xe9, 0xf0, 0x8b, 0x29, 0xad, 0x3b, 0xef, 0xd3, 0xba, 0x67, 0xa8, 0xdd, + 0x84, 0x39, 0x11, 0xfd, 0x3f, 0xd8, 0x72, 0xdc, 0xc8, 0xe6, 0xe7, 0x4c, 0x8c, 0x49, 0xda, 0xf3, + 0x97, 0x75, 0x44, 0x0b, 0x13, 0x47, 0x25, 0x69, 0xfe, 0xa7, 0x70, 0xff, 0x0a, 0x2c, 0xd8, 0x40, + 0xb0, 0x68, 0x44, 0x1c, 0xe6, 0xd1, 0xb1, 0x1e, 0x35, 0xe6, 0x2d, 0xe0, 0x30, 0x6b, 0x65, 0xf0, + 0xce, 0x84, 0x8d, 0x0d, 0xb9, 0xa6, 0xb8, 0xe8, 0x39, 0xe4, 0xcd, 0xb8, 0x39, 0x59, 0x80, 0x1a, + 0x4c, 0xd6, 0x34, 0x25, 0x67, 0x3c, 0xe9, 0x0a, 0x3e, 0x03, 0x14, 0x49, 0x2a, 0x23, 0x87, 0xc4, + 0x4e, 0x38, 0x81, 0x83, 0x59, 0xaf, 0xf1, 0x9c, 0x3a, 0x61, 0x8a, 0xae, 0xc3, 0x63, 0x16, 0x9c, + 0xf3, 0x31, 0xf1, 0x99, 0x14, 0xae, 0x1d, 0x4d, 0xb6, 0x38, 0x25, 0xde, 0x9d, 0xbc, 0xa7, 0xa8, + 0x81, 0xc7, 0x06, 0x97, 0xec, 0x5b, 0x2a, 0xb3, 0x07, 0x05, 0x33, 0x65, 0x53, 0xc7, 0x77, 0x03, + 0x12, 0x72, 0x21, 0xad, 0xf5, 0xdd, 0xcc, 0xde, 0x1d, 0x9c, 0xd7, 0xf6, 0x8a, 0x32, 0x77, 0xb8, + 0x90, 0x68, 0x1f, 0xb6, 0xe8, 0x39, 0x75, 0x3d, 0xda, 0x77, 0x3d, 0x57, 0x8e, 0xc9, 0x4f, 0x3c, + 0x60, 0xd6, 0xc6, 0xe4, 0x25, 0x85, 0x69, 0xe7, 0x1b, 0x1e, 0x30, 0xe4, 0xc0, 0x03, 0x75, 0x08, + 0x0a, 0xee, 0x91, 0xd0, 0xa3, 0x01, 0x23, 0x34, 0x96, 0x23, 0x12, 0x72, 0xcf, 0xb5, 0xc7, 0x56, + 0x4e, 0xe7, 0xe0, 0xf3, 0x5b, 0x73, 0xb0, 0x12, 0xcb, 0x11, 0x0b, 0xa4, 0x6b, 0xeb, 0xe8, 0x76, + 0x34, 0x01, 0xdf, 0x4b, 0xb4, 0x3a, 0x4a, 0x4a, 0x21, 0x8c, 0x5d, 0x45, 0x2d, 0x99, 0x48, 0x93, + 0xc2, 0x1a, 0xb8, 0x1e, 0xb3, 0xf2, 0x26, 0x6a, 0xc6, 0x63, 0xd2, 0xf9, 0xc8, 0xf5, 0x98, 0xfa, + 0x5c, 0x15, 0x49, 0x5d, 0x07, 0xe9, 0xb4, 0xb9, 0x69, 0x3e, 0x57, 0xd9, 0x55, 0x36, 0x27, 0xb3, + 0xe6, 0xd7, 0xba, 0x52, 0xed, 0x58, 0x08, 0x16, 0xd8, 0x63, 0xab, 0xf0, 0xee, 0x31, 0xe4, 0xe0, + 0xa5, 0x19, 0x43, 0xa6, 0xf1, 0xa8, 0x02, 0x8f, 0x4d, 0x5c, 0xfb, 0x9c, 0xcb, 0x48, 0x0a, 0x1a, + 0x12, 0xc9, 0xfc, 0xd0, 0xa3, 0x92, 0x99, 0xca, 0xde, 0xd2, 0x2b, 0x2c, 0x6a, 0xd0, 0x61, 0x8a, + 0xe9, 0x25, 0x10, 0x5d, 0xe9, 0x0c, 0xb6, 0xdc, 0x40, 0x32, 0x61, 0xb3, 0x50, 0x5f, 0xab, 0x7c, + 0xee, 0x30, 0x0b, 0xe9, 0xb8, 0xbd, 0x7a, 0x6f, 0xed, 0x36, 0x83, 0x3e, 0x8f, 0x03, 0xa7, 0x39, + 0x25, 0x70, 0xcc, 0x1d, 0x86, 0x0b, 0xee, 0x35, 0x0b, 0xfa, 0x12, 0x56, 0x92, 0x92, 0xb6, 0xb6, + 0xf5, 0x47, 0x3e, 0x9a, 0x77, 0xee, 0xe0, 0x14, 0x8c, 0x5e, 0xc0, 0x62, 0xe4, 0x44, 0xd6, 0x8e, + 0xe6, 0x58, 0xb7, 0x72, 0xba, 0xb5, 0x2e, 0x56, 0x20, 0xf4, 0x23, 0x58, 0x26, 0x59, 0x93, 0x31, + 0xd8, 0xe3, 0x93, 0x96, 0x64, 0xdd, 0xd3, 0x02, 0xa5, 0x5b, 0x05, 0x30, 0xf3, 0xb9, 0x64, 0x49, + 0xca, 0xe2, 0x1d, 0xad, 0x51, 0xd1, 0x12, 0x2d, 0x9e, 0x76, 0x20, 0xf4, 0x1d, 0xec, 0xdc, 0x5a, + 0x09, 0xd6, 0xfd, 0x0f, 0x56, 0xde, 0xbe, 0xa5, 0x42, 0xd0, 0x1b, 0x30, 0x25, 0xa0, 0x74, 0xa9, + 0xba, 0xaa, 0x59, 0x96, 0xbe, 0xee, 0xbc, 0xbf, 0x71, 0xea, 0xdf, 0xc7, 0x09, 0xcb, 0xdc, 0x7a, + 0x72, 0xe1, 0xb4, 0x4d, 0x69, 0x8b, 0x38, 0x90, 0xae, 0xcf, 0xcc, 0xd0, 0x10, 0x59, 0x9f, 0x7c, + 0xa0, 0x36, 0x36, 0x34, 0x9d, 0x72, 0xc9, 0x8d, 0x2a, 0x27, 0xa6, 0x6d, 0xea, 0x08, 0x51, 0xb9, + 0x1c, 0x47, 0xa6, 0x9a, 0x8b, 0x3a, 0xbd, 0xc1, 0x98, 0x74, 0x25, 0x7f, 0x0a, 0x9b, 0xec, 0x52, + 0x0a, 0x4a, 0x74, 0x29, 0xe8, 0x8b, 0xdc, 0xc3, 0xdd, 0xc5, 0xbd, 0x35, 0x9c, 0xd3, 0xe6, 0xae, + 0xa4, 0x52, 0xdf, 0xce, 0x1a, 0x50, 0x18, 0x52, 0xc9, 0x2e, 0xe8, 0x98, 0xc8, 0xe4, 0x38, 0xb6, + 0x1e, 0xe9, 0x98, 0x3e, 0x9e, 0x7b, 0x66, 0xe3, 0xcd, 0x84, 0x36, 0x19, 0x1c, 0x5e, 0x43, 0x51, + 0x32, 0xe1, 0xa7, 0x7f, 0x10, 0x5c, 0x3b, 0x2c, 0x1e, 0xbf, 0xaf, 0xc1, 0x5b, 0x53, 0xe4, 0xda, + 0xcc, 0xb9, 0x71, 0x1f, 0x56, 0xd4, 0x1a, 0x88, 0xeb, 0x58, 0x4f, 0x74, 0x41, 0x2d, 0xab, 0xc7, + 0xa6, 0x83, 0x30, 0x6c, 0x0a, 0x46, 0x1d, 0x37, 0x50, 0xe9, 0x16, 0x0a, 0xde, 0x67, 0xd6, 0x53, + 0xfd, 0x9a, 0xe7, 0x73, 0x6e, 0x84, 0x38, 0x65, 0x74, 0x14, 0x01, 0xe7, 0xc5, 0xcc, 0x33, 0xea, + 0xc3, 0xb6, 0x49, 0x08, 0xdd, 0x8c, 0x89, 0x4f, 0xa5, 0x3d, 0x62, 0xc2, 0xda, 0xd5, 0xba, 0x2f, + 0x3f, 0x2c, 0x2b, 0x54, 0x70, 0xa3, 0x63, 0xc3, 0xc4, 0x5b, 0xe1, 0x75, 0x13, 0x1a, 0xc1, 0xb3, + 0x11, 0xf7, 0x1c, 0x42, 0xc3, 0xd0, 0x4b, 0x1a, 0x20, 0x51, 0xbb, 0xeb, 0x91, 0xc9, 0xab, 0x85, + 0x8c, 0xac, 0x8f, 0xf4, 0x3b, 0x8b, 0x37, 0x42, 0x76, 0xc8, 0xb9, 0x67, 0xba, 0xd1, 0x53, 0x25, + 0x53, 0xb9, 0x52, 0x39, 0x55, 0x22, 0xe9, 0x12, 0x84, 0x8c, 0xd4, 0x30, 0x67, 0x53, 0x3d, 0x90, + 0xb9, 0x03, 0x85, 0x61, 0x11, 0x09, 0x99, 0x6f, 0x95, 0x74, 0x26, 0x6c, 0xd9, 0xb4, 0x3a, 0xe5, + 0xe9, 0x30, 0x1f, 0x7d, 0x05, 0x77, 0x5c, 0x9f, 0x0e, 0x99, 0xf5, 0x6c, 0xe6, 0x46, 0x31, 0x13, + 0x47, 0xfd, 0xb7, 0x8d, 0xf9, 0xd0, 0xa6, 0xc2, 0x62, 0x43, 0x29, 0x7e, 0x03, 0xe8, 0x66, 0x4d, + 0xdc, 0x32, 0x01, 0xdf, 0x9d, 0x9e, 0x80, 0xd7, 0xa6, 0x26, 0x5b, 0xa5, 0x70, 0x33, 0xf3, 0x7f, + 0x96, 0xc2, 0x1f, 0x32, 0xb0, 0x75, 0x63, 0x0b, 0xd0, 0xe7, 0x80, 0xdc, 0x40, 0x0d, 0x52, 0x2a, + 0xd0, 0xa1, 0x60, 0x03, 0xf7, 0x52, 0x4f, 0xb4, 0x3a, 0x08, 0x13, 0x4f, 0x27, 0x71, 0xcc, 0xc2, + 0xa3, 0x78, 0x60, 0xe0, 0xd9, 0x6b, 0xf0, 0x6e, 0xe2, 0x50, 0x13, 0xc8, 0x15, 0x5c, 0xb0, 0x21, + 0xbb, 0x0c, 0xd5, 0x65, 0x59, 0xa1, 0x0b, 0x13, 0x07, 0x36, 0xf6, 0x92, 0x07, 0xe8, 0xe6, 0xc4, + 0x85, 0x1e, 0xc2, 0xfd, 0x4a, 0xa7, 0x43, 0x5a, 0x95, 0xc3, 0x7a, 0x8b, 0x54, 0xda, 0x35, 0xd2, + 0xae, 0x1c, 0xd7, 0xbb, 0x9d, 0x4a, 0xb5, 0x5e, 0x58, 0xd0, 0xd7, 0xc2, 0x4a, 0xfb, 0xa4, 0xdd, + 0xac, 0x56, 0x5a, 0xda, 0x61, 0xe6, 0xce, 0x0c, 0xda, 0x85, 0x47, 0xd7, 0x1c, 0xb3, 0xd4, 0x6c, + 0xe9, 0x6b, 0xb8, 0xff, 0x8e, 0x33, 0x42, 0xcd, 0xc4, 0xb8, 0x5e, 0x6b, 0xe2, 0x7a, 0xb5, 0x57, + 0x58, 0x40, 0x00, 0xcb, 0xbd, 0x0e, 0x3e, 0xf9, 0x5e, 0xc9, 0xae, 0xc2, 0x52, 0xfb, 0xa4, 0x5d, + 0x2f, 0x64, 0x0f, 0xf3, 0xb0, 0x91, 0x8c, 0x9f, 0xfa, 0x2c, 0xfd, 0x76, 0x69, 0x75, 0xad, 0x00, + 0x78, 0xd3, 0xe6, 0x41, 0xc0, 0x6c, 0x49, 0xd4, 0x46, 0xf1, 0x58, 0x96, 0xfe, 0x95, 0x51, 0x57, + 0xa8, 0xa9, 0x56, 0x3b, 0xe7, 0xfa, 0x7d, 0xfd, 0x1f, 0x9c, 0xec, 0xff, 0xf8, 0x0f, 0x0e, 0xe2, + 0x90, 0x93, 0x76, 0x48, 0xce, 0x18, 0x0b, 0xa9, 0xe7, 0x9e, 0xb3, 0xe4, 0xf2, 0xf9, 0xed, 0x3c, + 0x45, 0xb3, 0x7e, 0x3d, 0x76, 0x70, 0x2f, 0x55, 0x2a, 0xf7, 0xaa, 0x9d, 0xab, 0xdf, 0x76, 0xf8, + 0x9b, 0x54, 0x11, 0x6f, 0xc8, 0xa9, 0xa7, 0x17, 0xbf, 0x82, 0xbb, 0xb7, 0xcd, 0x2e, 0x93, 0xb0, + 0x2d, 0xa0, 0x3c, 0xc0, 0xf1, 0x69, 0xef, 0xb4, 0xd2, 0x22, 0xbd, 0x56, 0x57, 0xdf, 0xf2, 0x57, + 0x9a, 0xed, 0x46, 0x1d, 0x37, 0x7b, 0x85, 0x7f, 0xac, 0x1c, 0xee, 0xfd, 0xe5, 0xed, 0x93, 0xcc, + 0x5f, 0xdf, 0x3e, 0xc9, 0xfc, 0xed, 0xed, 0x93, 0xcc, 0x9b, 0xa2, 0x59, 0xa6, 0xcb, 0xf7, 0x69, + 0xe8, 0xee, 0xcf, 0xfc, 0xc9, 0xdb, 0x5f, 0xd6, 0x15, 0x7f, 0xf0, 0x9f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x71, 0x7f, 0x01, 0x07, 0xfc, 0x15, 0x00, 0x00, } func (m *Tracing) Marshal() (dAtA []byte, err error) { @@ -2675,6 +2688,27 @@ func (m *ProxyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if len(m.RuntimeValues) > 0 { + for k := range m.RuntimeValues { + v := m.RuntimeValues[k] + baseI := i + i -= len(v) + copy(dAtA[i:], v) + i = encodeVarintProxy(dAtA, i, uint64(len(v))) + i-- + dAtA[i] = 0x12 + i -= len(k) + copy(dAtA[i:], k) + i = encodeVarintProxy(dAtA, i, uint64(len(k))) + i-- + dAtA[i] = 0xa + i = encodeVarintProxy(dAtA, i, uint64(baseI-i)) + i-- + dAtA[i] = 0x2 + i-- + dAtA[i] = 0xaa + } + } if m.ClusterName != nil { { size := m.ClusterName.Size() @@ -3660,6 +3694,14 @@ func (m *ProxyConfig) Size() (n int) { l = m.Image.Size() n += 2 + l + sovProxy(uint64(l)) } + if len(m.RuntimeValues) > 0 { + for k, v := range m.RuntimeValues { + _ = k + _ = v + mapEntrySize := 1 + len(k) + sovProxy(uint64(len(k))) + 1 + len(v) + sovProxy(uint64(len(v))) + n += mapEntrySize + 2 + sovProxy(uint64(mapEntrySize)) + } + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -6630,6 +6672,133 @@ func (m *ProxyConfig) Unmarshal(dAtA []byte) error { } } m.ClusterName = &ProxyConfig_TracingServiceName_{v} + case 37: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RuntimeValues", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowProxy + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthProxy + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthProxy + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RuntimeValues == nil { + m.RuntimeValues = make(map[string]string) + } + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowProxy + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowProxy + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthProxy + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey < 0 { + return ErrInvalidLengthProxy + } + if postStringIndexmapkey > l { + return io.ErrUnexpectedEOF + } + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowProxy + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthProxy + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue < 0 { + return ErrInvalidLengthProxy + } + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipProxy(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthProxy + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + m.RuntimeValues[mapkey] = mapvalue + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipProxy(dAtA[iNdEx:]) diff --git a/mesh/v1alpha1/proxy.proto b/mesh/v1alpha1/proxy.proto index db74a5873fb..981affdd90c 100644 --- a/mesh/v1alpha1/proxy.proto +++ b/mesh/v1alpha1/proxy.proto @@ -460,6 +460,10 @@ message ProxyConfig { // Names starting with `ISTIO_META_` will be included in the generated bootstrap and sent to the XDS server. map proxy_metadata = 24; + // Envoy [runtime configuration](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/operations/runtime) to set during bootstrapping. + // This enables setting experimental, unsafe, unsupported, and deprecated features that should be used with extreme caution. + map runtime_values = 37; + // Port on which the agent should listen for administrative commands such as readiness probe. // Default is set to port `15020`. int32 status_port = 26; diff --git a/python/istio_api/mesh/v1alpha1/proxy_pb2.py b/python/istio_api/mesh/v1alpha1/proxy_pb2.py index 58e9ca1590c..4d33fda85dc 100644 --- a/python/istio_api/mesh/v1alpha1/proxy_pb2.py +++ b/python/istio_api/mesh/v1alpha1/proxy_pb2.py @@ -25,7 +25,7 @@ syntax='proto3', serialized_options=b'Z\032istio.io/api/mesh/v1alpha1', create_key=_descriptor._internal_create_key, - serialized_pb=b'\n\x19mesh/v1alpha1/proxy.proto\x12\x13istio.mesh.v1alpha1\x1a\x1egoogle/protobuf/duration.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a*networking/v1alpha3/destination_rule.proto\x1a(networking/v1alpha3/workload_group.proto\x1a%networking/v1beta1/proxy_config.proto\"\xa5\x0e\n\x07Tracing\x12=\n\x06zipkin\x18\x01 \x01(\x0b\x32#.istio.mesh.v1alpha1.Tracing.ZipkinH\x00R\x06zipkin\x12\x46\n\tlightstep\x18\x02 \x01(\x0b\x32&.istio.mesh.v1alpha1.Tracing.LightstepH\x00R\tlightstep\x12@\n\x07\x64\x61tadog\x18\x03 \x01(\x0b\x32$.istio.mesh.v1alpha1.Tracing.DatadogH\x00R\x07\x64\x61tadog\x12L\n\x0bstackdriver\x18\x04 \x01(\x0b\x32(.istio.mesh.v1alpha1.Tracing.StackdriverH\x00R\x0bstackdriver\x12Z\n\x11open_census_agent\x18\t \x01(\x0b\x32,.istio.mesh.v1alpha1.Tracing.OpenCensusAgentH\x00R\x0fopenCensusAgent\x12M\n\x0b\x63ustom_tags\x18\x05 \x03(\x0b\x32,.istio.mesh.v1alpha1.Tracing.CustomTagsEntryR\ncustomTags\x12-\n\x13max_path_tag_length\x18\x06 \x01(\rR\x10maxPathTagLength\x12\x1a\n\x08sampling\x18\x07 \x01(\x01R\x08sampling\x12O\n\x0ctls_settings\x18\x08 \x01(\x0b\x32,.istio.networking.v1alpha3.ClientTLSSettingsR\x0btlsSettings\x1a\"\n\x06Zipkin\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x1aH\n\tLightstep\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x12!\n\x0c\x61\x63\x63\x65ss_token\x18\x02 \x01(\tR\x0b\x61\x63\x63\x65ssToken\x1a#\n\x07\x44\x61tadog\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x1a\xae\x02\n\x0bStackdriver\x12\x14\n\x05\x64\x65\x62ug\x18\x01 \x01(\x08R\x05\x64\x65\x62ug\x12T\n\x18max_number_of_attributes\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueR\x15maxNumberOfAttributes\x12V\n\x19max_number_of_annotations\x18\x03 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueR\x16maxNumberOfAnnotations\x12[\n\x1cmax_number_of_message_events\x18\x04 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueR\x18maxNumberOfMessageEvents\x1a\xe7\x01\n\x0fOpenCensusAgent\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x12S\n\x07\x63ontext\x18\x02 \x03(\x0e\x32\x39.istio.mesh.v1alpha1.Tracing.OpenCensusAgent.TraceContextR\x07\x63ontext\"e\n\x0cTraceContext\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x15\n\x11W3C_TRACE_CONTEXT\x10\x01\x12\x0c\n\x08GRPC_BIN\x10\x02\x12\x17\n\x13\x43LOUD_TRACE_CONTEXT\x10\x03\x12\x06\n\x02\x42\x33\x10\x04\x1a\xe9\x01\n\tCustomTag\x12@\n\x07literal\x18\x01 \x01(\x0b\x32$.istio.mesh.v1alpha1.Tracing.LiteralH\x00R\x07literal\x12L\n\x0b\x65nvironment\x18\x02 \x01(\x0b\x32(.istio.mesh.v1alpha1.Tracing.EnvironmentH\x00R\x0b\x65nvironment\x12\x44\n\x06header\x18\x03 \x01(\x0b\x32*.istio.mesh.v1alpha1.Tracing.RequestHeaderH\x00R\x06headerB\x06\n\x04type\x1a\x1f\n\x07Literal\x12\x14\n\x05value\x18\x01 \x01(\tR\x05value\x1a\x46\n\x0b\x45nvironment\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12#\n\rdefault_value\x18\x02 \x01(\tR\x0c\x64\x65\x66\x61ultValue\x1aH\n\rRequestHeader\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12#\n\rdefault_value\x18\x02 \x01(\tR\x0c\x64\x65\x66\x61ultValue\x1a\x65\n\x0f\x43ustomTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\x05value\x18\x02 \x01(\x0b\x32&.istio.mesh.v1alpha1.Tracing.CustomTagR\x05value:\x02\x38\x01\x42\x08\n\x06tracer\"F\n\x03SDS\x12\x18\n\x07\x65nabled\x18\x01 \x01(\x08R\x07\x65nabled\x12%\n\x0fk8s_sa_jwt_path\x18\x02 \x01(\tR\x0ck8sSaJwtPath\"\xbc\x02\n\x08Topology\x12.\n\x13num_trusted_proxies\x18\x01 \x01(\rR\x11numTrustedProxies\x12u\n\x1b\x66orward_client_cert_details\x18\x02 \x01(\x0e\x32\x36.istio.mesh.v1alpha1.Topology.ForwardClientCertDetailsR\x18\x66orwardClientCertDetails\"\x88\x01\n\x18\x46orwardClientCertDetails\x12\r\n\tUNDEFINED\x10\x00\x12\x0c\n\x08SANITIZE\x10\x01\x12\x10\n\x0c\x46ORWARD_ONLY\x10\x02\x12\x12\n\x0e\x41PPEND_FORWARD\x10\x03\x12\x10\n\x0cSANITIZE_SET\x10\x04\x12\x17\n\x13\x41LWAYS_FORWARD_ONLY\x10\x05\"\xdf\x14\n\x0bProxyConfig\x12\x1f\n\x0b\x63onfig_path\x18\x01 \x01(\tR\nconfigPath\x12\x1f\n\x0b\x62inary_path\x18\x02 \x01(\tR\nbinaryPath\x12)\n\x0fservice_cluster\x18\x03 \x01(\tH\x00R\x0eserviceCluster\x12g\n\x14tracing_service_name\x18$ \x01(\x0e\x32\x33.istio.mesh.v1alpha1.ProxyConfig.TracingServiceNameH\x00R\x12tracingServiceName\x12@\n\x0e\x64rain_duration\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\rdrainDuration\x12S\n\x18parent_shutdown_duration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationR\x16parentShutdownDuration\x12+\n\x11\x64iscovery_address\x18\x06 \x01(\tR\x10\x64iscoveryAddress\x12U\n\x17\x64iscovery_refresh_delay\x18\x07 \x01(\x0b\x32\x19.google.protobuf.DurationB\x02\x18\x01R\x15\x64iscoveryRefreshDelay\x12)\n\x0ezipkin_address\x18\x08 \x01(\tB\x02\x18\x01R\rzipkinAddress\x12,\n\x12statsd_udp_address\x18\n \x01(\tR\x10statsdUdpAddress\x12\x45\n\x1d\x65nvoy_metrics_service_address\x18\x14 \x01(\tB\x02\x18\x01R\x1a\x65nvoyMetricsServiceAddress\x12(\n\x10proxy_admin_port\x18\x0b \x01(\x05R\x0eproxyAdminPort\x12/\n\x11\x61vailability_zone\x18\x0c \x01(\tB\x02\x18\x01R\x10\x61vailabilityZone\x12\x64\n\x19\x63ontrol_plane_auth_policy\x18\r \x01(\x0e\x32).istio.mesh.v1alpha1.AuthenticationPolicyR\x16\x63ontrolPlaneAuthPolicy\x12,\n\x12\x63ustom_config_file\x18\x0e \x01(\tR\x10\x63ustomConfigFile\x12(\n\x10stat_name_length\x18\x0f \x01(\x05R\x0estatNameLength\x12=\n\x0b\x63oncurrency\x18\x10 \x01(\x0b\x32\x1b.google.protobuf.Int32ValueR\x0b\x63oncurrency\x12\x41\n\x1dproxy_bootstrap_template_path\x18\x11 \x01(\tR\x1aproxyBootstrapTemplatePath\x12\x65\n\x11interception_mode\x18\x12 \x01(\x0e\x32\x38.istio.mesh.v1alpha1.ProxyConfig.InboundInterceptionModeR\x10interceptionMode\x12\x36\n\x07tracing\x18\x13 \x01(\x0b\x32\x1c.istio.mesh.v1alpha1.TracingR\x07tracing\x12*\n\x03sds\x18\x15 \x01(\x0b\x32\x18.istio.mesh.v1alpha1.SDSR\x03sds\x12[\n\x18\x65nvoy_access_log_service\x18\x16 \x01(\x0b\x32\".istio.mesh.v1alpha1.RemoteServiceR\x15\x65nvoyAccessLogService\x12V\n\x15\x65nvoy_metrics_service\x18\x17 \x01(\x0b\x32\".istio.mesh.v1alpha1.RemoteServiceR\x13\x65nvoyMetricsService\x12Z\n\x0eproxy_metadata\x18\x18 \x03(\x0b\x32\x33.istio.mesh.v1alpha1.ProxyConfig.ProxyMetadataEntryR\rproxyMetadata\x12\x1f\n\x0bstatus_port\x18\x1a \x01(\x05R\nstatusPort\x12&\n\x0f\x65xtra_stat_tags\x18\x1b \x03(\tR\rextraStatTags\x12H\n\x10gateway_topology\x18\x1c \x01(\x0b\x32\x1d.istio.mesh.v1alpha1.TopologyR\x0fgatewayTopology\x12W\n\x1atermination_drain_duration\x18\x1d \x01(\x0b\x32\x19.google.protobuf.DurationR\x18terminationDrainDuration\x12\x17\n\x07mesh_id\x18\x1e \x01(\tR\x06meshId\x12R\n\x0freadiness_probe\x18\x1f \x01(\x0b\x32).istio.networking.v1alpha3.ReadinessProbeR\x0ereadinessProbe\x12\x62\n\x13proxy_stats_matcher\x18 \x01(\x0b\x32\x32.istio.mesh.v1alpha1.ProxyConfig.ProxyStatsMatcherR\x11proxyStatsMatcher\x12h\n#hold_application_until_proxy_starts\x18! \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\x1fholdApplicationUntilProxyStarts\x12.\n\x13\x63\x61_certificates_pem\x18\" \x03(\tR\x11\x63\x61\x43\x65rtificatesPem\x12:\n\x05image\x18# \x01(\x0b\x32$.istio.networking.v1beta1.ProxyImageR\x05image\x1a@\n\x12ProxyMetadataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a\x9e\x01\n\x11ProxyStatsMatcher\x12-\n\x12inclusion_prefixes\x18\x01 \x03(\tR\x11inclusionPrefixes\x12-\n\x12inclusion_suffixes\x18\x02 \x03(\tR\x11inclusionSuffixes\x12+\n\x11inclusion_regexps\x18\x03 \x03(\tR\x10inclusionRegexps\"l\n\x12TracingServiceName\x12\x1b\n\x17\x41PP_LABEL_AND_NAMESPACE\x10\x00\x12\x17\n\x13\x43\x41NONICAL_NAME_ONLY\x10\x01\x12 \n\x1c\x43\x41NONICAL_NAME_AND_NAMESPACE\x10\x02\"=\n\x17InboundInterceptionMode\x12\x0c\n\x08REDIRECT\x10\x00\x12\n\n\x06TPROXY\x10\x01\x12\x08\n\x04NONE\x10\x02\x42\x0e\n\x0c\x63luster_nameJ\x04\x08\t\x10\nR\x0f\x63onnect_timeout\"\xeb\x01\n\rRemoteService\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x12O\n\x0ctls_settings\x18\x02 \x01(\x0b\x32,.istio.networking.v1alpha3.ClientTLSSettingsR\x0btlsSettings\x12o\n\rtcp_keepalive\x18\x03 \x01(\x0b\x32J.istio.networking.v1alpha3.ConnectionPoolSettings.TCPSettings.TcpKeepaliveR\x0ctcpKeepalive*>\n\x14\x41uthenticationPolicy\x12\x08\n\x04NONE\x10\x00\x12\x0e\n\nMUTUAL_TLS\x10\x01\x12\x0c\n\x07INHERIT\x10\xe8\x07\x42\x1cZ\x1aistio.io/api/mesh/v1alpha1b\x06proto3' + serialized_pb=b'\n\x19mesh/v1alpha1/proxy.proto\x12\x13istio.mesh.v1alpha1\x1a\x1egoogle/protobuf/duration.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a*networking/v1alpha3/destination_rule.proto\x1a(networking/v1alpha3/workload_group.proto\x1a%networking/v1beta1/proxy_config.proto\"\xa5\x0e\n\x07Tracing\x12=\n\x06zipkin\x18\x01 \x01(\x0b\x32#.istio.mesh.v1alpha1.Tracing.ZipkinH\x00R\x06zipkin\x12\x46\n\tlightstep\x18\x02 \x01(\x0b\x32&.istio.mesh.v1alpha1.Tracing.LightstepH\x00R\tlightstep\x12@\n\x07\x64\x61tadog\x18\x03 \x01(\x0b\x32$.istio.mesh.v1alpha1.Tracing.DatadogH\x00R\x07\x64\x61tadog\x12L\n\x0bstackdriver\x18\x04 \x01(\x0b\x32(.istio.mesh.v1alpha1.Tracing.StackdriverH\x00R\x0bstackdriver\x12Z\n\x11open_census_agent\x18\t \x01(\x0b\x32,.istio.mesh.v1alpha1.Tracing.OpenCensusAgentH\x00R\x0fopenCensusAgent\x12M\n\x0b\x63ustom_tags\x18\x05 \x03(\x0b\x32,.istio.mesh.v1alpha1.Tracing.CustomTagsEntryR\ncustomTags\x12-\n\x13max_path_tag_length\x18\x06 \x01(\rR\x10maxPathTagLength\x12\x1a\n\x08sampling\x18\x07 \x01(\x01R\x08sampling\x12O\n\x0ctls_settings\x18\x08 \x01(\x0b\x32,.istio.networking.v1alpha3.ClientTLSSettingsR\x0btlsSettings\x1a\"\n\x06Zipkin\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x1aH\n\tLightstep\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x12!\n\x0c\x61\x63\x63\x65ss_token\x18\x02 \x01(\tR\x0b\x61\x63\x63\x65ssToken\x1a#\n\x07\x44\x61tadog\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x1a\xae\x02\n\x0bStackdriver\x12\x14\n\x05\x64\x65\x62ug\x18\x01 \x01(\x08R\x05\x64\x65\x62ug\x12T\n\x18max_number_of_attributes\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueR\x15maxNumberOfAttributes\x12V\n\x19max_number_of_annotations\x18\x03 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueR\x16maxNumberOfAnnotations\x12[\n\x1cmax_number_of_message_events\x18\x04 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueR\x18maxNumberOfMessageEvents\x1a\xe7\x01\n\x0fOpenCensusAgent\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x12S\n\x07\x63ontext\x18\x02 \x03(\x0e\x32\x39.istio.mesh.v1alpha1.Tracing.OpenCensusAgent.TraceContextR\x07\x63ontext\"e\n\x0cTraceContext\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x15\n\x11W3C_TRACE_CONTEXT\x10\x01\x12\x0c\n\x08GRPC_BIN\x10\x02\x12\x17\n\x13\x43LOUD_TRACE_CONTEXT\x10\x03\x12\x06\n\x02\x42\x33\x10\x04\x1a\xe9\x01\n\tCustomTag\x12@\n\x07literal\x18\x01 \x01(\x0b\x32$.istio.mesh.v1alpha1.Tracing.LiteralH\x00R\x07literal\x12L\n\x0b\x65nvironment\x18\x02 \x01(\x0b\x32(.istio.mesh.v1alpha1.Tracing.EnvironmentH\x00R\x0b\x65nvironment\x12\x44\n\x06header\x18\x03 \x01(\x0b\x32*.istio.mesh.v1alpha1.Tracing.RequestHeaderH\x00R\x06headerB\x06\n\x04type\x1a\x1f\n\x07Literal\x12\x14\n\x05value\x18\x01 \x01(\tR\x05value\x1a\x46\n\x0b\x45nvironment\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12#\n\rdefault_value\x18\x02 \x01(\tR\x0c\x64\x65\x66\x61ultValue\x1aH\n\rRequestHeader\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12#\n\rdefault_value\x18\x02 \x01(\tR\x0c\x64\x65\x66\x61ultValue\x1a\x65\n\x0f\x43ustomTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\x05value\x18\x02 \x01(\x0b\x32&.istio.mesh.v1alpha1.Tracing.CustomTagR\x05value:\x02\x38\x01\x42\x08\n\x06tracer\"F\n\x03SDS\x12\x18\n\x07\x65nabled\x18\x01 \x01(\x08R\x07\x65nabled\x12%\n\x0fk8s_sa_jwt_path\x18\x02 \x01(\tR\x0ck8sSaJwtPath\"\xbc\x02\n\x08Topology\x12.\n\x13num_trusted_proxies\x18\x01 \x01(\rR\x11numTrustedProxies\x12u\n\x1b\x66orward_client_cert_details\x18\x02 \x01(\x0e\x32\x36.istio.mesh.v1alpha1.Topology.ForwardClientCertDetailsR\x18\x66orwardClientCertDetails\"\x88\x01\n\x18\x46orwardClientCertDetails\x12\r\n\tUNDEFINED\x10\x00\x12\x0c\n\x08SANITIZE\x10\x01\x12\x10\n\x0c\x46ORWARD_ONLY\x10\x02\x12\x12\n\x0e\x41PPEND_FORWARD\x10\x03\x12\x10\n\x0cSANITIZE_SET\x10\x04\x12\x17\n\x13\x41LWAYS_FORWARD_ONLY\x10\x05\"\xfd\x15\n\x0bProxyConfig\x12\x1f\n\x0b\x63onfig_path\x18\x01 \x01(\tR\nconfigPath\x12\x1f\n\x0b\x62inary_path\x18\x02 \x01(\tR\nbinaryPath\x12)\n\x0fservice_cluster\x18\x03 \x01(\tH\x00R\x0eserviceCluster\x12g\n\x14tracing_service_name\x18$ \x01(\x0e\x32\x33.istio.mesh.v1alpha1.ProxyConfig.TracingServiceNameH\x00R\x12tracingServiceName\x12@\n\x0e\x64rain_duration\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\rdrainDuration\x12S\n\x18parent_shutdown_duration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationR\x16parentShutdownDuration\x12+\n\x11\x64iscovery_address\x18\x06 \x01(\tR\x10\x64iscoveryAddress\x12U\n\x17\x64iscovery_refresh_delay\x18\x07 \x01(\x0b\x32\x19.google.protobuf.DurationB\x02\x18\x01R\x15\x64iscoveryRefreshDelay\x12)\n\x0ezipkin_address\x18\x08 \x01(\tB\x02\x18\x01R\rzipkinAddress\x12,\n\x12statsd_udp_address\x18\n \x01(\tR\x10statsdUdpAddress\x12\x45\n\x1d\x65nvoy_metrics_service_address\x18\x14 \x01(\tB\x02\x18\x01R\x1a\x65nvoyMetricsServiceAddress\x12(\n\x10proxy_admin_port\x18\x0b \x01(\x05R\x0eproxyAdminPort\x12/\n\x11\x61vailability_zone\x18\x0c \x01(\tB\x02\x18\x01R\x10\x61vailabilityZone\x12\x64\n\x19\x63ontrol_plane_auth_policy\x18\r \x01(\x0e\x32).istio.mesh.v1alpha1.AuthenticationPolicyR\x16\x63ontrolPlaneAuthPolicy\x12,\n\x12\x63ustom_config_file\x18\x0e \x01(\tR\x10\x63ustomConfigFile\x12(\n\x10stat_name_length\x18\x0f \x01(\x05R\x0estatNameLength\x12=\n\x0b\x63oncurrency\x18\x10 \x01(\x0b\x32\x1b.google.protobuf.Int32ValueR\x0b\x63oncurrency\x12\x41\n\x1dproxy_bootstrap_template_path\x18\x11 \x01(\tR\x1aproxyBootstrapTemplatePath\x12\x65\n\x11interception_mode\x18\x12 \x01(\x0e\x32\x38.istio.mesh.v1alpha1.ProxyConfig.InboundInterceptionModeR\x10interceptionMode\x12\x36\n\x07tracing\x18\x13 \x01(\x0b\x32\x1c.istio.mesh.v1alpha1.TracingR\x07tracing\x12*\n\x03sds\x18\x15 \x01(\x0b\x32\x18.istio.mesh.v1alpha1.SDSR\x03sds\x12[\n\x18\x65nvoy_access_log_service\x18\x16 \x01(\x0b\x32\".istio.mesh.v1alpha1.RemoteServiceR\x15\x65nvoyAccessLogService\x12V\n\x15\x65nvoy_metrics_service\x18\x17 \x01(\x0b\x32\".istio.mesh.v1alpha1.RemoteServiceR\x13\x65nvoyMetricsService\x12Z\n\x0eproxy_metadata\x18\x18 \x03(\x0b\x32\x33.istio.mesh.v1alpha1.ProxyConfig.ProxyMetadataEntryR\rproxyMetadata\x12Z\n\x0eruntime_values\x18% \x03(\x0b\x32\x33.istio.mesh.v1alpha1.ProxyConfig.RuntimeValuesEntryR\rruntimeValues\x12\x1f\n\x0bstatus_port\x18\x1a \x01(\x05R\nstatusPort\x12&\n\x0f\x65xtra_stat_tags\x18\x1b \x03(\tR\rextraStatTags\x12H\n\x10gateway_topology\x18\x1c \x01(\x0b\x32\x1d.istio.mesh.v1alpha1.TopologyR\x0fgatewayTopology\x12W\n\x1atermination_drain_duration\x18\x1d \x01(\x0b\x32\x19.google.protobuf.DurationR\x18terminationDrainDuration\x12\x17\n\x07mesh_id\x18\x1e \x01(\tR\x06meshId\x12R\n\x0freadiness_probe\x18\x1f \x01(\x0b\x32).istio.networking.v1alpha3.ReadinessProbeR\x0ereadinessProbe\x12\x62\n\x13proxy_stats_matcher\x18 \x01(\x0b\x32\x32.istio.mesh.v1alpha1.ProxyConfig.ProxyStatsMatcherR\x11proxyStatsMatcher\x12h\n#hold_application_until_proxy_starts\x18! \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\x1fholdApplicationUntilProxyStarts\x12.\n\x13\x63\x61_certificates_pem\x18\" \x03(\tR\x11\x63\x61\x43\x65rtificatesPem\x12:\n\x05image\x18# \x01(\x0b\x32$.istio.networking.v1beta1.ProxyImageR\x05image\x1a@\n\x12ProxyMetadataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a@\n\x12RuntimeValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a\x9e\x01\n\x11ProxyStatsMatcher\x12-\n\x12inclusion_prefixes\x18\x01 \x03(\tR\x11inclusionPrefixes\x12-\n\x12inclusion_suffixes\x18\x02 \x03(\tR\x11inclusionSuffixes\x12+\n\x11inclusion_regexps\x18\x03 \x03(\tR\x10inclusionRegexps\"l\n\x12TracingServiceName\x12\x1b\n\x17\x41PP_LABEL_AND_NAMESPACE\x10\x00\x12\x17\n\x13\x43\x41NONICAL_NAME_ONLY\x10\x01\x12 \n\x1c\x43\x41NONICAL_NAME_AND_NAMESPACE\x10\x02\"=\n\x17InboundInterceptionMode\x12\x0c\n\x08REDIRECT\x10\x00\x12\n\n\x06TPROXY\x10\x01\x12\x08\n\x04NONE\x10\x02\x42\x0e\n\x0c\x63luster_nameJ\x04\x08\t\x10\nR\x0f\x63onnect_timeout\"\xeb\x01\n\rRemoteService\x12\x18\n\x07\x61\x64\x64ress\x18\x01 \x01(\tR\x07\x61\x64\x64ress\x12O\n\x0ctls_settings\x18\x02 \x01(\x0b\x32,.istio.networking.v1alpha3.ClientTLSSettingsR\x0btlsSettings\x12o\n\rtcp_keepalive\x18\x03 \x01(\x0b\x32J.istio.networking.v1alpha3.ConnectionPoolSettings.TCPSettings.TcpKeepaliveR\x0ctcpKeepalive*>\n\x14\x41uthenticationPolicy\x12\x08\n\x04NONE\x10\x00\x12\x0e\n\nMUTUAL_TLS\x10\x01\x12\x0c\n\x07INHERIT\x10\xe8\x07\x42\x1cZ\x1aistio.io/api/mesh/v1alpha1b\x06proto3' , dependencies=[google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,google_dot_protobuf_dot_wrappers__pb2.DESCRIPTOR,networking_dot_v1alpha3_dot_destination__rule__pb2.DESCRIPTOR,networking_dot_v1alpha3_dot_workload__group__pb2.DESCRIPTOR,networking_dot_v1beta1_dot_proxy__config__pb2.DESCRIPTOR,]) @@ -54,8 +54,8 @@ ], containing_type=None, serialized_options=None, - serialized_start=5358, - serialized_end=5420, + serialized_start=5516, + serialized_end=5578, ) _sym_db.RegisterEnumDescriptor(_AUTHENTICATIONPOLICY) @@ -175,8 +175,8 @@ ], containing_type=None, serialized_options=None, - serialized_start=4908, - serialized_end=5016, + serialized_start=5066, + serialized_end=5174, ) _sym_db.RegisterEnumDescriptor(_PROXYCONFIG_TRACINGSERVICENAME) @@ -205,8 +205,8 @@ ], containing_type=None, serialized_options=None, - serialized_start=5018, - serialized_end=5079, + serialized_start=5176, + serialized_end=5237, ) _sym_db.RegisterEnumDescriptor(_PROXYCONFIG_INBOUNDINTERCEPTIONMODE) @@ -803,8 +803,46 @@ extension_ranges=[], oneofs=[ ], - serialized_start=4681, - serialized_end=4745, + serialized_start=4773, + serialized_end=4837, +) + +_PROXYCONFIG_RUNTIMEVALUESENTRY = _descriptor.Descriptor( + name='RuntimeValuesEntry', + full_name='istio.mesh.v1alpha1.ProxyConfig.RuntimeValuesEntry', + filename=None, + file=DESCRIPTOR, + containing_type=None, + create_key=_descriptor._internal_create_key, + fields=[ + _descriptor.FieldDescriptor( + name='key', full_name='istio.mesh.v1alpha1.ProxyConfig.RuntimeValuesEntry.key', index=0, + number=1, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=b"".decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, json_name='key', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), + _descriptor.FieldDescriptor( + name='value', full_name='istio.mesh.v1alpha1.ProxyConfig.RuntimeValuesEntry.value', index=1, + number=2, type=9, cpp_type=9, label=1, + has_default_value=False, default_value=b"".decode('utf-8'), + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, json_name='value', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), + ], + extensions=[ + ], + nested_types=[], + enum_types=[ + ], + serialized_options=b'8\001', + is_extendable=False, + syntax='proto3', + extension_ranges=[], + oneofs=[ + ], + serialized_start=4839, + serialized_end=4903, ) _PROXYCONFIG_PROXYSTATSMATCHER = _descriptor.Descriptor( @@ -848,8 +886,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=4748, - serialized_end=4906, + serialized_start=4906, + serialized_end=5064, ) _PROXYCONFIG = _descriptor.Descriptor( @@ -1029,70 +1067,77 @@ is_extension=False, extension_scope=None, serialized_options=None, json_name='proxyMetadata', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='status_port', full_name='istio.mesh.v1alpha1.ProxyConfig.status_port', index=24, + name='runtime_values', full_name='istio.mesh.v1alpha1.ProxyConfig.runtime_values', index=24, + number=37, type=11, cpp_type=10, label=3, + has_default_value=False, default_value=[], + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, json_name='runtimeValues', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), + _descriptor.FieldDescriptor( + name='status_port', full_name='istio.mesh.v1alpha1.ProxyConfig.status_port', index=25, number=26, type=5, cpp_type=1, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='statusPort', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='extra_stat_tags', full_name='istio.mesh.v1alpha1.ProxyConfig.extra_stat_tags', index=25, + name='extra_stat_tags', full_name='istio.mesh.v1alpha1.ProxyConfig.extra_stat_tags', index=26, number=27, type=9, cpp_type=9, label=3, has_default_value=False, default_value=[], message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='extraStatTags', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='gateway_topology', full_name='istio.mesh.v1alpha1.ProxyConfig.gateway_topology', index=26, + name='gateway_topology', full_name='istio.mesh.v1alpha1.ProxyConfig.gateway_topology', index=27, number=28, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='gatewayTopology', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='termination_drain_duration', full_name='istio.mesh.v1alpha1.ProxyConfig.termination_drain_duration', index=27, + name='termination_drain_duration', full_name='istio.mesh.v1alpha1.ProxyConfig.termination_drain_duration', index=28, number=29, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='terminationDrainDuration', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='mesh_id', full_name='istio.mesh.v1alpha1.ProxyConfig.mesh_id', index=28, + name='mesh_id', full_name='istio.mesh.v1alpha1.ProxyConfig.mesh_id', index=29, number=30, type=9, cpp_type=9, label=1, has_default_value=False, default_value=b"".decode('utf-8'), message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='meshId', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='readiness_probe', full_name='istio.mesh.v1alpha1.ProxyConfig.readiness_probe', index=29, + name='readiness_probe', full_name='istio.mesh.v1alpha1.ProxyConfig.readiness_probe', index=30, number=31, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='readinessProbe', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='proxy_stats_matcher', full_name='istio.mesh.v1alpha1.ProxyConfig.proxy_stats_matcher', index=30, + name='proxy_stats_matcher', full_name='istio.mesh.v1alpha1.ProxyConfig.proxy_stats_matcher', index=31, number=32, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='proxyStatsMatcher', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='hold_application_until_proxy_starts', full_name='istio.mesh.v1alpha1.ProxyConfig.hold_application_until_proxy_starts', index=31, + name='hold_application_until_proxy_starts', full_name='istio.mesh.v1alpha1.ProxyConfig.hold_application_until_proxy_starts', index=32, number=33, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='holdApplicationUntilProxyStarts', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='ca_certificates_pem', full_name='istio.mesh.v1alpha1.ProxyConfig.ca_certificates_pem', index=32, + name='ca_certificates_pem', full_name='istio.mesh.v1alpha1.ProxyConfig.ca_certificates_pem', index=33, number=34, type=9, cpp_type=9, label=3, has_default_value=False, default_value=[], message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, json_name='caCertificatesPem', file=DESCRIPTOR, create_key=_descriptor._internal_create_key), _descriptor.FieldDescriptor( - name='image', full_name='istio.mesh.v1alpha1.ProxyConfig.image', index=33, + name='image', full_name='istio.mesh.v1alpha1.ProxyConfig.image', index=34, number=35, type=11, cpp_type=10, label=1, has_default_value=False, default_value=None, message_type=None, enum_type=None, containing_type=None, @@ -1101,7 +1146,7 @@ ], extensions=[ ], - nested_types=[_PROXYCONFIG_PROXYMETADATAENTRY, _PROXYCONFIG_PROXYSTATSMATCHER, ], + nested_types=[_PROXYCONFIG_PROXYMETADATAENTRY, _PROXYCONFIG_RUNTIMEVALUESENTRY, _PROXYCONFIG_PROXYSTATSMATCHER, ], enum_types=[ _PROXYCONFIG_TRACINGSERVICENAME, _PROXYCONFIG_INBOUNDINTERCEPTIONMODE, @@ -1118,7 +1163,7 @@ fields=[]), ], serialized_start=2463, - serialized_end=5118, + serialized_end=5276, ) @@ -1163,8 +1208,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=5121, - serialized_end=5356, + serialized_start=5279, + serialized_end=5514, ) _TRACING_ZIPKIN.containing_type = _TRACING @@ -1220,6 +1265,7 @@ _TOPOLOGY.fields_by_name['forward_client_cert_details'].enum_type = _TOPOLOGY_FORWARDCLIENTCERTDETAILS _TOPOLOGY_FORWARDCLIENTCERTDETAILS.containing_type = _TOPOLOGY _PROXYCONFIG_PROXYMETADATAENTRY.containing_type = _PROXYCONFIG +_PROXYCONFIG_RUNTIMEVALUESENTRY.containing_type = _PROXYCONFIG _PROXYCONFIG_PROXYSTATSMATCHER.containing_type = _PROXYCONFIG _PROXYCONFIG.fields_by_name['tracing_service_name'].enum_type = _PROXYCONFIG_TRACINGSERVICENAME _PROXYCONFIG.fields_by_name['drain_duration'].message_type = google_dot_protobuf_dot_duration__pb2._DURATION @@ -1233,6 +1279,7 @@ _PROXYCONFIG.fields_by_name['envoy_access_log_service'].message_type = _REMOTESERVICE _PROXYCONFIG.fields_by_name['envoy_metrics_service'].message_type = _REMOTESERVICE _PROXYCONFIG.fields_by_name['proxy_metadata'].message_type = _PROXYCONFIG_PROXYMETADATAENTRY +_PROXYCONFIG.fields_by_name['runtime_values'].message_type = _PROXYCONFIG_RUNTIMEVALUESENTRY _PROXYCONFIG.fields_by_name['gateway_topology'].message_type = _TOPOLOGY _PROXYCONFIG.fields_by_name['termination_drain_duration'].message_type = google_dot_protobuf_dot_duration__pb2._DURATION _PROXYCONFIG.fields_by_name['readiness_probe'].message_type = networking_dot_v1alpha3_dot_workload__group__pb2._READINESSPROBE @@ -1367,6 +1414,13 @@ }) , + 'RuntimeValuesEntry' : _reflection.GeneratedProtocolMessageType('RuntimeValuesEntry', (_message.Message,), { + 'DESCRIPTOR' : _PROXYCONFIG_RUNTIMEVALUESENTRY, + '__module__' : 'mesh.v1alpha1.proxy_pb2' + # @@protoc_insertion_point(class_scope:istio.mesh.v1alpha1.ProxyConfig.RuntimeValuesEntry) + }) + , + 'ProxyStatsMatcher' : _reflection.GeneratedProtocolMessageType('ProxyStatsMatcher', (_message.Message,), { 'DESCRIPTOR' : _PROXYCONFIG_PROXYSTATSMATCHER, '__module__' : 'mesh.v1alpha1.proxy_pb2' @@ -1379,6 +1433,7 @@ }) _sym_db.RegisterMessage(ProxyConfig) _sym_db.RegisterMessage(ProxyConfig.ProxyMetadataEntry) +_sym_db.RegisterMessage(ProxyConfig.RuntimeValuesEntry) _sym_db.RegisterMessage(ProxyConfig.ProxyStatsMatcher) RemoteService = _reflection.GeneratedProtocolMessageType('RemoteService', (_message.Message,), { @@ -1392,6 +1447,7 @@ DESCRIPTOR._options = None _TRACING_CUSTOMTAGSENTRY._options = None _PROXYCONFIG_PROXYMETADATAENTRY._options = None +_PROXYCONFIG_RUNTIMEVALUESENTRY._options = None _PROXYCONFIG.fields_by_name['discovery_refresh_delay']._options = None _PROXYCONFIG.fields_by_name['zipkin_address']._options = None _PROXYCONFIG.fields_by_name['envoy_metrics_service_address']._options = None