From 2167d4494373144ef78b9f96e491cbb45871e6f6 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Thu, 16 Feb 2017 07:43:14 -0800 Subject: [PATCH] Add `StopSignal` to `ContainerSpec` This fix adds `StopSignal` to `ContainerSpec` so that it is possible to implement `--stop-signal` for `docker service create` and `docker service update`. Signed-off-by: Yong Tang --- agent/exec/container/container.go | 1 + agent/exec/container/container_test.go | 18 ++ api/specs.pb.go | 263 +++++++++++++++---------- api/specs.proto | 3 + 4 files changed, 176 insertions(+), 109 deletions(-) diff --git a/agent/exec/container/container.go b/agent/exec/container/container.go index 73caeb0ec0..899c66ef20 100644 --- a/agent/exec/container/container.go +++ b/agent/exec/container/container.go @@ -139,6 +139,7 @@ func (c *containerConfig) exposedPorts() map[nat.Port]struct{} { func (c *containerConfig) config() *enginecontainer.Config { config := &enginecontainer.Config{ Labels: c.labels(), + StopSignal: c.spec().StopSignal, User: c.spec().User, Hostname: c.spec().Hostname, Env: c.spec().Env, diff --git a/agent/exec/container/container_test.go b/agent/exec/container/container_test.go index db15336a81..4d32a3616b 100644 --- a/agent/exec/container/container_test.go +++ b/agent/exec/container/container_test.go @@ -130,3 +130,21 @@ func TestExtraHosts(t *testing.T) { t.Fatalf("expected %s, got %s", expected, actual) } } + +func TestStopSignal(t *testing.T) { + c := containerConfig{ + task: &api.Task{ + Spec: api.TaskSpec{Runtime: &api.TaskSpec_Container{ + Container: &api.ContainerSpec{ + StopSignal: "SIGWINCH", + }, + }}, + }, + } + + expected := "SIGWINCH" + actual := c.config().StopSignal + if actual != expected { + t.Fatalf("expected %s, got %s", expected, actual) + } +} diff --git a/api/specs.pb.go b/api/specs.pb.go index 2e704aa986..d31e4f5d2f 100644 --- a/api/specs.pb.go +++ b/api/specs.pb.go @@ -490,8 +490,10 @@ type ContainerSpec struct { // This only impacts the root filesystem, not additional mounts (including // tmpfs). For additional mounts that are not part of the initial rootfs, // they will be decided by the modes passed in the mount definition. - ReadOnly bool `protobuf:"varint,19,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"` - Mounts []Mount `protobuf:"bytes,8,rep,name=mounts" json:"mounts"` + ReadOnly bool `protobuf:"varint,19,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"` + // StopSignal defines the signal to stop the container. + StopSignal string `protobuf:"bytes,20,opt,name=stop_signal,json=stopSignal,proto3" json:"stop_signal,omitempty"` + Mounts []Mount `protobuf:"bytes,8,rep,name=mounts" json:"mounts"` // StopGracePeriod the grace period for stopping the container before // forcefully killing the container. // Note: Can't use stdduration here because this needs to be nullable. @@ -1585,6 +1587,14 @@ func (m *ContainerSpec) MarshalTo(dAtA []byte) (int, error) { } i++ } + if len(m.StopSignal) > 0 { + dAtA[i] = 0xa2 + i++ + dAtA[i] = 0x1 + i++ + i = encodeVarintSpecs(dAtA, i, uint64(len(m.StopSignal))) + i += copy(dAtA[i:], m.StopSignal) + } return i, nil } @@ -2167,6 +2177,10 @@ func (m *ContainerSpec) Size() (n int) { if m.ReadOnly { n += 3 } + l = len(m.StopSignal) + if l > 0 { + n += 2 + l + sovSpecs(uint64(l)) + } return n } @@ -2439,6 +2453,7 @@ func (this *ContainerSpec) String() string { `Hosts:` + fmt.Sprintf("%v", this.Hosts) + `,`, `OpenStdin:` + fmt.Sprintf("%v", this.OpenStdin) + `,`, `ReadOnly:` + fmt.Sprintf("%v", this.ReadOnly) + `,`, + `StopSignal:` + fmt.Sprintf("%v", this.StopSignal) + `,`, `}`, }, "") return s @@ -4122,6 +4137,35 @@ func (m *ContainerSpec) Unmarshal(dAtA []byte) error { } } m.ReadOnly = bool(v != 0) + case 20: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StopSignal", 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.StopSignal = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSpecs(dAtA[iNdEx:]) @@ -5174,111 +5218,112 @@ var ( func init() { proto.RegisterFile("specs.proto", fileDescriptorSpecs) } var fileDescriptorSpecs = []byte{ - // 1688 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x57, 0x41, 0x73, 0xdb, 0xc6, - 0x15, 0x26, 0x25, 0x8a, 0x04, 0x1f, 0x28, 0x9b, 0xda, 0x26, 0x29, 0x4c, 0x37, 0x14, 0xcd, 0xb8, - 0xa9, 0xd2, 0x4c, 0xa9, 0xa9, 0xda, 0x49, 0x9d, 0xba, 0x99, 0x96, 0x14, 0x59, 0x59, 0x55, 0x25, - 0x73, 0x56, 0x8a, 0x3b, 0x3e, 0x71, 0x96, 0xc0, 0x8a, 0xc4, 0x08, 0xc4, 0xa2, 0x8b, 0x05, 0x33, - 0xbc, 0xf5, 0x98, 0xf1, 0xa1, 0xff, 0x40, 0xd3, 0x43, 0x7f, 0x43, 0xff, 0x83, 0x8f, 0x3d, 0xf6, - 0xa4, 0x69, 0xf8, 0x17, 0xf2, 0x03, 0xda, 0xd9, 0xc5, 0x02, 0x04, 0x13, 0xc8, 0xf6, 0x4c, 0x74, - 0xdb, 0x7d, 0xf8, 0xbe, 0xb7, 0xbb, 0x6f, 0xbf, 0x7d, 0xef, 0x01, 0xcc, 0x30, 0xa0, 0x76, 0xd8, - 0x09, 0x38, 0x13, 0x0c, 0x21, 0x87, 0xd9, 0x57, 0x94, 0x77, 0xc2, 0xaf, 0x08, 0x9f, 0x5d, 0xb9, - 0xa2, 0x33, 0xff, 0x65, 0xc3, 0x14, 0x8b, 0x80, 0x6a, 0x40, 0xe3, 0xbd, 0x09, 0x9b, 0x30, 0x35, - 0xdc, 0x97, 0x23, 0x6d, 0x6d, 0x4e, 0x18, 0x9b, 0x78, 0x74, 0x5f, 0xcd, 0xc6, 0xd1, 0xe5, 0xbe, - 0x13, 0x71, 0x22, 0x5c, 0xe6, 0xc7, 0xdf, 0xdb, 0xd7, 0x25, 0x30, 0xce, 0x98, 0x43, 0xcf, 0x03, - 0x6a, 0xa3, 0x23, 0x30, 0x89, 0xef, 0x33, 0xa1, 0x00, 0xa1, 0x55, 0x6c, 0x15, 0xf7, 0xcc, 0x83, - 0xdd, 0xce, 0xf7, 0x57, 0xee, 0x74, 0x57, 0xb0, 0x5e, 0xe9, 0xf5, 0xcd, 0x6e, 0x01, 0x67, 0x99, - 0xe8, 0xf7, 0x50, 0x73, 0x68, 0xe8, 0x72, 0xea, 0x8c, 0x38, 0xf3, 0xa8, 0xb5, 0xd1, 0x2a, 0xee, - 0xdd, 0x3b, 0xf8, 0x49, 0x9e, 0x27, 0xb9, 0x38, 0x66, 0x1e, 0xc5, 0xa6, 0x66, 0xc8, 0x09, 0x3a, - 0x02, 0x98, 0xd1, 0xd9, 0x98, 0xf2, 0x70, 0xea, 0x06, 0xd6, 0xa6, 0xa2, 0xff, 0xec, 0x36, 0xba, - 0xdc, 0x7b, 0xe7, 0x34, 0x85, 0xe3, 0x0c, 0x15, 0x9d, 0x42, 0x8d, 0xcc, 0x89, 0xeb, 0x91, 0xb1, - 0xeb, 0xb9, 0x62, 0x61, 0x95, 0x94, 0xab, 0x4f, 0xde, 0xe8, 0xaa, 0x9b, 0x21, 0xe0, 0x35, 0x7a, - 0xdb, 0x01, 0x58, 0x2d, 0x84, 0x3e, 0x86, 0xca, 0x70, 0x70, 0xd6, 0x3f, 0x3e, 0x3b, 0xaa, 0x17, - 0x1a, 0x0f, 0x5e, 0x5d, 0xb7, 0xde, 0x97, 0x3e, 0x56, 0x80, 0x21, 0xf5, 0x1d, 0xd7, 0x9f, 0xa0, - 0x3d, 0x30, 0xba, 0x87, 0x87, 0x83, 0xe1, 0xc5, 0xa0, 0x5f, 0x2f, 0x36, 0x1a, 0xaf, 0xae, 0x5b, - 0x1f, 0xac, 0x03, 0xbb, 0xb6, 0x4d, 0x03, 0x41, 0x9d, 0x46, 0xe9, 0xeb, 0x7f, 0x36, 0x0b, 0xed, - 0xaf, 0x8b, 0x50, 0xcb, 0x6e, 0x02, 0x7d, 0x0c, 0xe5, 0xee, 0xe1, 0xc5, 0xf1, 0x8b, 0x41, 0xbd, - 0xb0, 0xa2, 0x67, 0x11, 0x5d, 0x5b, 0xb8, 0x73, 0x8a, 0x1e, 0xc3, 0xd6, 0xb0, 0xfb, 0xe5, 0xf9, - 0xa0, 0x5e, 0x5c, 0x6d, 0x27, 0x0b, 0x1b, 0x92, 0x28, 0x54, 0xa8, 0x3e, 0xee, 0x1e, 0x9f, 0xd5, - 0x37, 0xf2, 0x51, 0x7d, 0x4e, 0x5c, 0x5f, 0x6f, 0xe5, 0x1f, 0x25, 0x30, 0xcf, 0x29, 0x9f, 0xbb, - 0xf6, 0x1d, 0x4b, 0xe4, 0x33, 0x28, 0x09, 0x12, 0x5e, 0x29, 0x69, 0x98, 0xf9, 0xd2, 0xb8, 0x20, - 0xe1, 0x95, 0x5c, 0x54, 0xd3, 0x15, 0x5e, 0x2a, 0x83, 0xd3, 0xc0, 0x73, 0x6d, 0x22, 0xa8, 0xa3, - 0x94, 0x61, 0x1e, 0xfc, 0x34, 0x8f, 0x8d, 0x53, 0x94, 0xde, 0xff, 0xb3, 0x02, 0xce, 0x50, 0xd1, - 0x53, 0x28, 0x4f, 0x3c, 0x36, 0x26, 0x9e, 0xd2, 0x84, 0x79, 0xf0, 0x28, 0xcf, 0xc9, 0x91, 0x42, - 0xac, 0x1c, 0x68, 0x0a, 0x7a, 0x02, 0xe5, 0x28, 0x70, 0x88, 0xa0, 0x56, 0x59, 0x91, 0x5b, 0x79, - 0xe4, 0x2f, 0x15, 0xe2, 0x90, 0xf9, 0x97, 0xee, 0x04, 0x6b, 0x3c, 0x3a, 0x01, 0xc3, 0xa7, 0xe2, - 0x2b, 0xc6, 0xaf, 0x42, 0xab, 0xd2, 0xda, 0xdc, 0x33, 0x0f, 0x3e, 0xcd, 0x15, 0x63, 0x8c, 0xe9, - 0x0a, 0x41, 0xec, 0xe9, 0x8c, 0xfa, 0x22, 0x76, 0xd3, 0xdb, 0xb0, 0x8a, 0x38, 0x75, 0x80, 0x7e, - 0x07, 0x06, 0xf5, 0x9d, 0x80, 0xb9, 0xbe, 0xb0, 0x8c, 0xdb, 0x37, 0x32, 0xd0, 0x18, 0x19, 0x4c, - 0x9c, 0x32, 0x24, 0x9b, 0x33, 0xcf, 0x1b, 0x13, 0xfb, 0xca, 0xaa, 0xbe, 0xe3, 0x31, 0x52, 0x46, - 0xaf, 0x0c, 0xa5, 0x19, 0x73, 0x68, 0x7b, 0x1f, 0x76, 0xbe, 0x17, 0x6a, 0xd4, 0x00, 0x43, 0x87, - 0x3a, 0xd6, 0x48, 0x09, 0xa7, 0xf3, 0xf6, 0x7d, 0xd8, 0x5e, 0x0b, 0x6b, 0xfb, 0xef, 0x25, 0x30, - 0x92, 0xbb, 0x46, 0x5d, 0xa8, 0xda, 0xcc, 0x17, 0xc4, 0xf5, 0x29, 0xd7, 0xf2, 0xca, 0xbd, 0x99, - 0xc3, 0x04, 0x24, 0x59, 0xcf, 0x0a, 0x78, 0xc5, 0x42, 0x7f, 0x84, 0x2a, 0xa7, 0x21, 0x8b, 0xb8, - 0x4d, 0x43, 0xad, 0xaf, 0xbd, 0x7c, 0x85, 0xc4, 0x20, 0x4c, 0xff, 0x1a, 0xb9, 0x9c, 0xca, 0x28, - 0x87, 0x78, 0x45, 0x45, 0x4f, 0xa1, 0xc2, 0x69, 0x28, 0x08, 0x17, 0x6f, 0x92, 0x08, 0x8e, 0x21, - 0x43, 0xe6, 0xb9, 0xf6, 0x02, 0x27, 0x0c, 0xf4, 0x14, 0xaa, 0x81, 0x47, 0x6c, 0xe5, 0xd5, 0xda, - 0x52, 0xf4, 0x0f, 0xf3, 0xe8, 0xc3, 0x04, 0x84, 0x57, 0x78, 0xf4, 0x39, 0x80, 0xc7, 0x26, 0x23, - 0x87, 0xbb, 0x73, 0xca, 0xb5, 0xc4, 0x1a, 0x79, 0xec, 0xbe, 0x42, 0xe0, 0xaa, 0xc7, 0x26, 0xf1, - 0x10, 0x1d, 0xfd, 0x20, 0x7d, 0x65, 0xb4, 0x75, 0x02, 0x40, 0xd2, 0xaf, 0x5a, 0x5d, 0x9f, 0xbc, - 0x93, 0x2b, 0x7d, 0x23, 0x19, 0x3a, 0x7a, 0x04, 0xb5, 0x4b, 0xc6, 0x6d, 0x3a, 0xd2, 0xaf, 0xa6, - 0xaa, 0x34, 0x61, 0x2a, 0x5b, 0xac, 0xaf, 0x5e, 0x15, 0x2a, 0x3c, 0xf2, 0x85, 0x3b, 0xa3, 0xed, - 0x13, 0x78, 0x3f, 0xd7, 0x29, 0x3a, 0x80, 0x5a, 0x7a, 0xcd, 0x23, 0xd7, 0x51, 0xfa, 0xa8, 0xf6, - 0xee, 0x2f, 0x6f, 0x76, 0xcd, 0x54, 0x0f, 0xc7, 0x7d, 0x6c, 0xa6, 0xa0, 0x63, 0xa7, 0xfd, 0x6d, - 0x05, 0xb6, 0xd7, 0xc4, 0x82, 0xde, 0x83, 0x2d, 0x77, 0x46, 0x26, 0x34, 0xa6, 0xe3, 0x78, 0x82, - 0x06, 0x50, 0xf6, 0xc8, 0x98, 0x7a, 0x52, 0x32, 0x32, 0x6c, 0xbf, 0x78, 0xab, 0xea, 0x3a, 0x7f, - 0x56, 0xf8, 0x81, 0x2f, 0xf8, 0x02, 0x6b, 0x32, 0xb2, 0xa0, 0x62, 0xb3, 0xd9, 0x8c, 0xf8, 0x32, - 0x39, 0x6d, 0xee, 0x55, 0x71, 0x32, 0x45, 0x08, 0x4a, 0x84, 0x4f, 0x42, 0xab, 0xa4, 0xcc, 0x6a, - 0x8c, 0xea, 0xb0, 0x49, 0xfd, 0xb9, 0xb5, 0xa5, 0x4c, 0x72, 0x28, 0x2d, 0x8e, 0x1b, 0xdf, 0x79, - 0x15, 0xcb, 0xa1, 0xe4, 0x45, 0x21, 0xe5, 0x56, 0x45, 0x99, 0xd4, 0x18, 0xfd, 0x06, 0xca, 0x33, - 0x16, 0xf9, 0x22, 0xb4, 0x0c, 0xb5, 0xd9, 0x07, 0x79, 0x9b, 0x3d, 0x95, 0x08, 0x9d, 0x3c, 0x35, - 0x1c, 0x0d, 0x60, 0x27, 0x14, 0x2c, 0x18, 0x4d, 0x38, 0xb1, 0xe9, 0x28, 0xa0, 0xdc, 0x65, 0x8e, - 0x7e, 0xfc, 0x0f, 0x3a, 0x71, 0xaf, 0xd0, 0x49, 0x7a, 0x85, 0x4e, 0x5f, 0xf7, 0x0a, 0xf8, 0xbe, - 0xe4, 0x1c, 0x49, 0xca, 0x50, 0x31, 0xd0, 0x10, 0x6a, 0x41, 0xe4, 0x79, 0x23, 0x16, 0xc4, 0x75, - 0x00, 0x94, 0x87, 0x77, 0x08, 0xd9, 0x30, 0xf2, 0xbc, 0xe7, 0x31, 0x09, 0x9b, 0xc1, 0x6a, 0x82, - 0x3e, 0x80, 0xf2, 0x84, 0xb3, 0x28, 0x08, 0x2d, 0x53, 0x05, 0x43, 0xcf, 0xd0, 0x17, 0x50, 0x09, - 0xa9, 0xcd, 0xa9, 0x08, 0xad, 0x9a, 0x3a, 0xea, 0x47, 0x79, 0x8b, 0x9c, 0x2b, 0x08, 0xa6, 0x97, - 0x94, 0x53, 0xdf, 0xa6, 0x38, 0xe1, 0xa0, 0x07, 0xb0, 0x29, 0xc4, 0xc2, 0xda, 0x6e, 0x15, 0xf7, - 0x8c, 0x5e, 0x65, 0x79, 0xb3, 0xbb, 0x79, 0x71, 0xf1, 0x12, 0x4b, 0x9b, 0xcc, 0x51, 0x53, 0x16, - 0x0a, 0x9f, 0xcc, 0xa8, 0x75, 0x4f, 0xc5, 0x36, 0x9d, 0xa3, 0x97, 0x00, 0x8e, 0x1f, 0x8e, 0x6c, - 0xf5, 0x28, 0xac, 0xfb, 0xea, 0x74, 0x9f, 0xbe, 0xfd, 0x74, 0xfd, 0xb3, 0x73, 0x9d, 0xa7, 0xb7, - 0x97, 0x37, 0xbb, 0xd5, 0x74, 0x8a, 0xab, 0x8e, 0x1f, 0xc6, 0x43, 0xd4, 0x03, 0x73, 0x4a, 0x89, - 0x27, 0xa6, 0xf6, 0x94, 0xda, 0x57, 0x56, 0xfd, 0xf6, 0xc4, 0xfb, 0x4c, 0xc1, 0xb4, 0x87, 0x2c, - 0x49, 0x2a, 0x58, 0x6e, 0x35, 0xb4, 0x76, 0x54, 0xac, 0xe2, 0x09, 0xfa, 0x10, 0x80, 0x05, 0xd4, - 0x1f, 0x85, 0xc2, 0x71, 0x7d, 0x0b, 0xc9, 0x23, 0xe3, 0xaa, 0xb4, 0x9c, 0x4b, 0x03, 0x7a, 0x28, - 0xd3, 0x22, 0x71, 0x46, 0xcc, 0xf7, 0x16, 0xd6, 0x8f, 0xd4, 0x57, 0x43, 0x1a, 0x9e, 0xfb, 0xde, - 0xa2, 0xf1, 0x39, 0x98, 0x19, 0x35, 0x4b, 0x15, 0x5e, 0xd1, 0x85, 0x7e, 0x20, 0x72, 0x28, 0x97, - 0x9c, 0x13, 0x2f, 0x8a, 0x7b, 0xb9, 0x2a, 0x8e, 0x27, 0xbf, 0xdd, 0x78, 0x52, 0x6c, 0x1c, 0x80, - 0x99, 0xb9, 0x55, 0xf4, 0x11, 0x6c, 0x73, 0x3a, 0x71, 0x43, 0xc1, 0x17, 0x23, 0x12, 0x89, 0xa9, - 0xf5, 0x07, 0x45, 0xa8, 0x25, 0xc6, 0x6e, 0x24, 0xa6, 0x8d, 0x11, 0xac, 0x82, 0x83, 0x5a, 0x60, - 0xca, 0xa0, 0x87, 0x94, 0xcf, 0x29, 0x97, 0xf5, 0x42, 0x9e, 0x29, 0x6b, 0x92, 0xe2, 0x08, 0x29, - 0xe1, 0xf6, 0x54, 0xbd, 0xcd, 0x2a, 0xd6, 0x33, 0xf9, 0xd8, 0x12, 0x05, 0xea, 0xc7, 0xa6, 0xa7, - 0xed, 0x6f, 0x8b, 0x50, 0xcb, 0x96, 0x3d, 0x74, 0x18, 0x97, 0x2b, 0x75, 0xa4, 0x7b, 0x07, 0xfb, - 0x6f, 0x2b, 0x93, 0xaa, 0x38, 0x78, 0x91, 0x74, 0x76, 0x2a, 0x3b, 0x54, 0x45, 0x46, 0xbf, 0x86, - 0xad, 0x80, 0x71, 0x91, 0xa4, 0x88, 0x66, 0x6e, 0x42, 0x67, 0x3c, 0x49, 0xa6, 0x31, 0xb8, 0x3d, - 0x85, 0x7b, 0xeb, 0xde, 0xd0, 0x63, 0xd8, 0x7c, 0x71, 0x3c, 0xac, 0x17, 0x1a, 0x0f, 0x5f, 0x5d, - 0xb7, 0x7e, 0xbc, 0xfe, 0xf1, 0x85, 0xcb, 0x45, 0x44, 0xbc, 0xe3, 0x21, 0xfa, 0x39, 0x6c, 0xf5, - 0xcf, 0xce, 0x31, 0xae, 0x17, 0x1b, 0xbb, 0xaf, 0xae, 0x5b, 0x0f, 0xd7, 0x71, 0xf2, 0x13, 0x8b, - 0x7c, 0x07, 0xb3, 0x71, 0xda, 0xad, 0xfd, 0x6b, 0x03, 0x4c, 0x9d, 0x39, 0xef, 0xba, 0xa1, 0xdf, - 0x8e, 0x8b, 0x51, 0xf2, 0x24, 0x36, 0xde, 0x5a, 0x93, 0x6a, 0x31, 0x41, 0xdf, 0xf1, 0x23, 0xa8, - 0xb9, 0xc1, 0xfc, 0xb3, 0x11, 0xf5, 0xc9, 0xd8, 0xd3, 0x8d, 0x9b, 0x81, 0x4d, 0x69, 0x1b, 0xc4, - 0x26, 0xf9, 0x1e, 0x5d, 0x5f, 0x50, 0xee, 0xeb, 0x96, 0xcc, 0xc0, 0xe9, 0x1c, 0x7d, 0x01, 0x25, - 0x37, 0x20, 0x33, 0x5d, 0x48, 0x73, 0x4f, 0x70, 0x3c, 0xec, 0x9e, 0x6a, 0x0d, 0xf6, 0x8c, 0xe5, - 0xcd, 0x6e, 0x49, 0x1a, 0xb0, 0xa2, 0xa1, 0x66, 0x52, 0xcb, 0xe4, 0x4a, 0x2a, 0xb7, 0x1a, 0x38, - 0x63, 0x69, 0xff, 0xaf, 0x04, 0xe6, 0xa1, 0x17, 0x85, 0x42, 0x57, 0x88, 0x3b, 0x8b, 0xdb, 0x4b, - 0xd8, 0x21, 0xaa, 0xb7, 0x27, 0xbe, 0x4c, 0xb7, 0xaa, 0x47, 0xd0, 0xb1, 0x7b, 0x9c, 0xeb, 0x2e, - 0x05, 0xc7, 0xfd, 0x44, 0xaf, 0x2c, 0x7d, 0x5a, 0x45, 0x5c, 0x27, 0xdf, 0xf9, 0x82, 0xce, 0x61, - 0x9b, 0x71, 0x7b, 0x4a, 0x43, 0x11, 0x27, 0x69, 0xdd, 0x0b, 0xe7, 0xfe, 0x25, 0x3d, 0xcf, 0x02, - 0x75, 0x86, 0x8a, 0x77, 0xbb, 0xee, 0x03, 0x3d, 0x81, 0x12, 0x27, 0x97, 0x49, 0xbf, 0x93, 0xab, - 0x6f, 0x4c, 0x2e, 0xc5, 0x9a, 0x0b, 0xc5, 0x40, 0x7f, 0x02, 0x70, 0xdc, 0x30, 0x20, 0xc2, 0x9e, - 0x52, 0xae, 0xef, 0x29, 0xf7, 0x88, 0xfd, 0x14, 0xb5, 0xe6, 0x25, 0xc3, 0x46, 0x27, 0x50, 0xb5, - 0x49, 0xa2, 0xb4, 0xf2, 0xed, 0x3f, 0x08, 0x87, 0x5d, 0xed, 0xa2, 0x2e, 0x5d, 0x2c, 0x6f, 0x76, - 0x8d, 0xc4, 0x82, 0x0d, 0x9b, 0x68, 0xe5, 0x9d, 0xc0, 0xb6, 0xfc, 0x71, 0x18, 0x39, 0xf4, 0x92, - 0x44, 0x9e, 0x08, 0x55, 0x1d, 0xbd, 0x25, 0xe3, 0xca, 0x2e, 0xb4, 0xaf, 0x71, 0x7a, 0x5f, 0x35, - 0x91, 0xb1, 0xa1, 0xbf, 0xc0, 0x0e, 0xf5, 0x6d, 0xbe, 0x50, 0x3a, 0x4b, 0x76, 0x68, 0xdc, 0x7e, - 0xd8, 0x41, 0x0a, 0x5e, 0x3b, 0x6c, 0x9d, 0x7e, 0xc7, 0xde, 0x76, 0x01, 0xe2, 0x1a, 0x76, 0xb7, - 0xfa, 0x43, 0x50, 0x72, 0x88, 0x20, 0x4a, 0x72, 0x35, 0xac, 0xc6, 0x3d, 0xeb, 0xf5, 0x37, 0xcd, - 0xc2, 0x7f, 0xbe, 0x69, 0x16, 0xfe, 0xb6, 0x6c, 0x16, 0x5f, 0x2f, 0x9b, 0xc5, 0x7f, 0x2f, 0x9b, - 0xc5, 0xff, 0x2e, 0x9b, 0xc5, 0x71, 0x59, 0x55, 0xfe, 0x5f, 0xfd, 0x3f, 0x00, 0x00, 0xff, 0xff, - 0xd0, 0x1d, 0x8f, 0x7a, 0x79, 0x10, 0x00, 0x00, + // 1707 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x57, 0x41, 0x73, 0x1b, 0xb7, + 0x15, 0x26, 0x25, 0x8a, 0x5a, 0xbe, 0xa5, 0x6c, 0x1a, 0x75, 0xd2, 0x35, 0xdd, 0x90, 0x34, 0xe3, + 0xa6, 0x4a, 0x33, 0xa5, 0xa6, 0x6a, 0x27, 0x75, 0xea, 0x66, 0x5a, 0x52, 0x64, 0x65, 0x55, 0x95, + 0xcc, 0x01, 0x15, 0x77, 0x7c, 0xe2, 0x80, 0xbb, 0x10, 0xb9, 0xa3, 0xe5, 0x62, 0x0b, 0x60, 0x99, + 0xe1, 0xad, 0xc7, 0x8c, 0x0f, 0x3d, 0xf5, 0xaa, 0xe9, 0xa1, 0xbf, 0xa1, 0xff, 0xc1, 0xc7, 0x1e, + 0x7b, 0xd2, 0x34, 0xfc, 0x0b, 0xfd, 0x01, 0xed, 0x00, 0x0b, 0x92, 0xcb, 0x64, 0x15, 0x7b, 0x26, + 0xbe, 0xe1, 0xbd, 0xfd, 0xbe, 0x07, 0xe0, 0xe1, 0xc3, 0xc3, 0x5b, 0xb0, 0x45, 0x44, 0x5d, 0xd1, + 0x8a, 0x38, 0x93, 0x0c, 0x21, 0x8f, 0xb9, 0x57, 0x94, 0xb7, 0xc4, 0x97, 0x84, 0x4f, 0xaf, 0x7c, + 0xd9, 0x9a, 0xfd, 0xbc, 0x6a, 0xcb, 0x79, 0x44, 0x0d, 0xa0, 0x7a, 0x7f, 0xcc, 0xc6, 0x4c, 0x0f, + 0x0f, 0xd4, 0xc8, 0x78, 0x6b, 0x63, 0xc6, 0xc6, 0x01, 0x3d, 0xd0, 0xd6, 0x28, 0xbe, 0x3c, 0xf0, + 0x62, 0x4e, 0xa4, 0xcf, 0xc2, 0xe4, 0x7b, 0xf3, 0xba, 0x00, 0xd6, 0x39, 0xf3, 0xe8, 0x20, 0xa2, + 0x2e, 0x3a, 0x06, 0x9b, 0x84, 0x21, 0x93, 0x1a, 0x20, 0x9c, 0x7c, 0x23, 0xbf, 0x6f, 0x1f, 0xd6, + 0x5b, 0xdf, 0x9e, 0xb9, 0xd5, 0x5e, 0xc3, 0x3a, 0x85, 0xd7, 0x37, 0xf5, 0x1c, 0x4e, 0x33, 0xd1, + 0x6f, 0xa1, 0xec, 0x51, 0xe1, 0x73, 0xea, 0x0d, 0x39, 0x0b, 0xa8, 0xb3, 0xd5, 0xc8, 0xef, 0xdf, + 0x39, 0xfc, 0x51, 0x56, 0x24, 0x35, 0x39, 0x66, 0x01, 0xc5, 0xb6, 0x61, 0x28, 0x03, 0x1d, 0x03, + 0x4c, 0xe9, 0x74, 0x44, 0xb9, 0x98, 0xf8, 0x91, 0xb3, 0xad, 0xe9, 0x3f, 0xb9, 0x8d, 0xae, 0xd6, + 0xde, 0x3a, 0x5b, 0xc1, 0x71, 0x8a, 0x8a, 0xce, 0xa0, 0x4c, 0x66, 0xc4, 0x0f, 0xc8, 0xc8, 0x0f, + 0x7c, 0x39, 0x77, 0x0a, 0x3a, 0xd4, 0xc7, 0xdf, 0x19, 0xaa, 0x9d, 0x22, 0xe0, 0x0d, 0x7a, 0xd3, + 0x03, 0x58, 0x4f, 0x84, 0x3e, 0x82, 0xdd, 0x7e, 0xef, 0xbc, 0x7b, 0x72, 0x7e, 0x5c, 0xc9, 0x55, + 0x1f, 0xbc, 0xba, 0x6e, 0xbc, 0xa7, 0x62, 0xac, 0x01, 0x7d, 0x1a, 0x7a, 0x7e, 0x38, 0x46, 0xfb, + 0x60, 0xb5, 0x8f, 0x8e, 0x7a, 0xfd, 0x8b, 0x5e, 0xb7, 0x92, 0xaf, 0x56, 0x5f, 0x5d, 0x37, 0xde, + 0xdf, 0x04, 0xb6, 0x5d, 0x97, 0x46, 0x92, 0x7a, 0xd5, 0xc2, 0x57, 0xff, 0xa8, 0xe5, 0x9a, 0x5f, + 0xe5, 0xa1, 0x9c, 0x5e, 0x04, 0xfa, 0x08, 0x8a, 0xed, 0xa3, 0x8b, 0x93, 0x17, 0xbd, 0x4a, 0x6e, + 0x4d, 0x4f, 0x23, 0xda, 0xae, 0xf4, 0x67, 0x14, 0x3d, 0x86, 0x9d, 0x7e, 0xfb, 0x8b, 0x41, 0xaf, + 0x92, 0x5f, 0x2f, 0x27, 0x0d, 0xeb, 0x93, 0x58, 0x68, 0x54, 0x17, 0xb7, 0x4f, 0xce, 0x2b, 0x5b, + 0xd9, 0xa8, 0x2e, 0x27, 0x7e, 0x68, 0x96, 0xf2, 0xf7, 0x02, 0xd8, 0x03, 0xca, 0x67, 0xbe, 0xfb, + 0x8e, 0x25, 0xf2, 0x29, 0x14, 0x24, 0x11, 0x57, 0x5a, 0x1a, 0x76, 0xb6, 0x34, 0x2e, 0x88, 0xb8, + 0x52, 0x93, 0x1a, 0xba, 0xc6, 0x2b, 0x65, 0x70, 0x1a, 0x05, 0xbe, 0x4b, 0x24, 0xf5, 0xb4, 0x32, + 0xec, 0xc3, 0x1f, 0x67, 0xb1, 0xf1, 0x0a, 0x65, 0xd6, 0xff, 0x2c, 0x87, 0x53, 0x54, 0xf4, 0x14, + 0x8a, 0xe3, 0x80, 0x8d, 0x48, 0xa0, 0x35, 0x61, 0x1f, 0x3e, 0xca, 0x0a, 0x72, 0xac, 0x11, 0xeb, + 0x00, 0x86, 0x82, 0x9e, 0x40, 0x31, 0x8e, 0x3c, 0x22, 0xa9, 0x53, 0xd4, 0xe4, 0x46, 0x16, 0xf9, + 0x0b, 0x8d, 0x38, 0x62, 0xe1, 0xa5, 0x3f, 0xc6, 0x06, 0x8f, 0x4e, 0xc1, 0x0a, 0xa9, 0xfc, 0x92, + 0xf1, 0x2b, 0xe1, 0xec, 0x36, 0xb6, 0xf7, 0xed, 0xc3, 0x4f, 0x32, 0xc5, 0x98, 0x60, 0xda, 0x52, + 0x12, 0x77, 0x32, 0xa5, 0xa1, 0x4c, 0xc2, 0x74, 0xb6, 0x9c, 0x3c, 0x5e, 0x05, 0x40, 0xbf, 0x01, + 0x8b, 0x86, 0x5e, 0xc4, 0xfc, 0x50, 0x3a, 0xd6, 0xed, 0x0b, 0xe9, 0x19, 0x8c, 0x4a, 0x26, 0x5e, + 0x31, 0x14, 0x9b, 0xb3, 0x20, 0x18, 0x11, 0xf7, 0xca, 0x29, 0xbd, 0xe5, 0x36, 0x56, 0x8c, 0x4e, + 0x11, 0x0a, 0x53, 0xe6, 0xd1, 0xe6, 0x01, 0xdc, 0xfb, 0x56, 0xaa, 0x51, 0x15, 0x2c, 0x93, 0xea, + 0x44, 0x23, 0x05, 0xbc, 0xb2, 0x9b, 0x77, 0x61, 0x6f, 0x23, 0xad, 0xcd, 0xbf, 0x16, 0xc0, 0x5a, + 0x9e, 0x35, 0x6a, 0x43, 0xc9, 0x65, 0xa1, 0x24, 0x7e, 0x48, 0xb9, 0x91, 0x57, 0xe6, 0xc9, 0x1c, + 0x2d, 0x41, 0x8a, 0xf5, 0x2c, 0x87, 0xd7, 0x2c, 0xf4, 0x7b, 0x28, 0x71, 0x2a, 0x58, 0xcc, 0x5d, + 0x2a, 0x8c, 0xbe, 0xf6, 0xb3, 0x15, 0x92, 0x80, 0x30, 0xfd, 0x73, 0xec, 0x73, 0xaa, 0xb2, 0x2c, + 0xf0, 0x9a, 0x8a, 0x9e, 0xc2, 0x2e, 0xa7, 0x42, 0x12, 0x2e, 0xbf, 0x4b, 0x22, 0x38, 0x81, 0xf4, + 0x59, 0xe0, 0xbb, 0x73, 0xbc, 0x64, 0xa0, 0xa7, 0x50, 0x8a, 0x02, 0xe2, 0xea, 0xa8, 0xce, 0x8e, + 0xa6, 0x7f, 0x90, 0x45, 0xef, 0x2f, 0x41, 0x78, 0x8d, 0x47, 0x9f, 0x01, 0x04, 0x6c, 0x3c, 0xf4, + 0xb8, 0x3f, 0xa3, 0xdc, 0x48, 0xac, 0x9a, 0xc5, 0xee, 0x6a, 0x04, 0x2e, 0x05, 0x6c, 0x9c, 0x0c, + 0xd1, 0xf1, 0xf7, 0xd2, 0x57, 0x4a, 0x5b, 0xa7, 0x00, 0x64, 0xf5, 0xd5, 0xa8, 0xeb, 0xe3, 0xb7, + 0x0a, 0x65, 0x4e, 0x24, 0x45, 0x47, 0x8f, 0xa0, 0x7c, 0xc9, 0xb8, 0x4b, 0x87, 0xe6, 0xd6, 0x94, + 0xb4, 0x26, 0x6c, 0xed, 0x4b, 0xf4, 0xd5, 0x29, 0xc1, 0x2e, 0x8f, 0x43, 0xe9, 0x4f, 0x69, 0xf3, + 0x14, 0xde, 0xcb, 0x0c, 0x8a, 0x0e, 0xa1, 0xbc, 0x3a, 0xe6, 0xa1, 0xef, 0x69, 0x7d, 0x94, 0x3a, + 0x77, 0x17, 0x37, 0x75, 0x7b, 0xa5, 0x87, 0x93, 0x2e, 0xb6, 0x57, 0xa0, 0x13, 0xaf, 0xf9, 0x37, + 0x0b, 0xf6, 0x36, 0xc4, 0x82, 0xee, 0xc3, 0x8e, 0x3f, 0x25, 0x63, 0x9a, 0xd0, 0x71, 0x62, 0xa0, + 0x1e, 0x14, 0x03, 0x32, 0xa2, 0x81, 0x92, 0x8c, 0x4a, 0xdb, 0xcf, 0xde, 0xa8, 0xba, 0xd6, 0x1f, + 0x35, 0xbe, 0x17, 0x4a, 0x3e, 0xc7, 0x86, 0x8c, 0x1c, 0xd8, 0x75, 0xd9, 0x74, 0x4a, 0x42, 0x55, + 0x9c, 0xb6, 0xf7, 0x4b, 0x78, 0x69, 0x22, 0x04, 0x05, 0xc2, 0xc7, 0xc2, 0x29, 0x68, 0xb7, 0x1e, + 0xa3, 0x0a, 0x6c, 0xd3, 0x70, 0xe6, 0xec, 0x68, 0x97, 0x1a, 0x2a, 0x8f, 0xe7, 0x27, 0x67, 0x5e, + 0xc2, 0x6a, 0xa8, 0x78, 0xb1, 0xa0, 0xdc, 0xd9, 0xd5, 0x2e, 0x3d, 0x46, 0xbf, 0x82, 0xe2, 0x94, + 0xc5, 0xa1, 0x14, 0x8e, 0xa5, 0x17, 0xfb, 0x20, 0x6b, 0xb1, 0x67, 0x0a, 0x61, 0x8a, 0xa7, 0x81, + 0xa3, 0x1e, 0xdc, 0x13, 0x92, 0x45, 0xc3, 0x31, 0x27, 0x2e, 0x1d, 0x46, 0x94, 0xfb, 0xcc, 0x33, + 0x97, 0xff, 0x41, 0x2b, 0xe9, 0x15, 0x5a, 0xcb, 0x5e, 0xa1, 0xd5, 0x35, 0xbd, 0x02, 0xbe, 0xab, + 0x38, 0xc7, 0x8a, 0xd2, 0xd7, 0x0c, 0xd4, 0x87, 0x72, 0x14, 0x07, 0xc1, 0x90, 0x45, 0xc9, 0x3b, + 0x00, 0x3a, 0xc2, 0x5b, 0xa4, 0xac, 0x1f, 0x07, 0xc1, 0xf3, 0x84, 0x84, 0xed, 0x68, 0x6d, 0xa0, + 0xf7, 0xa1, 0x38, 0xe6, 0x2c, 0x8e, 0x84, 0x63, 0xeb, 0x64, 0x18, 0x0b, 0x7d, 0x0e, 0xbb, 0x82, + 0xba, 0x9c, 0x4a, 0xe1, 0x94, 0xf5, 0x56, 0x3f, 0xcc, 0x9a, 0x64, 0xa0, 0x21, 0x98, 0x5e, 0x52, + 0x4e, 0x43, 0x97, 0xe2, 0x25, 0x07, 0x3d, 0x80, 0x6d, 0x29, 0xe7, 0xce, 0x5e, 0x23, 0xbf, 0x6f, + 0x75, 0x76, 0x17, 0x37, 0xf5, 0xed, 0x8b, 0x8b, 0x97, 0x58, 0xf9, 0x54, 0x8d, 0x9a, 0x30, 0x21, + 0x43, 0x32, 0xa5, 0xce, 0x1d, 0x9d, 0xdb, 0x95, 0x8d, 0x5e, 0x02, 0x78, 0xa1, 0x18, 0xba, 0xfa, + 0x52, 0x38, 0x77, 0xf5, 0xee, 0x3e, 0x79, 0xf3, 0xee, 0xba, 0xe7, 0x03, 0x53, 0xa7, 0xf7, 0x16, + 0x37, 0xf5, 0xd2, 0xca, 0xc4, 0x25, 0x2f, 0x14, 0xc9, 0x10, 0x75, 0xc0, 0x9e, 0x50, 0x12, 0xc8, + 0x89, 0x3b, 0xa1, 0xee, 0x95, 0x53, 0xb9, 0xbd, 0xf0, 0x3e, 0xd3, 0x30, 0x13, 0x21, 0x4d, 0x52, + 0x0a, 0x56, 0x4b, 0x15, 0xce, 0x3d, 0x9d, 0xab, 0xc4, 0x40, 0x1f, 0x00, 0xb0, 0x88, 0x86, 0x43, + 0x21, 0x3d, 0x3f, 0x74, 0x90, 0xda, 0x32, 0x2e, 0x29, 0xcf, 0x40, 0x39, 0xd0, 0x43, 0x55, 0x16, + 0x89, 0x37, 0x64, 0x61, 0x30, 0x77, 0x7e, 0xa0, 0xbf, 0x5a, 0xca, 0xf1, 0x3c, 0x0c, 0xe6, 0xa8, + 0x0e, 0xb6, 0xd6, 0x85, 0xf0, 0xc7, 0x21, 0x09, 0x9c, 0xfb, 0x3a, 0x1f, 0xa0, 0x5c, 0x03, 0xed, + 0xa9, 0x7e, 0x06, 0x76, 0x4a, 0xee, 0x4a, 0xa6, 0x57, 0x74, 0x6e, 0x6e, 0x90, 0x1a, 0xaa, 0x35, + 0xcd, 0x48, 0x10, 0x27, 0xcd, 0x5e, 0x09, 0x27, 0xc6, 0xaf, 0xb7, 0x9e, 0xe4, 0xab, 0x87, 0x60, + 0xa7, 0x8e, 0x1d, 0x7d, 0x08, 0x7b, 0x9c, 0x8e, 0x7d, 0x21, 0xf9, 0x7c, 0x48, 0x62, 0x39, 0x71, + 0x7e, 0xa7, 0x09, 0xe5, 0xa5, 0xb3, 0x1d, 0xcb, 0x49, 0x75, 0x08, 0xeb, 0xec, 0xa1, 0x06, 0xd8, + 0xea, 0x54, 0x04, 0xe5, 0x33, 0xca, 0xd5, 0x83, 0xa2, 0x36, 0x9d, 0x76, 0x29, 0xf5, 0x08, 0x4a, + 0xb8, 0x3b, 0xd1, 0x97, 0xb7, 0x84, 0x8d, 0xa5, 0x6e, 0xe3, 0x52, 0xa2, 0xe6, 0x36, 0x1a, 0xb3, + 0xf9, 0xdf, 0x3c, 0x94, 0xd3, 0xef, 0x22, 0x3a, 0x4a, 0xde, 0x33, 0xbd, 0xa5, 0x3b, 0x87, 0x07, + 0x6f, 0x7a, 0x47, 0xf5, 0xeb, 0x11, 0xc4, 0x2a, 0xd8, 0x99, 0x6a, 0x61, 0x35, 0x19, 0xfd, 0x12, + 0x76, 0x22, 0xc6, 0xe5, 0xb2, 0x86, 0xd4, 0x32, 0x2b, 0x3e, 0xe3, 0xcb, 0x6a, 0x9b, 0x80, 0x9b, + 0x13, 0xb8, 0xb3, 0x19, 0x0d, 0x3d, 0x86, 0xed, 0x17, 0x27, 0xfd, 0x4a, 0xae, 0xfa, 0xf0, 0xd5, + 0x75, 0xe3, 0x87, 0x9b, 0x1f, 0x5f, 0xf8, 0x5c, 0xc6, 0x24, 0x38, 0xe9, 0xa3, 0x9f, 0xc2, 0x4e, + 0xf7, 0x7c, 0x80, 0x71, 0x25, 0x5f, 0xad, 0xbf, 0xba, 0x6e, 0x3c, 0xdc, 0xc4, 0xa9, 0x4f, 0x2c, + 0x0e, 0x3d, 0xcc, 0x46, 0xab, 0x76, 0xee, 0x9f, 0x5b, 0x60, 0x9b, 0xd2, 0xfa, 0xae, 0x3b, 0xfe, + 0xbd, 0xe4, 0xb5, 0x5a, 0xde, 0x99, 0xad, 0x37, 0x3e, 0x5a, 0xe5, 0x84, 0x60, 0xce, 0xf8, 0x11, + 0x94, 0xfd, 0x68, 0xf6, 0xe9, 0x90, 0x86, 0x64, 0x14, 0x98, 0xce, 0xce, 0xc2, 0xb6, 0xf2, 0xf5, + 0x12, 0x97, 0xba, 0xb0, 0x7e, 0x28, 0x29, 0x0f, 0x4d, 0xcf, 0x66, 0xe1, 0x95, 0x8d, 0x3e, 0x87, + 0x82, 0x1f, 0x91, 0xa9, 0x79, 0x69, 0x33, 0x77, 0x70, 0xd2, 0x6f, 0x9f, 0x19, 0x0d, 0x76, 0xac, + 0xc5, 0x4d, 0xbd, 0xa0, 0x1c, 0x58, 0xd3, 0x50, 0x6d, 0xf9, 0xd8, 0xa9, 0x99, 0x74, 0xf1, 0xb5, + 0x70, 0xca, 0xd3, 0xfc, 0x5f, 0x01, 0xec, 0xa3, 0x20, 0x16, 0xd2, 0x3c, 0x21, 0xef, 0x2c, 0x6f, + 0x2f, 0xe1, 0x1e, 0xd1, 0xcd, 0x3f, 0x09, 0x55, 0x3d, 0xd6, 0x4d, 0x84, 0xc9, 0xdd, 0xe3, 0xcc, + 0x70, 0x2b, 0x70, 0xd2, 0x70, 0x74, 0x8a, 0x2a, 0xa6, 0x93, 0xc7, 0x15, 0xf2, 0x8d, 0x2f, 0x68, + 0x00, 0x7b, 0x8c, 0xbb, 0x13, 0x2a, 0x64, 0x52, 0xc5, 0x4d, 0xb3, 0x9c, 0xf9, 0x1b, 0xf5, 0x3c, + 0x0d, 0x34, 0x25, 0x2c, 0x59, 0xed, 0x66, 0x0c, 0xf4, 0x04, 0x0a, 0x9c, 0x5c, 0x2e, 0x1b, 0xa2, + 0x4c, 0x7d, 0x63, 0x72, 0x29, 0x37, 0x42, 0x68, 0x06, 0xfa, 0x03, 0x80, 0xe7, 0x8b, 0x88, 0x48, + 0x77, 0x42, 0xb9, 0x39, 0xa7, 0xcc, 0x2d, 0x76, 0x57, 0xa8, 0x8d, 0x28, 0x29, 0x36, 0x3a, 0x85, + 0x92, 0x4b, 0x96, 0x4a, 0x2b, 0xde, 0xfe, 0x07, 0x71, 0xd4, 0x36, 0x21, 0x2a, 0x2a, 0xc4, 0xe2, + 0xa6, 0x6e, 0x2d, 0x3d, 0xd8, 0x72, 0x89, 0x51, 0xde, 0x29, 0xec, 0xa9, 0x3f, 0x8b, 0xa1, 0x47, + 0x2f, 0x49, 0x1c, 0x48, 0xa1, 0x1f, 0xda, 0x5b, 0x4a, 0xb2, 0x6a, 0x53, 0xbb, 0x06, 0x67, 0xd6, + 0x55, 0x96, 0x29, 0x1f, 0xfa, 0x13, 0xdc, 0xa3, 0xa1, 0xcb, 0xe7, 0x5a, 0x67, 0xcb, 0x15, 0x5a, + 0xb7, 0x6f, 0xb6, 0xb7, 0x02, 0x6f, 0x6c, 0xb6, 0x42, 0xbf, 0xe1, 0x6f, 0xfa, 0x00, 0xc9, 0x23, + 0xf7, 0x6e, 0xf5, 0x87, 0xa0, 0xe0, 0x11, 0x49, 0xb4, 0xe4, 0xca, 0x58, 0x8f, 0x3b, 0xce, 0xeb, + 0xaf, 0x6b, 0xb9, 0x7f, 0x7f, 0x5d, 0xcb, 0xfd, 0x65, 0x51, 0xcb, 0xbf, 0x5e, 0xd4, 0xf2, 0xff, + 0x5a, 0xd4, 0xf2, 0xff, 0x59, 0xd4, 0xf2, 0xa3, 0xa2, 0x6e, 0x0d, 0x7e, 0xf1, 0xff, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xed, 0xbe, 0x26, 0xe6, 0x9a, 0x10, 0x00, 0x00, } diff --git a/api/specs.proto b/api/specs.proto index 8ec41c59c4..6543b3f4cc 100644 --- a/api/specs.proto +++ b/api/specs.proto @@ -203,6 +203,9 @@ message ContainerSpec { // they will be decided by the modes passed in the mount definition. bool read_only = 19; + // StopSignal defines the signal to stop the container. + string stop_signal = 20; + repeated Mount mounts = 8 [(gogoproto.nullable) = false]; // StopGracePeriod the grace period for stopping the container before