diff --git a/cli/command/service/opts.go b/cli/command/service/opts.go index fc94c7d913a1..6da8231aa75a 100644 --- a/cli/command/service/opts.go +++ b/cli/command/service/opts.go @@ -505,6 +505,8 @@ type serviceOptions struct { healthcheck healthCheckOptions secrets opts.SecretOpt configs opts.ConfigOpt + + isolation string } func newServiceOptions() *serviceOptions { @@ -614,6 +616,7 @@ func (options *serviceOptions) ToService(ctx context.Context, apiClient client.N Hosts: convertExtraHostsToSwarmHosts(options.hosts.GetAll()), StopGracePeriod: options.ToStopGracePeriod(flags), Healthcheck: healthConfig, + Isolation: options.isolation, }, Networks: networks, Resources: options.resources.ToResourceRequirements(), @@ -784,6 +787,8 @@ func addServiceFlags(flags *pflag.FlagSet, opts *serviceOptions, defaultFlagValu flags.StringVar(&opts.stopSignal, flagStopSignal, "", "Signal to stop the container") flags.SetAnnotation(flagStopSignal, "version", []string{"1.28"}) + flags.StringVar(&opts.isolation, flagIsolation, "", "defines the isolation mode (hyperv, process)") + flags.SetAnnotation(flagIsolation, "version", []string{"1.32"}) } const ( @@ -879,4 +884,5 @@ const ( flagConfig = "config" flagConfigAdd = "config-add" flagConfigRemove = "config-rm" + flagIsolation = "isolation" ) diff --git a/cli/command/service/update.go b/cli/command/service/update.go index 03783d8c2c0d..d6629cb07a8c 100644 --- a/cli/command/service/update.go +++ b/cli/command/service/update.go @@ -289,6 +289,7 @@ func updateService(ctx context.Context, apiClient client.NetworkAPIClient, flags updateString(flagWorkdir, &cspec.Dir) updateString(flagUser, &cspec.User) updateString(flagHostname, &cspec.Hostname) + updateString(flagIsolation, &cspec.Isolation) if err := updateMounts(flags, &cspec.Mounts); err != nil { return err } diff --git a/cli/compose/convert/service.go b/cli/compose/convert/service.go index acbd234a6bd9..c8da78f29d49 100644 --- a/cli/compose/convert/service.go +++ b/cli/compose/convert/service.go @@ -149,6 +149,7 @@ func Service( Configs: configs, ReadOnly: service.ReadOnly, Privileges: &privileges, + Isolation: service.Isolation, }, LogDriver: logDriver, Resources: resources, diff --git a/cli/compose/types/types.go b/cli/compose/types/types.go index 8feaf4289daa..0f3d68ea9a8c 100644 --- a/cli/compose/types/types.go +++ b/cli/compose/types/types.go @@ -123,6 +123,7 @@ type ServiceConfig struct { User string Volumes []ServiceVolumeConfig WorkingDir string `mapstructure:"working_dir"` + Isolation string `mapstructure:"isolation"` } // ShellCommand is a string or list of string args diff --git a/vendor.conf b/vendor.conf old mode 100755 new mode 100644 index fb8b2a9819b4..15243afb994a --- a/vendor.conf +++ b/vendor.conf @@ -1,6 +1,6 @@ # docker -github.com/docker/docker d4f6db83c21cfc6af54fffb1f13e8acb7199f96a https://github.com/simonferquel/docker.git +github.com/docker/docker 2488cfa1ba00ee649c7ce07d4fd28c35c3ad9072 https://github.com/simonferquel/docker.git github.com/docker/docker-credential-helpers v0.5.1 github.com/docker/distribution edc3ab29cdff8694dd6feb85cfeb4b5f1b38ed9c github.com/docker/libnetwork 248fd5ea6a67f8810da322e6e7441e8de96a9045 https://github.com/dmcgowan/libnetwork.git @@ -13,7 +13,7 @@ github.com/docker/go-events 9461782956ad83b30282bf90e31fa6a70c255ba9 github.com/docker/go-units 9e638d38cf6977a37a8ea0078f3ee75a7cdb2dd1 github.com/docker/libtrust 9cbd2a1374f46905c68a4eb3694a130610adc62a github.com/docker/notary v0.4.2-sirupsen https://github.com/simonferquel/notary.git -github.com/docker/swarmkit 8bdecc57887ffc598b63d6433f58e0d2852112c3 https://github.com/dmcgowan/swarmkit.git +github.com/docker/swarmkit 0d860379bc362b5b93ca90ab465513ec2cd9a948 https://github.com/dmcgowan/swarmkit.git github.com/moby/buildkit da2b9dc7dab99e824b2b1067ad7d0523e32dd2d9 https://github.com/dmcgowan/buildkit.git github.com/stevvooe/continuity cd7a8e21e2b6f84799f5dd4b65faf49c8d3ee02d github.com/tonistiigi/fsutil 0ac4c11b053b9c5c7c47558f81f96c7100ce50fb diff --git a/vendor/github.com/docker/docker/api/types/swarm/container.go b/vendor/github.com/docker/docker/api/types/swarm/container.go index 6f8b45f6bb4e..64d5c0b231cf 100644 --- a/vendor/github.com/docker/docker/api/types/swarm/container.go +++ b/vendor/github.com/docker/docker/api/types/swarm/container.go @@ -69,4 +69,5 @@ type ContainerSpec struct { DNSConfig *DNSConfig `json:",omitempty"` Secrets []*SecretReference `json:",omitempty"` Configs []*ConfigReference `json:",omitempty"` + Isolation string `json:",omitempty"` } diff --git a/vendor/github.com/docker/docker/daemon/cluster/convert/container.go b/vendor/github.com/docker/docker/daemon/cluster/convert/container.go index 795e944ae164..59e94cd5dec2 100644 --- a/vendor/github.com/docker/docker/daemon/cluster/convert/container.go +++ b/vendor/github.com/docker/docker/daemon/cluster/convert/container.go @@ -34,6 +34,7 @@ func containerSpecFromGRPC(c *swarmapi.ContainerSpec) *types.ContainerSpec { Hosts: c.Hosts, Secrets: secretReferencesFromGRPC(c.Secrets), Configs: configReferencesFromGRPC(c.Configs), + Isolation: c.Isolation, } if c.DNSConfig != nil { @@ -232,6 +233,7 @@ func containerToGRPC(c *types.ContainerSpec) (*swarmapi.ContainerSpec, error) { Hosts: c.Hosts, Secrets: secretReferencesToGRPC(c.Secrets), Configs: configReferencesToGRPC(c.Configs), + Isolation: c.Isolation, } if c.DNSConfig != nil { diff --git a/vendor/github.com/docker/swarmkit/api/specs.pb.go b/vendor/github.com/docker/swarmkit/api/specs.pb.go index bb9b0db9187f..04bfab6c61d7 100644 --- a/vendor/github.com/docker/swarmkit/api/specs.pb.go +++ b/vendor/github.com/docker/swarmkit/api/specs.pb.go @@ -567,6 +567,10 @@ type ContainerSpec struct { // task will exit and a new task will be rescheduled elsewhere. A container // is considered unhealthy after `Retries` number of consecutive failures. Healthcheck *HealthConfig `protobuf:"bytes,16,opt,name=healthcheck" json:"healthcheck,omitempty"` + // Isolation defines the isolation level for engines supporting multiple isolation modes + // ie: docker on windows server supports "process" or "hyperv" + // on engines that does not support it, value should be either "" or "default" + Isolation string `protobuf:"bytes,23,opt,name=isolation,proto3" json:"isolation,omitempty"` } func (m *ContainerSpec) Reset() { *m = ContainerSpec{} } @@ -1914,6 +1918,14 @@ func (m *ContainerSpec) MarshalTo(dAtA []byte) (int, error) { } i += n23 } + if len(m.Isolation) > 0 { + dAtA[i] = 0xba + i++ + dAtA[i] = 0x1 + i++ + i = encodeVarintSpecs(dAtA, i, uint64(len(m.Isolation))) + i += copy(dAtA[i:], m.Isolation) + } return i, nil } @@ -2620,6 +2632,10 @@ func (m *ContainerSpec) Size() (n int) { l = m.Privileges.Size() n += 2 + l + sovSpecs(uint64(l)) } + l = len(m.Isolation) + if l > 0 { + n += 2 + l + sovSpecs(uint64(l)) + } return n } @@ -2953,6 +2969,7 @@ func (this *ContainerSpec) String() string { `StopSignal:` + fmt.Sprintf("%v", this.StopSignal) + `,`, `Configs:` + strings.Replace(fmt.Sprintf("%v", this.Configs), "ConfigReference", "ConfigReference", 1) + `,`, `Privileges:` + strings.Replace(fmt.Sprintf("%v", this.Privileges), "Privileges", "Privileges", 1) + `,`, + `Isolation:` + fmt.Sprintf("%v", this.Isolation) + `,`, `}`, }, "") return s @@ -4899,6 +4916,35 @@ func (m *ContainerSpec) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 23: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Isolation", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSpecs + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthSpecs + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Isolation = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSpecs(dAtA[iNdEx:]) @@ -6210,123 +6256,124 @@ var ( func init() { proto.RegisterFile("specs.proto", fileDescriptorSpecs) } var fileDescriptorSpecs = []byte{ - // 1880 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcf, 0x73, 0x1b, 0x49, - 0x15, 0xb6, 0x6c, 0x59, 0x3f, 0xde, 0xc8, 0x89, 0xdc, 0x24, 0x61, 0xac, 0xb0, 0xb2, 0xa2, 0x0d, - 0xc1, 0xcb, 0x16, 0x72, 0x61, 0xa8, 0x25, 0xbb, 0x61, 0x01, 0xc9, 0x12, 0x8e, 0x31, 0x76, 0x54, - 0x6d, 0x6f, 0x20, 0x27, 0x55, 0x7b, 0xa6, 0x2d, 0x4d, 0x79, 0xd4, 0x3d, 0xf4, 0xf4, 0x68, 0x4b, - 0x37, 0x8e, 0x5b, 0xb9, 0x72, 0x76, 0x71, 0xa0, 0xf8, 0x5f, 0x72, 0xa4, 0x38, 0xc1, 0xc5, 0x45, - 0xfc, 0x2f, 0x70, 0xe3, 0x02, 0xd5, 0x3d, 0x3d, 0xd2, 0x28, 0x19, 0xc7, 0xa9, 0x22, 0x87, 0xbd, - 0x75, 0xbf, 0xfe, 0xbe, 0xd7, 0xdd, 0xaf, 0xbf, 0xee, 0xf7, 0x1a, 0xac, 0x30, 0xa0, 0x4e, 0xd8, - 0x0a, 0x04, 0x97, 0x1c, 0x21, 0x97, 0x3b, 0xe7, 0x54, 0xb4, 0xc2, 0xaf, 0x89, 0x18, 0x9f, 0x7b, - 0xb2, 0x35, 0xf9, 0x71, 0xcd, 0x92, 0xd3, 0x80, 0x1a, 0x40, 0xed, 0xce, 0x90, 0x0f, 0xb9, 0x6e, - 0x6e, 0xab, 0x96, 0xb1, 0xd6, 0x87, 0x9c, 0x0f, 0x7d, 0xba, 0xad, 0x7b, 0xa7, 0xd1, 0xd9, 0xb6, - 0x1b, 0x09, 0x22, 0x3d, 0xce, 0xcc, 0xf8, 0xc6, 0x9b, 0xe3, 0x84, 0x4d, 0xe3, 0xa1, 0xe6, 0x45, - 0x1e, 0x4a, 0x47, 0xdc, 0xa5, 0xc7, 0x01, 0x75, 0xd0, 0x1e, 0x58, 0x84, 0x31, 0x2e, 0x35, 0x37, - 0xb4, 0x73, 0x8d, 0xdc, 0x96, 0xb5, 0xb3, 0xd9, 0x7a, 0x7b, 0x51, 0xad, 0xf6, 0x1c, 0xd6, 0xc9, - 0xbf, 0xba, 0xdc, 0x5c, 0xc2, 0x69, 0x26, 0xfa, 0x25, 0x54, 0x5c, 0x1a, 0x7a, 0x82, 0xba, 0x03, - 0xc1, 0x7d, 0x6a, 0x2f, 0x37, 0x72, 0x5b, 0xb7, 0x76, 0xbe, 0x97, 0xe5, 0x49, 0x4d, 0x8e, 0xb9, - 0x4f, 0xb1, 0x65, 0x18, 0xaa, 0x83, 0xf6, 0x00, 0xc6, 0x74, 0x7c, 0x4a, 0x45, 0x38, 0xf2, 0x02, - 0x7b, 0x45, 0xd3, 0x7f, 0x70, 0x1d, 0x5d, 0xad, 0xbd, 0x75, 0x38, 0x83, 0xe3, 0x14, 0x15, 0x1d, - 0x42, 0x85, 0x4c, 0x88, 0xe7, 0x93, 0x53, 0xcf, 0xf7, 0xe4, 0xd4, 0xce, 0x6b, 0x57, 0x9f, 0xbc, - 0xd3, 0x55, 0x3b, 0x45, 0xc0, 0x0b, 0xf4, 0xa6, 0x0b, 0x30, 0x9f, 0x08, 0x3d, 0x82, 0x62, 0xbf, - 0x77, 0xd4, 0xdd, 0x3f, 0xda, 0xab, 0x2e, 0xd5, 0x36, 0x5e, 0x5e, 0x34, 0xee, 0x2a, 0x1f, 0x73, - 0x40, 0x9f, 0x32, 0xd7, 0x63, 0x43, 0xb4, 0x05, 0xa5, 0xf6, 0xee, 0x6e, 0xaf, 0x7f, 0xd2, 0xeb, - 0x56, 0x73, 0xb5, 0xda, 0xcb, 0x8b, 0xc6, 0xbd, 0x45, 0x60, 0xdb, 0x71, 0x68, 0x20, 0xa9, 0x5b, - 0xcb, 0x7f, 0xf3, 0x97, 0xfa, 0x52, 0xf3, 0x9b, 0x1c, 0x54, 0xd2, 0x8b, 0x40, 0x8f, 0xa0, 0xd0, - 0xde, 0x3d, 0xd9, 0x7f, 0xde, 0xab, 0x2e, 0xcd, 0xe9, 0x69, 0x44, 0xdb, 0x91, 0xde, 0x84, 0xa2, - 0x87, 0xb0, 0xda, 0x6f, 0x7f, 0x75, 0xdc, 0xab, 0xe6, 0xe6, 0xcb, 0x49, 0xc3, 0xfa, 0x24, 0x0a, - 0x35, 0xaa, 0x8b, 0xdb, 0xfb, 0x47, 0xd5, 0xe5, 0x6c, 0x54, 0x57, 0x10, 0x8f, 0x99, 0xa5, 0xfc, - 0x39, 0x0f, 0xd6, 0x31, 0x15, 0x13, 0xcf, 0xf9, 0xc0, 0x12, 0xf9, 0x0c, 0xf2, 0x92, 0x84, 0xe7, - 0x5a, 0x1a, 0x56, 0xb6, 0x34, 0x4e, 0x48, 0x78, 0xae, 0x26, 0x35, 0x74, 0x8d, 0x57, 0xca, 0x10, - 0x34, 0xf0, 0x3d, 0x87, 0x48, 0xea, 0x6a, 0x65, 0x58, 0x3b, 0xdf, 0xcf, 0x62, 0xe3, 0x19, 0xca, - 0xac, 0xff, 0xe9, 0x12, 0x4e, 0x51, 0xd1, 0x13, 0x28, 0x0c, 0x7d, 0x7e, 0x4a, 0x7c, 0xad, 0x09, - 0x6b, 0xe7, 0x41, 0x96, 0x93, 0x3d, 0x8d, 0x98, 0x3b, 0x30, 0x14, 0xf4, 0x18, 0x0a, 0x51, 0xe0, - 0x12, 0x49, 0xed, 0x82, 0x26, 0x37, 0xb2, 0xc8, 0x5f, 0x69, 0xc4, 0x2e, 0x67, 0x67, 0xde, 0x10, - 0x1b, 0x3c, 0x3a, 0x80, 0x12, 0xa3, 0xf2, 0x6b, 0x2e, 0xce, 0x43, 0xbb, 0xd8, 0x58, 0xd9, 0xb2, - 0x76, 0x3e, 0xcd, 0x14, 0x63, 0x8c, 0x69, 0x4b, 0x49, 0x9c, 0xd1, 0x98, 0x32, 0x19, 0xbb, 0xe9, - 0x2c, 0xdb, 0x39, 0x3c, 0x73, 0x80, 0x7e, 0x0e, 0x25, 0xca, 0xdc, 0x80, 0x7b, 0x4c, 0xda, 0xa5, - 0xeb, 0x17, 0xd2, 0x33, 0x18, 0x15, 0x4c, 0x3c, 0x63, 0x28, 0xb6, 0xe0, 0xbe, 0x7f, 0x4a, 0x9c, - 0x73, 0xbb, 0xfc, 0x9e, 0xdb, 0x98, 0x31, 0x3a, 0x05, 0xc8, 0x8f, 0xb9, 0x4b, 0x9b, 0xdb, 0xb0, - 0xfe, 0x56, 0xa8, 0x51, 0x0d, 0x4a, 0x26, 0xd4, 0xb1, 0x46, 0xf2, 0x78, 0xd6, 0x6f, 0xde, 0x86, - 0xb5, 0x85, 0xb0, 0x36, 0xff, 0x9e, 0x87, 0x52, 0x72, 0xd6, 0xa8, 0x0d, 0x65, 0x87, 0x33, 0x49, - 0x3c, 0x46, 0x85, 0x91, 0x57, 0xe6, 0xc9, 0xec, 0x26, 0x20, 0xc5, 0x7a, 0xba, 0x84, 0xe7, 0x2c, - 0xf4, 0x6b, 0x28, 0x0b, 0x1a, 0xf2, 0x48, 0x38, 0x34, 0x34, 0xfa, 0xda, 0xca, 0x56, 0x48, 0x0c, - 0xc2, 0xf4, 0x0f, 0x91, 0x27, 0xa8, 0x8a, 0x72, 0x88, 0xe7, 0x54, 0xf4, 0x04, 0x8a, 0x82, 0x86, - 0x92, 0x08, 0xf9, 0x2e, 0x89, 0xe0, 0x18, 0xd2, 0xe7, 0xbe, 0xe7, 0x4c, 0x71, 0xc2, 0x40, 0x4f, - 0xa0, 0x1c, 0xf8, 0xc4, 0xd1, 0x5e, 0xed, 0x55, 0x4d, 0xff, 0x28, 0x8b, 0xde, 0x4f, 0x40, 0x78, - 0x8e, 0x47, 0x9f, 0x03, 0xf8, 0x7c, 0x38, 0x70, 0x85, 0x37, 0xa1, 0xc2, 0x48, 0xac, 0x96, 0xc5, - 0xee, 0x6a, 0x04, 0x2e, 0xfb, 0x7c, 0x18, 0x37, 0xd1, 0xde, 0xff, 0xa5, 0xaf, 0x94, 0xb6, 0x0e, - 0x00, 0xc8, 0x6c, 0xd4, 0xa8, 0xeb, 0x93, 0xf7, 0x72, 0x65, 0x4e, 0x24, 0x45, 0x47, 0x0f, 0xa0, - 0x72, 0xc6, 0x85, 0x43, 0x07, 0xe6, 0xd6, 0x94, 0xb5, 0x26, 0x2c, 0x6d, 0x8b, 0xf5, 0x85, 0x3a, - 0x50, 0x1c, 0x52, 0x46, 0x85, 0xe7, 0xd8, 0xa0, 0x27, 0x7b, 0x94, 0x79, 0x21, 0x63, 0x08, 0x8e, - 0x98, 0xf4, 0xc6, 0xd4, 0xcc, 0x94, 0x10, 0x3b, 0x65, 0x28, 0x8a, 0x78, 0xa4, 0xf9, 0x7b, 0x40, - 0x6f, 0x63, 0x11, 0x82, 0xfc, 0xb9, 0xc7, 0x5c, 0x2d, 0xac, 0x32, 0xd6, 0x6d, 0xd4, 0x82, 0x62, - 0x40, 0xa6, 0x3e, 0x27, 0xae, 0x11, 0xcb, 0x9d, 0x56, 0x9c, 0x2f, 0x5b, 0x49, 0xbe, 0x6c, 0xb5, - 0xd9, 0x14, 0x27, 0xa0, 0xe6, 0x01, 0xdc, 0xcd, 0xdc, 0x32, 0xda, 0x81, 0xca, 0x4c, 0x84, 0x03, - 0xcf, 0x4c, 0xd2, 0xb9, 0x7d, 0x75, 0xb9, 0x69, 0xcd, 0xd4, 0xba, 0xdf, 0xc5, 0xd6, 0x0c, 0xb4, - 0xef, 0x36, 0xff, 0x54, 0x86, 0xb5, 0x05, 0x29, 0xa3, 0x3b, 0xb0, 0xea, 0x8d, 0xc9, 0x90, 0x9a, - 0x35, 0xc6, 0x1d, 0xd4, 0x83, 0x82, 0x4f, 0x4e, 0xa9, 0xaf, 0x04, 0xad, 0x0e, 0xf5, 0x47, 0x37, - 0xde, 0x89, 0xd6, 0x6f, 0x35, 0xbe, 0xc7, 0xa4, 0x98, 0x62, 0x43, 0x46, 0x36, 0x14, 0x1d, 0x3e, - 0x1e, 0x13, 0xa6, 0x9e, 0xce, 0x95, 0xad, 0x32, 0x4e, 0xba, 0x2a, 0x32, 0x44, 0x0c, 0x43, 0x3b, - 0xaf, 0xcd, 0xba, 0x8d, 0xaa, 0xb0, 0x42, 0xd9, 0xc4, 0x5e, 0xd5, 0x26, 0xd5, 0x54, 0x16, 0xd7, - 0x8b, 0x15, 0x59, 0xc6, 0xaa, 0xa9, 0x78, 0x51, 0x48, 0x85, 0x5d, 0x8c, 0x23, 0xaa, 0xda, 0xe8, - 0x67, 0x50, 0x18, 0xf3, 0x88, 0xc9, 0xd0, 0x2e, 0xe9, 0xc5, 0x6e, 0x64, 0x2d, 0xf6, 0x50, 0x21, - 0xcc, 0xd3, 0x6e, 0xe0, 0xa8, 0x07, 0xeb, 0xa1, 0xe4, 0xc1, 0x60, 0x28, 0x88, 0x43, 0x07, 0x01, - 0x15, 0x1e, 0x77, 0xcd, 0xd3, 0xb4, 0xf1, 0xd6, 0xa1, 0x74, 0x4d, 0x91, 0x83, 0x6f, 0x2b, 0xce, - 0x9e, 0xa2, 0xf4, 0x35, 0x03, 0xf5, 0xa1, 0x12, 0x44, 0xbe, 0x3f, 0xe0, 0x41, 0x9c, 0xa5, 0x62, - 0x3d, 0xbd, 0x47, 0xc8, 0xfa, 0x91, 0xef, 0x3f, 0x8b, 0x49, 0xd8, 0x0a, 0xe6, 0x1d, 0x74, 0x0f, - 0x0a, 0x43, 0xc1, 0xa3, 0x20, 0xb4, 0x2d, 0x1d, 0x0c, 0xd3, 0x43, 0x5f, 0x42, 0x31, 0xa4, 0x8e, - 0xa0, 0x32, 0xb4, 0x2b, 0x7a, 0xab, 0x1f, 0x67, 0x4d, 0x72, 0xac, 0x21, 0x98, 0x9e, 0x51, 0x41, - 0x99, 0x43, 0x71, 0xc2, 0x41, 0x1b, 0xb0, 0x22, 0xe5, 0xd4, 0x5e, 0x6b, 0xe4, 0xb6, 0x4a, 0x9d, - 0xe2, 0xd5, 0xe5, 0xe6, 0xca, 0xc9, 0xc9, 0x0b, 0xac, 0x6c, 0xea, 0x05, 0x1d, 0xf1, 0x50, 0x32, - 0x32, 0xa6, 0xf6, 0x2d, 0x1d, 0xdb, 0x59, 0x1f, 0xbd, 0x00, 0x70, 0x59, 0x38, 0x70, 0xf4, 0x95, - 0xb5, 0x6f, 0xeb, 0xdd, 0x7d, 0x7a, 0xf3, 0xee, 0xba, 0x47, 0xc7, 0x26, 0x8b, 0xac, 0x5d, 0x5d, - 0x6e, 0x96, 0x67, 0x5d, 0x5c, 0x76, 0x59, 0x18, 0x37, 0x51, 0x07, 0xac, 0x11, 0x25, 0xbe, 0x1c, - 0x39, 0x23, 0xea, 0x9c, 0xdb, 0xd5, 0xeb, 0xd3, 0xc2, 0x53, 0x0d, 0x33, 0x1e, 0xd2, 0x24, 0xa5, - 0x60, 0xb5, 0xd4, 0xd0, 0x5e, 0xd7, 0xb1, 0x8a, 0x3b, 0xe8, 0x23, 0x00, 0x1e, 0x50, 0x36, 0x08, - 0xa5, 0xeb, 0x31, 0x1b, 0xa9, 0x2d, 0xe3, 0xb2, 0xb2, 0x1c, 0x2b, 0x03, 0xba, 0xaf, 0x1e, 0x6d, - 0xe2, 0x0e, 0x38, 0xf3, 0xa7, 0xf6, 0x77, 0xf4, 0x68, 0x49, 0x19, 0x9e, 0x31, 0x7f, 0x8a, 0x36, - 0xc1, 0xd2, 0xba, 0x08, 0xbd, 0x21, 0x23, 0xbe, 0x7d, 0x47, 0xc7, 0x03, 0x94, 0xe9, 0x58, 0x5b, - 0xd4, 0x39, 0xc4, 0xd1, 0x08, 0xed, 0xbb, 0xd7, 0x9f, 0x83, 0x59, 0xec, 0xfc, 0x1c, 0x0c, 0x07, - 0xfd, 0x02, 0x20, 0x10, 0xde, 0xc4, 0xf3, 0xe9, 0x90, 0x86, 0xf6, 0x3d, 0xbd, 0xe9, 0x7a, 0xe6, - 0x6b, 0x3d, 0x43, 0xe1, 0x14, 0xa3, 0xf6, 0x39, 0x58, 0xa9, 0xdb, 0xa6, 0x6e, 0xc9, 0x39, 0x9d, - 0x9a, 0x0b, 0xac, 0x9a, 0x2a, 0x24, 0x13, 0xe2, 0x47, 0x71, 0x25, 0x5c, 0xc6, 0x71, 0xe7, 0x8b, - 0xe5, 0xc7, 0xb9, 0xda, 0x0e, 0x58, 0x29, 0xd5, 0xa1, 0x8f, 0x61, 0x4d, 0xd0, 0xa1, 0x17, 0x4a, - 0x31, 0x1d, 0x90, 0x48, 0x8e, 0xec, 0x5f, 0x69, 0x42, 0x25, 0x31, 0xb6, 0x23, 0x39, 0xaa, 0x0d, - 0x60, 0x7e, 0x78, 0xa8, 0x01, 0x96, 0x12, 0x45, 0x48, 0xc5, 0x84, 0x0a, 0x95, 0x6d, 0x55, 0xcc, - 0xd3, 0x26, 0x25, 0xde, 0x90, 0x12, 0xe1, 0x8c, 0xf4, 0xdb, 0x51, 0xc6, 0xa6, 0xa7, 0x1e, 0x83, - 0xe4, 0x86, 0x98, 0xc7, 0xc0, 0x74, 0x9b, 0xff, 0xce, 0x41, 0x25, 0x5d, 0x34, 0xa0, 0xdd, 0x38, - 0xd9, 0xeb, 0x2d, 0xdd, 0xda, 0xd9, 0xbe, 0xa9, 0xc8, 0xd0, 0xa9, 0xd5, 0x8f, 0x94, 0xb3, 0x43, - 0x55, 0xdf, 0x6b, 0x32, 0xfa, 0x29, 0xac, 0x06, 0x5c, 0xc8, 0xe4, 0x09, 0xcb, 0x0e, 0x30, 0x17, - 0x49, 0x2a, 0x8a, 0xc1, 0xcd, 0x11, 0xdc, 0x5a, 0xf4, 0x86, 0x1e, 0xc2, 0xca, 0xf3, 0xfd, 0x7e, - 0x75, 0xa9, 0x76, 0xff, 0xe5, 0x45, 0xe3, 0xbb, 0x8b, 0x83, 0xcf, 0x3d, 0x21, 0x23, 0xe2, 0xef, - 0xf7, 0xd1, 0x0f, 0x61, 0xb5, 0x7b, 0x74, 0x8c, 0x71, 0x35, 0x57, 0xdb, 0x7c, 0x79, 0xd1, 0xb8, - 0xbf, 0x88, 0x53, 0x43, 0x3c, 0x62, 0x2e, 0xe6, 0xa7, 0xb3, 0x5a, 0xf7, 0x3f, 0xcb, 0x60, 0x99, - 0x97, 0xfd, 0x43, 0x7f, 0x87, 0xd6, 0xe2, 0x54, 0x9e, 0x5c, 0xd9, 0xe5, 0x1b, 0x33, 0x7a, 0x25, - 0x26, 0x98, 0x33, 0x7e, 0x00, 0x15, 0x2f, 0x98, 0x7c, 0x36, 0xa0, 0x8c, 0x9c, 0xfa, 0xa6, 0xec, - 0x2d, 0x61, 0x4b, 0xd9, 0x7a, 0xb1, 0x49, 0xbd, 0x17, 0x1e, 0x93, 0x54, 0x30, 0x53, 0xd0, 0x96, - 0xf0, 0xac, 0x8f, 0xbe, 0x84, 0xbc, 0x17, 0x90, 0xb1, 0x29, 0x43, 0x32, 0x77, 0xb0, 0xdf, 0x6f, - 0x1f, 0x1a, 0x0d, 0x76, 0x4a, 0x57, 0x97, 0x9b, 0x79, 0x65, 0xc0, 0x9a, 0x86, 0xea, 0x49, 0x25, - 0xa0, 0x66, 0xd2, 0x6f, 0x7f, 0x09, 0xa7, 0x2c, 0x4a, 0x47, 0x1e, 0x1b, 0x0a, 0x1a, 0x86, 0x3a, - 0x0b, 0x94, 0x70, 0xd2, 0x45, 0x35, 0x28, 0x9a, 0x7a, 0x42, 0x17, 0x10, 0x65, 0x95, 0xab, 0x8d, - 0xa1, 0xb3, 0x06, 0x56, 0x1c, 0x8d, 0xc1, 0x99, 0xe0, 0xe3, 0xe6, 0x7f, 0xf3, 0x60, 0xed, 0xfa, - 0x51, 0x28, 0x4d, 0x1a, 0xfc, 0x60, 0xc1, 0x7f, 0x01, 0xeb, 0x44, 0x7f, 0xaf, 0x08, 0x53, 0x39, - 0x45, 0x97, 0x69, 0xe6, 0x00, 0x1e, 0x66, 0xba, 0x9b, 0x81, 0xe3, 0x92, 0xae, 0x53, 0x50, 0x3e, - 0xed, 0x1c, 0xae, 0x92, 0x37, 0x46, 0xd0, 0x31, 0xac, 0x71, 0xe1, 0x8c, 0x68, 0x28, 0xe3, 0x4c, - 0x64, 0xbe, 0x23, 0x99, 0x1f, 0xd5, 0x67, 0x69, 0xa0, 0x79, 0x86, 0xe3, 0xd5, 0x2e, 0xfa, 0x40, - 0x8f, 0x21, 0x2f, 0xc8, 0x59, 0x52, 0x72, 0x66, 0x5e, 0x12, 0x4c, 0xce, 0xe4, 0x82, 0x0b, 0xcd, - 0x40, 0xbf, 0x01, 0x70, 0xbd, 0x30, 0x20, 0xd2, 0x19, 0x51, 0x61, 0x0e, 0x3b, 0x73, 0x8b, 0xdd, - 0x19, 0x6a, 0xc1, 0x4b, 0x8a, 0x8d, 0x0e, 0xa0, 0xec, 0x90, 0x44, 0xae, 0x85, 0xeb, 0xff, 0x68, + // 1896 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4f, 0x73, 0x1b, 0x49, + 0x15, 0xb7, 0x6c, 0x59, 0x7f, 0xde, 0xc8, 0x89, 0xdc, 0x24, 0xd9, 0xb1, 0xb2, 0x2b, 0x2b, 0xda, + 0x10, 0xbc, 0x6c, 0x21, 0x17, 0x86, 0x5a, 0xb2, 0x1b, 0x16, 0x90, 0x2c, 0xe1, 0x18, 0x63, 0x47, + 0xd5, 0xf6, 0x06, 0x72, 0x52, 0xb5, 0x67, 0xda, 0xd2, 0x94, 0x47, 0xdd, 0x43, 0x4f, 0x8f, 0xb6, + 0x74, 0xe3, 0xb8, 0x95, 0xef, 0xe0, 0xe2, 0x40, 0xf1, 0x01, 0xf8, 0x16, 0x39, 0x52, 0x9c, 0xe0, + 0xe2, 0x62, 0xfd, 0x15, 0xb8, 0x71, 0x81, 0xea, 0x9e, 0x1e, 0x69, 0x94, 0x8c, 0xe3, 0x54, 0x91, + 0xc3, 0xde, 0xba, 0x5f, 0xff, 0x7e, 0x6f, 0x5e, 0xbf, 0xfe, 0x75, 0xbf, 0x37, 0x60, 0x85, 0x01, + 0x75, 0xc2, 0x56, 0x20, 0xb8, 0xe4, 0x08, 0xb9, 0xdc, 0x39, 0xa7, 0xa2, 0x15, 0x7e, 0x4d, 0xc4, + 0xf8, 0xdc, 0x93, 0xad, 0xc9, 0x8f, 0x6b, 0x96, 0x9c, 0x06, 0xd4, 0x00, 0x6a, 0x77, 0x86, 0x7c, + 0xc8, 0xf5, 0x70, 0x5b, 0x8d, 0x8c, 0xb5, 0x3e, 0xe4, 0x7c, 0xe8, 0xd3, 0x6d, 0x3d, 0x3b, 0x8d, + 0xce, 0xb6, 0xdd, 0x48, 0x10, 0xe9, 0x71, 0x66, 0xd6, 0x37, 0x5e, 0x5f, 0x27, 0x6c, 0x1a, 0x2f, + 0x35, 0x2f, 0xf2, 0x50, 0x3a, 0xe2, 0x2e, 0x3d, 0x0e, 0xa8, 0x83, 0xf6, 0xc0, 0x22, 0x8c, 0x71, + 0xa9, 0xb9, 0xa1, 0x9d, 0x6b, 0xe4, 0xb6, 0xac, 0x9d, 0xcd, 0xd6, 0x9b, 0x41, 0xb5, 0xda, 0x73, + 0x58, 0x27, 0xff, 0xea, 0x72, 0x73, 0x09, 0xa7, 0x99, 0xe8, 0x97, 0x50, 0x71, 0x69, 0xe8, 0x09, + 0xea, 0x0e, 0x04, 0xf7, 0xa9, 0xbd, 0xdc, 0xc8, 0x6d, 0xdd, 0xda, 0xf9, 0x30, 0xcb, 0x93, 0xfa, + 0x38, 0xe6, 0x3e, 0xc5, 0x96, 0x61, 0xa8, 0x09, 0xda, 0x03, 0x18, 0xd3, 0xf1, 0x29, 0x15, 0xe1, + 0xc8, 0x0b, 0xec, 0x15, 0x4d, 0xff, 0xc1, 0x75, 0x74, 0x15, 0x7b, 0xeb, 0x70, 0x06, 0xc7, 0x29, + 0x2a, 0x3a, 0x84, 0x0a, 0x99, 0x10, 0xcf, 0x27, 0xa7, 0x9e, 0xef, 0xc9, 0xa9, 0x9d, 0xd7, 0xae, + 0x3e, 0x79, 0xab, 0xab, 0x76, 0x8a, 0x80, 0x17, 0xe8, 0x4d, 0x17, 0x60, 0xfe, 0x21, 0xf4, 0x08, + 0x8a, 0xfd, 0xde, 0x51, 0x77, 0xff, 0x68, 0xaf, 0xba, 0x54, 0xdb, 0x78, 0x79, 0xd1, 0xb8, 0xab, + 0x7c, 0xcc, 0x01, 0x7d, 0xca, 0x5c, 0x8f, 0x0d, 0xd1, 0x16, 0x94, 0xda, 0xbb, 0xbb, 0xbd, 0xfe, + 0x49, 0xaf, 0x5b, 0xcd, 0xd5, 0x6a, 0x2f, 0x2f, 0x1a, 0xf7, 0x16, 0x81, 0x6d, 0xc7, 0xa1, 0x81, + 0xa4, 0x6e, 0x2d, 0xff, 0xcd, 0x9f, 0xeb, 0x4b, 0xcd, 0x6f, 0x72, 0x50, 0x49, 0x07, 0x81, 0x1e, + 0x41, 0xa1, 0xbd, 0x7b, 0xb2, 0xff, 0xbc, 0x57, 0x5d, 0x9a, 0xd3, 0xd3, 0x88, 0xb6, 0x23, 0xbd, + 0x09, 0x45, 0x0f, 0x61, 0xb5, 0xdf, 0xfe, 0xea, 0xb8, 0x57, 0xcd, 0xcd, 0xc3, 0x49, 0xc3, 0xfa, + 0x24, 0x0a, 0x35, 0xaa, 0x8b, 0xdb, 0xfb, 0x47, 0xd5, 0xe5, 0x6c, 0x54, 0x57, 0x10, 0x8f, 0x99, + 0x50, 0xfe, 0x94, 0x07, 0xeb, 0x98, 0x8a, 0x89, 0xe7, 0xbc, 0x67, 0x89, 0x7c, 0x06, 0x79, 0x49, + 0xc2, 0x73, 0x2d, 0x0d, 0x2b, 0x5b, 0x1a, 0x27, 0x24, 0x3c, 0x57, 0x1f, 0x35, 0x74, 0x8d, 0x57, + 0xca, 0x10, 0x34, 0xf0, 0x3d, 0x87, 0x48, 0xea, 0x6a, 0x65, 0x58, 0x3b, 0xdf, 0xcf, 0x62, 0xe3, + 0x19, 0xca, 0xc4, 0xff, 0x74, 0x09, 0xa7, 0xa8, 0xe8, 0x09, 0x14, 0x86, 0x3e, 0x3f, 0x25, 0xbe, + 0xd6, 0x84, 0xb5, 0xf3, 0x20, 0xcb, 0xc9, 0x9e, 0x46, 0xcc, 0x1d, 0x18, 0x0a, 0x7a, 0x0c, 0x85, + 0x28, 0x70, 0x89, 0xa4, 0x76, 0x41, 0x93, 0x1b, 0x59, 0xe4, 0xaf, 0x34, 0x62, 0x97, 0xb3, 0x33, + 0x6f, 0x88, 0x0d, 0x1e, 0x1d, 0x40, 0x89, 0x51, 0xf9, 0x35, 0x17, 0xe7, 0xa1, 0x5d, 0x6c, 0xac, + 0x6c, 0x59, 0x3b, 0x9f, 0x66, 0x8a, 0x31, 0xc6, 0xb4, 0xa5, 0x24, 0xce, 0x68, 0x4c, 0x99, 0x8c, + 0xdd, 0x74, 0x96, 0xed, 0x1c, 0x9e, 0x39, 0x40, 0x3f, 0x87, 0x12, 0x65, 0x6e, 0xc0, 0x3d, 0x26, + 0xed, 0xd2, 0xf5, 0x81, 0xf4, 0x0c, 0x46, 0x25, 0x13, 0xcf, 0x18, 0x8a, 0x2d, 0xb8, 0xef, 0x9f, + 0x12, 0xe7, 0xdc, 0x2e, 0xbf, 0xe3, 0x36, 0x66, 0x8c, 0x4e, 0x01, 0xf2, 0x63, 0xee, 0xd2, 0xe6, + 0x36, 0xac, 0xbf, 0x91, 0x6a, 0x54, 0x83, 0x92, 0x49, 0x75, 0xac, 0x91, 0x3c, 0x9e, 0xcd, 0x9b, + 0xb7, 0x61, 0x6d, 0x21, 0xad, 0xcd, 0xbf, 0xe7, 0xa1, 0x94, 0x9c, 0x35, 0x6a, 0x43, 0xd9, 0xe1, + 0x4c, 0x12, 0x8f, 0x51, 0x61, 0xe4, 0x95, 0x79, 0x32, 0xbb, 0x09, 0x48, 0xb1, 0x9e, 0x2e, 0xe1, + 0x39, 0x0b, 0xfd, 0x1a, 0xca, 0x82, 0x86, 0x3c, 0x12, 0x0e, 0x0d, 0x8d, 0xbe, 0xb6, 0xb2, 0x15, + 0x12, 0x83, 0x30, 0xfd, 0x43, 0xe4, 0x09, 0xaa, 0xb2, 0x1c, 0xe2, 0x39, 0x15, 0x3d, 0x81, 0xa2, + 0xa0, 0xa1, 0x24, 0x42, 0xbe, 0x4d, 0x22, 0x38, 0x86, 0xf4, 0xb9, 0xef, 0x39, 0x53, 0x9c, 0x30, + 0xd0, 0x13, 0x28, 0x07, 0x3e, 0x71, 0xb4, 0x57, 0x7b, 0x55, 0xd3, 0x3f, 0xca, 0xa2, 0xf7, 0x13, + 0x10, 0x9e, 0xe3, 0xd1, 0xe7, 0x00, 0x3e, 0x1f, 0x0e, 0x5c, 0xe1, 0x4d, 0xa8, 0x30, 0x12, 0xab, + 0x65, 0xb1, 0xbb, 0x1a, 0x81, 0xcb, 0x3e, 0x1f, 0xc6, 0x43, 0xb4, 0xf7, 0x7f, 0xe9, 0x2b, 0xa5, + 0xad, 0x03, 0x00, 0x32, 0x5b, 0x35, 0xea, 0xfa, 0xe4, 0x9d, 0x5c, 0x99, 0x13, 0x49, 0xd1, 0xd1, + 0x03, 0xa8, 0x9c, 0x71, 0xe1, 0xd0, 0x81, 0xb9, 0x35, 0x65, 0xad, 0x09, 0x4b, 0xdb, 0x62, 0x7d, + 0xa1, 0x0e, 0x14, 0x87, 0x94, 0x51, 0xe1, 0x39, 0x36, 0xe8, 0x8f, 0x3d, 0xca, 0xbc, 0x90, 0x31, + 0x04, 0x47, 0x4c, 0x7a, 0x63, 0x6a, 0xbe, 0x94, 0x10, 0x3b, 0x65, 0x28, 0x8a, 0x78, 0xa5, 0xf9, + 0x7b, 0x40, 0x6f, 0x62, 0x11, 0x82, 0xfc, 0xb9, 0xc7, 0x5c, 0x2d, 0xac, 0x32, 0xd6, 0x63, 0xd4, + 0x82, 0x62, 0x40, 0xa6, 0x3e, 0x27, 0xae, 0x11, 0xcb, 0x9d, 0x56, 0x5c, 0x2f, 0x5b, 0x49, 0xbd, + 0x6c, 0xb5, 0xd9, 0x14, 0x27, 0xa0, 0xe6, 0x01, 0xdc, 0xcd, 0xdc, 0x32, 0xda, 0x81, 0xca, 0x4c, + 0x84, 0x03, 0xcf, 0x7c, 0xa4, 0x73, 0xfb, 0xea, 0x72, 0xd3, 0x9a, 0xa9, 0x75, 0xbf, 0x8b, 0xad, + 0x19, 0x68, 0xdf, 0x6d, 0xfe, 0xb5, 0x0c, 0x6b, 0x0b, 0x52, 0x46, 0x77, 0x60, 0xd5, 0x1b, 0x93, + 0x21, 0x35, 0x31, 0xc6, 0x13, 0xd4, 0x83, 0x82, 0x4f, 0x4e, 0xa9, 0xaf, 0x04, 0xad, 0x0e, 0xf5, + 0x47, 0x37, 0xde, 0x89, 0xd6, 0x6f, 0x35, 0xbe, 0xc7, 0xa4, 0x98, 0x62, 0x43, 0x46, 0x36, 0x14, + 0x1d, 0x3e, 0x1e, 0x13, 0xa6, 0x9e, 0xce, 0x95, 0xad, 0x32, 0x4e, 0xa6, 0x2a, 0x33, 0x44, 0x0c, + 0x43, 0x3b, 0xaf, 0xcd, 0x7a, 0x8c, 0xaa, 0xb0, 0x42, 0xd9, 0xc4, 0x5e, 0xd5, 0x26, 0x35, 0x54, + 0x16, 0xd7, 0x8b, 0x15, 0x59, 0xc6, 0x6a, 0xa8, 0x78, 0x51, 0x48, 0x85, 0x5d, 0x8c, 0x33, 0xaa, + 0xc6, 0xe8, 0x67, 0x50, 0x18, 0xf3, 0x88, 0xc9, 0xd0, 0x2e, 0xe9, 0x60, 0x37, 0xb2, 0x82, 0x3d, + 0x54, 0x08, 0xf3, 0xb4, 0x1b, 0x38, 0xea, 0xc1, 0x7a, 0x28, 0x79, 0x30, 0x18, 0x0a, 0xe2, 0xd0, + 0x41, 0x40, 0x85, 0xc7, 0x5d, 0xf3, 0x34, 0x6d, 0xbc, 0x71, 0x28, 0x5d, 0xd3, 0xe4, 0xe0, 0xdb, + 0x8a, 0xb3, 0xa7, 0x28, 0x7d, 0xcd, 0x40, 0x7d, 0xa8, 0x04, 0x91, 0xef, 0x0f, 0x78, 0x10, 0x57, + 0xa9, 0x58, 0x4f, 0xef, 0x90, 0xb2, 0x7e, 0xe4, 0xfb, 0xcf, 0x62, 0x12, 0xb6, 0x82, 0xf9, 0x04, + 0xdd, 0x83, 0xc2, 0x50, 0xf0, 0x28, 0x08, 0x6d, 0x4b, 0x27, 0xc3, 0xcc, 0xd0, 0x97, 0x50, 0x0c, + 0xa9, 0x23, 0xa8, 0x0c, 0xed, 0x8a, 0xde, 0xea, 0xc7, 0x59, 0x1f, 0x39, 0xd6, 0x10, 0x4c, 0xcf, + 0xa8, 0xa0, 0xcc, 0xa1, 0x38, 0xe1, 0xa0, 0x0d, 0x58, 0x91, 0x72, 0x6a, 0xaf, 0x35, 0x72, 0x5b, + 0xa5, 0x4e, 0xf1, 0xea, 0x72, 0x73, 0xe5, 0xe4, 0xe4, 0x05, 0x56, 0x36, 0xf5, 0x82, 0x8e, 0x78, + 0x28, 0x19, 0x19, 0x53, 0xfb, 0x96, 0xce, 0xed, 0x6c, 0x8e, 0x5e, 0x00, 0xb8, 0x2c, 0x1c, 0x38, + 0xfa, 0xca, 0xda, 0xb7, 0xf5, 0xee, 0x3e, 0xbd, 0x79, 0x77, 0xdd, 0xa3, 0x63, 0x53, 0x45, 0xd6, + 0xae, 0x2e, 0x37, 0xcb, 0xb3, 0x29, 0x2e, 0xbb, 0x2c, 0x8c, 0x87, 0xa8, 0x03, 0xd6, 0x88, 0x12, + 0x5f, 0x8e, 0x9c, 0x11, 0x75, 0xce, 0xed, 0xea, 0xf5, 0x65, 0xe1, 0xa9, 0x86, 0x19, 0x0f, 0x69, + 0x92, 0x52, 0xb0, 0x0a, 0x35, 0xb4, 0xd7, 0x75, 0xae, 0xe2, 0x09, 0xfa, 0x08, 0x80, 0x07, 0x94, + 0x0d, 0x42, 0xe9, 0x7a, 0xcc, 0x46, 0x6a, 0xcb, 0xb8, 0xac, 0x2c, 0xc7, 0xca, 0x80, 0xee, 0xab, + 0x47, 0x9b, 0xb8, 0x03, 0xce, 0xfc, 0xa9, 0xfd, 0x3d, 0xbd, 0x5a, 0x52, 0x86, 0x67, 0xcc, 0x9f, + 0xa2, 0x4d, 0xb0, 0xb4, 0x2e, 0x42, 0x6f, 0xc8, 0x88, 0x6f, 0xdf, 0xd1, 0xf9, 0x00, 0x65, 0x3a, + 0xd6, 0x16, 0x75, 0x0e, 0x71, 0x36, 0x42, 0xfb, 0xee, 0xf5, 0xe7, 0x60, 0x82, 0x9d, 0x9f, 0x83, + 0xe1, 0xa0, 0x5f, 0x00, 0x04, 0xc2, 0x9b, 0x78, 0x3e, 0x1d, 0xd2, 0xd0, 0xbe, 0xa7, 0x37, 0x5d, + 0xcf, 0x7c, 0xad, 0x67, 0x28, 0x9c, 0x62, 0xa0, 0x0f, 0xa1, 0xec, 0x85, 0xdc, 0xd7, 0x72, 0xb4, + 0x3f, 0xd0, 0xd1, 0xcd, 0x0d, 0xb5, 0xcf, 0xc1, 0x4a, 0xdd, 0x45, 0x75, 0x87, 0xce, 0xe9, 0xd4, + 0x5c, 0x6f, 0x35, 0x54, 0x09, 0x9b, 0x10, 0x3f, 0x8a, 0xfb, 0xe4, 0x32, 0x8e, 0x27, 0x5f, 0x2c, + 0x3f, 0xce, 0xd5, 0x76, 0xc0, 0x4a, 0x69, 0x12, 0x7d, 0x0c, 0x6b, 0x82, 0x0e, 0xbd, 0x50, 0x8a, + 0xe9, 0x80, 0x44, 0x72, 0x64, 0xff, 0x4a, 0x13, 0x2a, 0x89, 0xb1, 0x1d, 0xc9, 0x51, 0x6d, 0x00, + 0xf3, 0xa3, 0x45, 0x0d, 0xb0, 0x94, 0x64, 0x42, 0x2a, 0x26, 0x54, 0xa8, 0x5a, 0xac, 0x4e, 0x24, + 0x6d, 0x52, 0xd2, 0x0e, 0x29, 0x11, 0xce, 0x48, 0xbf, 0x2c, 0x65, 0x6c, 0x66, 0xea, 0xa9, 0x48, + 0xee, 0x8f, 0x79, 0x2a, 0xcc, 0xb4, 0xf9, 0xef, 0x1c, 0x54, 0xd2, 0x2d, 0x05, 0xda, 0x8d, 0x5b, + 0x01, 0xbd, 0xa5, 0x5b, 0x3b, 0xdb, 0x37, 0xb5, 0x20, 0xba, 0xf0, 0xfa, 0x91, 0x72, 0x76, 0xa8, + 0xba, 0x7f, 0x4d, 0x46, 0x3f, 0x85, 0xd5, 0x80, 0x0b, 0x99, 0x3c, 0x70, 0xd9, 0xe9, 0xe7, 0x22, + 0x29, 0x54, 0x31, 0xb8, 0x39, 0x82, 0x5b, 0x8b, 0xde, 0xd0, 0x43, 0x58, 0x79, 0xbe, 0xdf, 0xaf, + 0x2e, 0xd5, 0xee, 0xbf, 0xbc, 0x68, 0x7c, 0xb0, 0xb8, 0xf8, 0xdc, 0x13, 0x32, 0x22, 0xfe, 0x7e, + 0x1f, 0xfd, 0x10, 0x56, 0xbb, 0x47, 0xc7, 0x18, 0x57, 0x73, 0xb5, 0xcd, 0x97, 0x17, 0x8d, 0xfb, + 0x8b, 0x38, 0xb5, 0xc4, 0x23, 0xe6, 0x62, 0x7e, 0x3a, 0xeb, 0x84, 0xff, 0xb3, 0x0c, 0x96, 0x79, + 0xf7, 0xdf, 0xf7, 0xcf, 0xd2, 0x5a, 0x5c, 0xe8, 0x93, 0x0b, 0xbd, 0x7c, 0x63, 0xbd, 0xaf, 0xc4, + 0x04, 0x73, 0xc6, 0x0f, 0xa0, 0xe2, 0x05, 0x93, 0xcf, 0x06, 0x94, 0x91, 0x53, 0xdf, 0x34, 0xc5, + 0x25, 0x6c, 0x29, 0x5b, 0x2f, 0x36, 0xa9, 0xd7, 0xc4, 0x63, 0x92, 0x0a, 0x66, 0xda, 0xdd, 0x12, + 0x9e, 0xcd, 0xd1, 0x97, 0x90, 0xf7, 0x02, 0x32, 0x36, 0x4d, 0x4a, 0xe6, 0x0e, 0xf6, 0xfb, 0xed, + 0x43, 0xa3, 0xc1, 0x4e, 0xe9, 0xea, 0x72, 0x33, 0xaf, 0x0c, 0x58, 0xd3, 0x50, 0x3d, 0xe9, 0x13, + 0xd4, 0x97, 0x74, 0x65, 0x28, 0xe1, 0x94, 0x45, 0xe9, 0xc8, 0x63, 0x43, 0x41, 0xc3, 0x50, 0xd7, + 0x88, 0x12, 0x4e, 0xa6, 0xa8, 0x06, 0x45, 0xd3, 0x6d, 0xe8, 0xf6, 0xa2, 0xac, 0x2a, 0xb9, 0x31, + 0x74, 0xd6, 0xc0, 0x8a, 0xb3, 0x31, 0x38, 0x13, 0x7c, 0xdc, 0xfc, 0x6f, 0x1e, 0xac, 0x5d, 0x3f, + 0x0a, 0xa5, 0x29, 0x92, 0xef, 0x2d, 0xf9, 0x2f, 0x60, 0x9d, 0xe8, 0x9f, 0x2f, 0xc2, 0x54, 0xc5, + 0xd1, 0x4d, 0x9c, 0x39, 0x80, 0x87, 0x99, 0xee, 0x66, 0xe0, 0xb8, 0xe1, 0xeb, 0x14, 0x94, 0x4f, + 0x3b, 0x87, 0xab, 0xe4, 0xb5, 0x15, 0x74, 0x0c, 0x6b, 0x5c, 0x38, 0x23, 0x1a, 0xca, 0xb8, 0x4e, + 0x99, 0x9f, 0x95, 0xcc, 0xdf, 0xd8, 0x67, 0x69, 0xa0, 0x79, 0xa4, 0xe3, 0x68, 0x17, 0x7d, 0xa0, + 0xc7, 0x90, 0x17, 0xe4, 0x2c, 0x69, 0x48, 0x33, 0x2f, 0x09, 0x26, 0x67, 0x72, 0xc1, 0x85, 0x66, + 0xa0, 0xdf, 0x00, 0xb8, 0x5e, 0x18, 0x10, 0xe9, 0x8c, 0xa8, 0x30, 0x87, 0x9d, 0xb9, 0xc5, 0xee, + 0x0c, 0xb5, 0xe0, 0x25, 0xc5, 0x46, 0x07, 0x50, 0x76, 0x48, 0x22, 0xd7, 0xc2, 0xf5, 0x7f, 0x70, 0xbb, 0x6d, 0xe3, 0xa2, 0xaa, 0x5c, 0x5c, 0x5d, 0x6e, 0x96, 0x12, 0x0b, 0x2e, 0x39, 0xc4, 0xc8, - 0xf7, 0x00, 0xd6, 0xd4, 0xdf, 0x6d, 0xe0, 0xd2, 0x33, 0x12, 0xf9, 0x32, 0x96, 0xc9, 0x35, 0x69, - 0x45, 0x7d, 0x04, 0xba, 0x06, 0x67, 0xd6, 0x55, 0x91, 0x29, 0x1b, 0xfa, 0x1d, 0xac, 0x53, 0xe6, - 0x88, 0xa9, 0x16, 0x6b, 0xb2, 0xc2, 0xd2, 0xf5, 0x9b, 0xed, 0xcd, 0xc0, 0x0b, 0x9b, 0xad, 0xd2, - 0x37, 0xec, 0xcd, 0x7f, 0xe6, 0x00, 0xe2, 0x4c, 0xfd, 0x61, 0x05, 0x88, 0x20, 0xef, 0x12, 0x49, - 0xb4, 0xe6, 0x2a, 0x58, 0xb7, 0xd1, 0x17, 0x00, 0x92, 0x8e, 0x03, 0x9f, 0x48, 0x8f, 0x0d, 0x8d, - 0x6c, 0xde, 0xf5, 0x1c, 0xa4, 0xd0, 0x68, 0x07, 0x0a, 0xe6, 0x63, 0x90, 0xbf, 0x91, 0x67, 0x90, - 0xcd, 0xbf, 0xe6, 0x00, 0xe2, 0x6d, 0x7e, 0xab, 0xf7, 0xd6, 0xb1, 0x5f, 0xbd, 0xae, 0x2f, 0xfd, - 0xe3, 0x75, 0x7d, 0xe9, 0x8f, 0x57, 0xf5, 0xdc, 0xab, 0xab, 0x7a, 0xee, 0x6f, 0x57, 0xf5, 0xdc, - 0xbf, 0xae, 0xea, 0xb9, 0xd3, 0x82, 0xae, 0xfb, 0x7e, 0xf2, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, - 0xc1, 0xd8, 0x19, 0x9e, 0x30, 0x13, 0x00, 0x00, + 0xf7, 0x00, 0xd6, 0xd4, 0x9f, 0xdd, 0xc0, 0xa5, 0x67, 0x24, 0xf2, 0x65, 0x2c, 0x93, 0x6b, 0x8a, + 0x8e, 0xfa, 0x4d, 0xe8, 0x1a, 0x9c, 0x89, 0xab, 0x22, 0x53, 0x36, 0xf4, 0x3b, 0x58, 0xa7, 0xcc, + 0x11, 0x53, 0x2d, 0xd6, 0x24, 0xc2, 0xd2, 0xf5, 0x9b, 0xed, 0xcd, 0xc0, 0x0b, 0x9b, 0xad, 0xd2, + 0xd7, 0xec, 0xcd, 0x7f, 0xe6, 0x00, 0xe2, 0x3a, 0xfe, 0x7e, 0x05, 0x88, 0x20, 0xef, 0x12, 0x49, + 0xb4, 0xe6, 0x2a, 0x58, 0x8f, 0xd1, 0x17, 0x00, 0x92, 0x8e, 0x03, 0x55, 0x3e, 0xd8, 0xd0, 0xc8, + 0xe6, 0x6d, 0xcf, 0x41, 0x0a, 0x8d, 0x76, 0xa0, 0x60, 0x7e, 0x1b, 0xf2, 0x37, 0xf2, 0x0c, 0xb2, + 0xf9, 0x97, 0x1c, 0x40, 0xbc, 0xcd, 0xef, 0xf4, 0xde, 0x3a, 0xf6, 0xab, 0x6f, 0xeb, 0x4b, 0xff, + 0xf8, 0xb6, 0xbe, 0xf4, 0xc7, 0xab, 0x7a, 0xee, 0xd5, 0x55, 0x3d, 0xf7, 0xb7, 0xab, 0x7a, 0xee, + 0x5f, 0x57, 0xf5, 0xdc, 0x69, 0x41, 0x77, 0x85, 0x3f, 0xf9, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xb9, 0x74, 0x84, 0x92, 0x4e, 0x13, 0x00, 0x00, } diff --git a/vendor/github.com/docker/swarmkit/api/specs.proto b/vendor/github.com/docker/swarmkit/api/specs.proto index c14ebeb6d3d8..27f841222d62 100644 --- a/vendor/github.com/docker/swarmkit/api/specs.proto +++ b/vendor/github.com/docker/swarmkit/api/specs.proto @@ -278,6 +278,11 @@ message ContainerSpec { // task will exit and a new task will be rescheduled elsewhere. A container // is considered unhealthy after `Retries` number of consecutive failures. HealthConfig healthcheck = 16; + + // Isolation defines the isolation level for engines supporting multiple isolation modes + // ie: docker on windows server supports "process" or "hyperv" + // on engines that does not support it, value should be either "" or "default" + string isolation = 23; } // EndpointSpec defines the properties that can be configured to